inherited_resources 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -17,8 +17,8 @@ begin
17
17
  s.description = "Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important."
18
18
  s.authors = ['José Valim']
19
19
  s.files = FileList["[A-Z]*", "rails/init.rb", "{lib}/**/*"]
20
- s.add_dependency("responders", "~> 0.4.3")
21
- s.add_dependency("has_scope", "~> 0.4.2")
20
+ s.add_dependency("responders", "~> 0.4.6")
21
+ s.add_dependency("has_scope", "~> 0.5.0")
22
22
  end
23
23
 
24
24
  Jeweler::GemcutterTasks.new
@@ -1,3 +1,3 @@
1
1
  module InheritedResources
2
- VERSION = '1.0.5'.freeze
2
+ VERSION = '1.0.6'.freeze
3
3
  end
data/test/test_helper.rb CHANGED
@@ -17,7 +17,7 @@ require 'mocha'
17
17
  ENV["RAILS_ENV"] = "test"
18
18
  RAILS_ROOT = "anywhere"
19
19
 
20
- gem 'responders', '~> 0.4.0'
20
+ gem 'responders', '~> 0.4.6'
21
21
 
22
22
  gem 'activesupport', '= 2.3.5'
23
23
  require 'active_support'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 5
9
- version: 1.0.5
8
+ - 6
9
+ version: 1.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Jos\xC3\xA9 Valim"
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-16 00:00:00 +01:00
17
+ date: 2010-03-26 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -27,8 +27,8 @@ dependencies:
27
27
  segments:
28
28
  - 0
29
29
  - 4
30
- - 3
31
- version: 0.4.3
30
+ - 6
31
+ version: 0.4.6
32
32
  type: :runtime
33
33
  version_requirements: *id001
34
34
  - !ruby/object:Gem::Dependency
@@ -40,9 +40,9 @@ dependencies:
40
40
  - !ruby/object:Gem::Version
41
41
  segments:
42
42
  - 0
43
- - 4
44
- - 2
45
- version: 0.4.2
43
+ - 5
44
+ - 0
45
+ version: 0.5.0
46
46
  type: :runtime
47
47
  version_requirements: *id002
48
48
  description: Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important.