Skip to content

Strings are double-quoted #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'https://rubygems.org'
source "https://rubygems.org"

gemspec
28 changes: 14 additions & 14 deletions eventide-postgres.gemspec
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'eventide-postgres'
s.version = '2.0.1.0'
s.summary = 'Event-Sourced Autonomous Services Toolkit'
s.description = ' '
s.name = "eventide-postgres"
s.version = "2.0.1.0"
s.summary = "Event-Sourced Autonomous Services Toolkit"
s.description = " "

s.authors = ['The Eventide Project']
s.email = '[email protected]'
s.homepage = 'https://github.com/eventide-project/eventide-postgres'
s.licenses = ['MIT']
s.authors = ["The Eventide Project"]
s.email = "[email protected]"
s.homepage = "https://github.com/eventide-project/eventide-postgres"
s.licenses = ["MIT"]

s.require_paths = ['lib']
s.files = Dir.glob('{lib}/**/*')
s.require_paths = ["lib"]
s.files = Dir.glob("{lib}/**/*")
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.3.3'
s.required_ruby_version = ">= 2.3.3"

s.add_runtime_dependency 'evt-entity_store'
s.add_runtime_dependency 'evt-consumer-postgres'
s.add_runtime_dependency 'evt-entity_snapshot-postgres'
s.add_runtime_dependency "evt-entity_store"
s.add_runtime_dependency "evt-consumer-postgres"
s.add_runtime_dependency "evt-entity_snapshot-postgres"
end
4 changes: 2 additions & 2 deletions init.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require_relative './load_path'
require_relative "./load_path"

require 'eventide/postgres'
require "eventide/postgres"
6 changes: 3 additions & 3 deletions lib/eventide/postgres.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require 'entity_store'
require 'consumer/postgres'
require 'entity_snapshot/postgres'
require "entity_store"
require "consumer/postgres"
require "entity_snapshot/postgres"
6 changes: 3 additions & 3 deletions load_path.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bundler_standalone_loader = 'gems/bundler/setup'
bundler_standalone_loader = "gems/bundler/setup"

begin
require_relative bundler_standalone_loader
Expand All @@ -8,10 +8,10 @@
Bundler.require
end

lib_dir = File.expand_path('lib', __dir__)
lib_dir = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)

libraries_dir = ENV['LIBRARIES_HOME']
libraries_dir = ENV["LIBRARIES_HOME"]
unless libraries_dir.nil?
libraries_dir = File.expand_path(libraries_dir)
$LOAD_PATH.unshift libraries_dir unless $LOAD_PATH.include?(libraries_dir)
Expand Down
2 changes: 1 addition & 1 deletion test.rb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
load './init.rb'
load "./init.rb"