This repository has been archived by the owner on Feb 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rails_legacy_mapper.gemspec
54 lines (49 loc) · 1.68 KB
/
rails_legacy_mapper.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rails_legacy_mapper/version"
Gem::Specification.new do |s|
s.name = "rails_legacy_mapper"
s.version = RailsLegacyMapper::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew White"]
s.email = ["[email protected]"]
s.homepage = %q{https://github.com/pixeltrix/rails_legacy_mapper/}
s.summary = %q{Old style routes for Rails 3.1}
s.description = <<-EOF
This gem provides an extraction of the DeprecatedMapper from Rails 3.0.
If you have a legacy application with an old style routes.rb file this
allows you to get your application running quickly in Rails 3.1.
EOF
s.files = [
".gemtest",
"CHANGELOG",
"LICENSE",
"README.md",
"Rakefile",
"lib/rails_legacy_mapper.rb",
"lib/rails_legacy_mapper/mapper.rb",
"lib/rails_legacy_mapper/route_set_extensions.rb",
"lib/rails_legacy_mapper/version.rb",
"rails_legacy_mapper.gemspec",
"test/fake_controllers.rb",
"test/legacy_route_set_test.rb",
"test/rack_mount_integration_test.rb",
"test/resources_test.rb",
"test/route_set_test.rb",
"test/test_helper.rb",
"test/uri_reserved_characters_routing_test.rb"
]
s.test_files = [
"test/fake_controllers.rb",
"test/legacy_route_set_test.rb",
"test/rack_mount_integration_test.rb",
"test/resources_test.rb",
"test/route_set_test.rb",
"test/test_helper.rb",
"test/uri_reserved_characters_routing_test.rb"
]
s.require_paths = ["lib"]
s.add_dependency "actionpack", "~> 3.1"
s.add_development_dependency "appraisal", "~> 0.4.0"
s.add_development_dependency "mocha", "~> 0.12.0"
end