mirror of
https://gitlab.com/ydkn/capistrano-rails-console.git
synced 2023-02-13 20:54:14 -05:00
7add7a7138
SSHKit::Command#environment_string doesn't exist in sshkit 1.3 due to a bug/typo, causing NoMethodError when running `cap <stage> rails:console` Bug was fixed in https://github.com/capistrano/sshkit/commit/f3955d1a, which was included in 1.4.0, so update gemspec to require sshkit >= 1.4
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
# coding: utf-8
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$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.version = Capistrano::Rails::Console::VERSION
|
|
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'
|
|
spec.license = 'MIT'
|
|
|
|
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.add_dependency 'capistrano', '>= 3.1.0', '< 4.0.0'
|
|
spec.add_dependency 'capistrano-interactive', '~> 0.2.0'
|
|
|
|
spec.add_dependency 'sshkit', '>= 1.4'
|
|
|
|
spec.add_development_dependency 'bundler'
|
|
spec.add_development_dependency 'rake'
|
|
spec.add_development_dependency 'yard'
|
|
end
|