dim 0.9 → 0.9.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/.gitignore CHANGED
@@ -1,3 +1,3 @@
1
1
  .project_env.rc
2
2
  .togglerc
3
- .gem
3
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source :rubygems
2
+ gemspec
@@ -0,0 +1,27 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ dim (0.9)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.1.2)
10
+ rspec (2.5.0)
11
+ rspec-core (~> 2.5.0)
12
+ rspec-expectations (~> 2.5.0)
13
+ rspec-mocks (~> 2.5.0)
14
+ rspec-core (2.5.1)
15
+ rspec-expectations (2.5.0)
16
+ diff-lcs (~> 1.1.2)
17
+ rspec-given (1.3.1)
18
+ rspec (~> 2.0)
19
+ rspec-mocks (2.5.0)
20
+
21
+ PLATFORMS
22
+ ruby
23
+
24
+ DEPENDENCIES
25
+ dim!
26
+ rspec
27
+ rspec-given
@@ -18,4 +18,5 @@ Gem::Specification.new do |s|
18
18
  s.description = %q{Minimalistic dependency injection framework}
19
19
  s.test_files = `git ls-files spec`.split("\n")
20
20
  s.add_development_dependency 'rspec'
21
+ s.add_development_dependency 'rspec-given'
21
22
  end
@@ -1,3 +1,3 @@
1
1
  module Dim
2
- VERSION = "0.9"
2
+ VERSION = "0.9.1"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: dim
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: "0.9"
5
+ version: 0.9.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jim Weirich
@@ -25,6 +25,17 @@ dependencies:
25
25
  version: "0"
26
26
  type: :development
27
27
  version_requirements: *id001
28
+ - !ruby/object:Gem::Dependency
29
+ name: rspec-given
30
+ prerelease: false
31
+ requirement: &id002 !ruby/object:Gem::Requirement
32
+ none: false
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: "0"
37
+ type: :development
38
+ version_requirements: *id002
28
39
  description: Minimalistic dependency injection framework
29
40
  email: mike@subelsky.com
30
41
  executables: []
@@ -37,6 +48,8 @@ files:
37
48
  - .gitignore
38
49
  - .rspec
39
50
  - .rvmrc
51
+ - Gemfile
52
+ - Gemfile.lock
40
53
  - MIT-LICENSE
41
54
  - README.md
42
55
  - Rakefile