-
Notifications
You must be signed in to change notification settings - Fork 13
/
rails4_upgrade.gemspec
27 lines (23 loc) · 1.13 KB
/
rails4_upgrade.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rails4_upgrade/version'
Gem::Specification.new do |gem|
gem.name = "rails4_upgrade"
gem.version = Rails4Upgrade::VERSION
gem.authors = ["Andy Lindeman"]
gem.email = ["[email protected]"]
gem.description = %q{Upgrade assistant for transitioning applications from Rails 3 to Rails 4}
gem.summary = %q{Upgrade assistant for transitioning applications from Rails 3 to Rails 4}
gem.homepage = "http://www.upgradingtorails4.com/"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "bundler", ">=1.2.2"
gem.add_dependency "terminal-table", ">=1.4.5"
gem.add_development_dependency "rake", "~>10.0.0"
gem.add_development_dependency "rspec", "~>2.12.0"
gem.add_development_dependency "vcr", "~>2.3.0"
gem.add_development_dependency "webmock", "~>1.8.0"
end