mataki-subdomain_routes 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION.yml +2 -2
- data/mataki-subdomain_routes.gemspec +4 -4
- metadata +6 -6
data/Rakefile
CHANGED
@@ -17,7 +17,7 @@ begin
|
|
17
17
|
gem.email = "matsumura.aki@gmail.com"
|
18
18
|
gem.homepage = "http://github.com/mataki/subdomain_routes"
|
19
19
|
gem.authors = ["Matthew Hollingworth", "Akihiro Matsumura"]
|
20
|
-
gem.add_dependency 'actionpack', "
|
20
|
+
gem.add_dependency 'actionpack', "= 2.3.9"
|
21
21
|
gem.has_rdoc = false
|
22
22
|
|
23
23
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION.yml
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{mataki-subdomain_routes}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Matthew Hollingworth", "Akihiro Matsumura"]
|
@@ -76,12 +76,12 @@ Gem::Specification.new do |s|
|
|
76
76
|
s.specification_version = 3
|
77
77
|
|
78
78
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
79
|
-
s.add_runtime_dependency(%q<actionpack>, ["
|
79
|
+
s.add_runtime_dependency(%q<actionpack>, ["= 2.3.9"])
|
80
80
|
else
|
81
|
-
s.add_dependency(%q<actionpack>, ["
|
81
|
+
s.add_dependency(%q<actionpack>, ["= 2.3.9"])
|
82
82
|
end
|
83
83
|
else
|
84
|
-
s.add_dependency(%q<actionpack>, ["
|
84
|
+
s.add_dependency(%q<actionpack>, ["= 2.3.9"])
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 3
|
9
|
+
version: 0.3.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Matthew Hollingworth
|
@@ -23,13 +23,13 @@ dependencies:
|
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- - "
|
26
|
+
- - "="
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
segments:
|
29
29
|
- 2
|
30
|
-
-
|
31
|
-
-
|
32
|
-
version: 2.
|
30
|
+
- 3
|
31
|
+
- 9
|
32
|
+
version: 2.3.9
|
33
33
|
type: :runtime
|
34
34
|
version_requirements: *id001
|
35
35
|
description: " SubdomainRoutes add subdomain conditions to the Rails routing system. Routes may be restricted to\n one or many specified subdomains. An URL will be recognised only if the host subdomain matches the\n subdomain specified in the route. Route generation is also enhanced, so that the subdomain of a\n generated URL (or path) will be changed if the requested route has a different subdomain to that of\n the current request. Model-based subdomain routes can also be defined.\n"
|