Unified quoting
This commit is contained in:
parent
00b68320a7
commit
ec493a9ffa
|
@ -4,20 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|||
require 'burlesque/version'
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "burlesque-client"
|
||||
spec.name = 'burlesque-client'
|
||||
spec.version = Burlesque::Client::VERSION
|
||||
spec.authors = ["Gregory Eremin"]
|
||||
spec.email = ["g@erem.in"]
|
||||
spec.authors = ['Gregory Eremin']
|
||||
spec.email = ['g@erem.in']
|
||||
spec.summary = %q{TODO: Write a short summary. Required.}
|
||||
spec.description = %q{TODO: Write a longer description. Optional.}
|
||||
spec.homepage = ""
|
||||
spec.license = "MIT"
|
||||
spec.homepage = ''
|
||||
spec.license = 'MIT'
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0")
|
||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||
spec.require_paths = ["lib"]
|
||||
spec.require_paths = ['lib']
|
||||
|
||||
spec.add_development_dependency "bundler", "~> 1.6"
|
||||
spec.add_development_dependency "rake"
|
||||
spec.add_development_dependency 'bundler', '~> 1.6'
|
||||
spec.add_development_dependency 'rake'
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ module Burlesque
|
|||
attr_accessor :host, :port, :timeout
|
||||
|
||||
def initialize
|
||||
@host = "127.0.0.1"
|
||||
@host = '127.0.0.1'
|
||||
@port = 4401
|
||||
@timeout = 30
|
||||
end
|
||||
|
@ -18,7 +18,7 @@ module Burlesque
|
|||
|
||||
def config
|
||||
unless instance_variable_defined?(:@config)
|
||||
raise ConfigurationError.new("Configuration missing")
|
||||
raise ConfigurationError.new('Configuration missing')
|
||||
end
|
||||
|
||||
@config
|
||||
|
|
Loading…
Reference in New Issue