mirror of
https://gitlab.com/ydkn/capistrano-rails-console.git
synced 2023-02-13 20:54:14 -05:00
* use single quotes in gemspec
* removed version requirement for bundler
This commit is contained in:
parent
7231a824c8
commit
5d26ce90cd
1 changed files with 3 additions and 3 deletions
|
@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
||||||
spec.email = ['me@ydkn.de']
|
spec.email = ['me@ydkn.de']
|
||||||
spec.description = %q{Remote rails console for capistrano}
|
spec.description = %q{Remote rails console for capistrano}
|
||||||
spec.summary = %q{Remote rails console for capistrano}
|
spec.summary = %q{Remote rails console for capistrano}
|
||||||
spec.homepage = "https://github.com/ydkn/capistrano-rails-console"
|
spec.homepage = 'https://github.com/ydkn/capistrano-rails-console'
|
||||||
spec.license = "MIT"
|
spec.license = 'MIT'
|
||||||
|
|
||||||
spec.files = `git ls-files`.split($/)
|
spec.files = `git ls-files`.split($/)
|
||||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||||
|
@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
||||||
|
|
||||||
spec.add_dependency 'capistrano', '>= 3.1.0', '< 4.0.0'
|
spec.add_dependency 'capistrano', '>= 3.1.0', '< 4.0.0'
|
||||||
|
|
||||||
spec.add_development_dependency 'bundler', '~> 1.3'
|
spec.add_development_dependency 'bundler'
|
||||||
spec.add_development_dependency 'rake'
|
spec.add_development_dependency 'rake'
|
||||||
spec.add_development_dependency 'yard'
|
spec.add_development_dependency 'yard'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue