diff options
| author | Teddy Wing | 2017-05-01 02:34:28 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2017-05-01 02:34:28 +0200 | 
| commit | 4585a78e256599f2f75c7ef281cbb9e57b13b351 (patch) | |
| tree | bc12cea31e857a6b6a99b096e2746f87cafe91b9 /dbshell-rails.gemspec | |
| parent | b660b676c8bcf60a30252d109b762af8d42fd5d1 (diff) | |
| download | dbshell-rails-4585a78e256599f2f75c7ef281cbb9e57b13b351.tar.bz2 | |
dbshell-rails.gemspec: Use single-quotes
For consistency with the rest of the application. Leave double quotes on
the ``git ls-files -z`.split("\x0")` line so that the "\x0" gets
interpreted correctly.
Diffstat (limited to 'dbshell-rails.gemspec')
| -rw-r--r-- | dbshell-rails.gemspec | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/dbshell-rails.gemspec b/dbshell-rails.gemspec index fc832a8..47196af 100644 --- a/dbshell-rails.gemspec +++ b/dbshell-rails.gemspec @@ -4,19 +4,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)  require 'dbshell/rails/version'  Gem::Specification.new do |spec| -  spec.name          = "dbshell-rails" +  spec.name          = 'dbshell-rails'    spec.version       = DBShell::Rails::VERSION -  spec.authors       = ["Teddy Wing"] +  spec.authors       = ['Teddy Wing']    spec.summary       = %q{A Rake task to painlessly open a database shell.}    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.7" -  spec.add_development_dependency "rake", "~> 10.0" +  spec.add_development_dependency 'bundler', '~> 1.7' +  spec.add_development_dependency 'rake', '~> 10.0'  end | 
