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 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', ">= 2.2.1"
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
@@ -1,5 +1,5 @@
1
1
  ---
2
+ :major: 0
2
3
  :minor: 3
3
- :patch: 2
4
4
  :build:
5
- :major: 0
5
+ :patch: 3
@@ -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.2"
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>, [">= 2.2.1"])
79
+ s.add_runtime_dependency(%q<actionpack>, ["= 2.3.9"])
80
80
  else
81
- s.add_dependency(%q<actionpack>, [">= 2.2.1"])
81
+ s.add_dependency(%q<actionpack>, ["= 2.3.9"])
82
82
  end
83
83
  else
84
- s.add_dependency(%q<actionpack>, [">= 2.2.1"])
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
- - 2
9
- version: 0.3.2
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
- - 2
31
- - 1
32
- version: 2.2.1
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"