rails-ioc 0.2.0 → 0.2.1

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/README.markdown CHANGED
@@ -133,7 +133,7 @@ RailsIOC attempts to make these problems less painful for applications with comp
133
133
  RailsIOC::Dependencies.define do
134
134
  inherit_environment(:production)
135
135
 
136
- singleton :payment_gateway, BogusPaymentGateway),
136
+ singleton :payment_gateway, BogusPaymentGateway
137
137
  singleton :credit_card_validator, BogusCardValidator
138
138
  end
139
139
  ```
File without changes
@@ -1,3 +1,3 @@
1
1
  module RailsIOC
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-ioc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-06 00:00:00.000000000Z
12
+ date: 2013-01-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &70174147087040 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,12 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70174147087040
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
25
30
  description: Simple dependency injection for Rails.
26
31
  email:
27
32
  - rick@rickgrundy.com
@@ -34,13 +39,13 @@ files:
34
39
  - README.markdown
35
40
  - Rakefile
36
41
  - lib/rails-ioc.rb
37
- - lib/rails-ioc/Reference.rb
38
42
  - lib/rails-ioc/controller_extension.rb
39
43
  - lib/rails-ioc/dependencies.rb
40
44
  - lib/rails-ioc/dependency_constructor.rb
41
45
  - lib/rails-ioc/dependency_injector.rb
42
46
  - lib/rails-ioc/errors.rb
43
47
  - lib/rails-ioc/prototype.rb
48
+ - lib/rails-ioc/reference.rb
44
49
  - lib/rails-ioc/rspec_extension.rb
45
50
  - lib/rails-ioc/singleton.rb
46
51
  - lib/rails-ioc/version.rb
@@ -77,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
82
  version: '0'
78
83
  requirements: []
79
84
  rubyforge_project: rails-ioc
80
- rubygems_version: 1.8.6
85
+ rubygems_version: 1.8.24
81
86
  signing_key:
82
87
  specification_version: 3
83
88
  summary: Simple dependency injection for Rails.