-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrails-forward_compatible_controller_tests.gemspec
More file actions
28 lines (23 loc) · 1.21 KB
/
rails-forward_compatible_controller_tests.gemspec
File metadata and controls
28 lines (23 loc) · 1.21 KB
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
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rails/forward_compatible_controller_tests/version'
Gem::Specification.new do |spec|
spec.name = "rails-forward_compatible_controller_tests"
spec.version = Rails::ForwardCompatibleControllerTests::VERSION
spec.authors = ["Chad Shaffer"]
spec.email = ["chad.shaffer@mycase.com"]
spec.summary = %q{Back-porting Rails 5 controller & integration tests into Rails 4}
spec.description = %q{Makes upgrading to Rails 5 from Rails 4 easier}
spec.homepage = "https://github.com/appfolio/rails-forward_compatible_controller_tests"
spec.license = "MIT"
spec.files = Dir["{lib}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "railties", ">= 4.2", "< 5.1"
spec.add_development_dependency "rspec-rails", "3.8.0"
spec.add_development_dependency "appraisal", "2.2.0"
spec.add_dependency "actionpack", ">= 4.2", "< 5.1"
end