2013-11-09 09:49:28 -05:00
|
|
|
# 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"]
|
2014-02-09 08:12:46 -05:00
|
|
|
spec.email = ["me@ydkn.de"]
|
2013-11-09 09:49:28 -05:00
|
|
|
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.0.0'
|
|
|
|
|
|
|
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
|
|
|
spec.add_development_dependency 'rake'
|
2014-02-09 08:12:46 -05:00
|
|
|
spec.add_development_dependency 'yard'
|
2013-11-09 09:49:28 -05:00
|
|
|
end
|