require a min version of 3.1.0 for capistrano

This commit is contained in:
Florian Schwab 2015-07-27 20:46:59 +02:00
parent 50f124f3a5
commit 0377e0aa27
1 changed files with 5 additions and 5 deletions

View File

@ -4,10 +4,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/rails/console/version'
Gem::Specification.new do |spec|
spec.name = "capistrano-rails-console"
spec.name = 'capistrano-rails-console'
spec.version = Capistrano::Rails::Console::VERSION
spec.authors = ["Florian Schwab"]
spec.email = ["me@ydkn.de"]
spec.authors = ['Florian Schwab']
spec.email = ['me@ydkn.de']
spec.description = %q{Remote rails console for capistrano}
spec.summary = %q{Remote rails console for capistrano}
spec.homepage = "https://github.com/ydkn/capistrano-rails-console"
@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files`.split($/)
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_dependency 'capistrano', '>= 3.0.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 'rake'