fakes-rspec 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +17 -18
- data/fakes-rspec.gemspec +6 -6
- data/lib/fakes_rspec/version.rb +1 -1
- metadata +30 -63
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 55171a815038c0f65712a8f877e1f657f68d9b53
|
4
|
+
data.tar.gz: 86fb178c137e9aadabfef6297cb737d990704ba3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1cdc214fa61f529962a5ffabd96c6e1e1386fce50ae7e113d8328cce6844bc8ff4a47662a5860a71cfa61676844027ecd9f9af28d33ecd8a10537f18ed97a90c
|
7
|
+
data.tar.gz: d4481127f8fe5b9ecf1260777b58eb4abe55d91597c12016946448f0c0328a6b963bd67f0f1f430964467b9a824e3685cdc76eaf792c9892b82de8816440ad2f
|
data/LICENSE
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2012 - 2014 Jean-Paul Sylvain Boodhoo
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/fakes-rspec.gemspec
CHANGED
@@ -6,6 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.name = "fakes-rspec"
|
7
7
|
s.version = Fakes::RSpec::VERSION
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
|
+
s.license = 'MIT'
|
9
10
|
s.authors = ["Develop With Passion®"]
|
10
11
|
s.email = ["open_source@developwithpassion.com"]
|
11
12
|
s.homepage = "http://www.developwithpassion.com"
|
@@ -17,10 +18,9 @@ Gem::Specification.new do |s|
|
|
17
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
19
|
s.require_paths = ["lib"]
|
19
20
|
|
20
|
-
s.add_development_dependency "
|
21
|
-
s.add_development_dependency "
|
22
|
-
s.add_development_dependency "
|
23
|
-
s.
|
24
|
-
s.add_runtime_dependency "
|
25
|
-
s.add_runtime_dependency "rspec"
|
21
|
+
s.add_development_dependency('rake', "~> 0.9.0")
|
22
|
+
s.add_development_dependency('guard', "~> 2.6.1")
|
23
|
+
s.add_development_dependency('guard-rspec', "~> 4.2.9")
|
24
|
+
s.add_runtime_dependency('fakes', "~> 1.1.4")
|
25
|
+
s.add_runtime_dependency('rspec', "~> 2.14.1")
|
26
26
|
end
|
data/lib/fakes_rspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,112 +1,85 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fakes-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
5
|
-
prerelease:
|
4
|
+
version: 1.0.6
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Develop With Passion®
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-05-25 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rake
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
19
|
+
version: 0.9.0
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: rspec
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: '0'
|
38
|
-
type: :development
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: '0'
|
26
|
+
version: 0.9.0
|
46
27
|
- !ruby/object:Gem::Dependency
|
47
28
|
name: guard
|
48
29
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
30
|
requirements:
|
51
|
-
- -
|
31
|
+
- - "~>"
|
52
32
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
33
|
+
version: 2.6.1
|
54
34
|
type: :development
|
55
35
|
prerelease: false
|
56
36
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
37
|
requirements:
|
59
|
-
- -
|
38
|
+
- - "~>"
|
60
39
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
40
|
+
version: 2.6.1
|
62
41
|
- !ruby/object:Gem::Dependency
|
63
42
|
name: guard-rspec
|
64
43
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
44
|
requirements:
|
67
|
-
- -
|
45
|
+
- - "~>"
|
68
46
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
47
|
+
version: 4.2.9
|
70
48
|
type: :development
|
71
49
|
prerelease: false
|
72
50
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
51
|
requirements:
|
75
|
-
- -
|
52
|
+
- - "~>"
|
76
53
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
54
|
+
version: 4.2.9
|
78
55
|
- !ruby/object:Gem::Dependency
|
79
56
|
name: fakes
|
80
57
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
58
|
requirements:
|
83
|
-
- -
|
59
|
+
- - "~>"
|
84
60
|
- !ruby/object:Gem::Version
|
85
|
-
version:
|
61
|
+
version: 1.1.4
|
86
62
|
type: :runtime
|
87
63
|
prerelease: false
|
88
64
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
65
|
requirements:
|
91
|
-
- -
|
66
|
+
- - "~>"
|
92
67
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
68
|
+
version: 1.1.4
|
94
69
|
- !ruby/object:Gem::Dependency
|
95
70
|
name: rspec
|
96
71
|
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
72
|
requirements:
|
99
|
-
- -
|
73
|
+
- - "~>"
|
100
74
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
75
|
+
version: 2.14.1
|
102
76
|
type: :runtime
|
103
77
|
prerelease: false
|
104
78
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
79
|
requirements:
|
107
|
-
- -
|
80
|
+
- - "~>"
|
108
81
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
82
|
+
version: 2.14.1
|
110
83
|
description: Faking library that allows inspection of received calls after they have
|
111
84
|
been made. Also supports tracking calls with multiple argument sets.
|
112
85
|
email:
|
@@ -115,7 +88,7 @@ executables: []
|
|
115
88
|
extensions: []
|
116
89
|
extra_rdoc_files: []
|
117
90
|
files:
|
118
|
-
- .gitignore
|
91
|
+
- ".gitignore"
|
119
92
|
- Gemfile
|
120
93
|
- Guardfile
|
121
94
|
- LICENSE
|
@@ -138,34 +111,28 @@ files:
|
|
138
111
|
- spec/specs/received_occurrences_criteria_spec.rb
|
139
112
|
- spec/specs/usage_spec.rb
|
140
113
|
homepage: http://www.developwithpassion.com
|
141
|
-
licenses:
|
114
|
+
licenses:
|
115
|
+
- MIT
|
116
|
+
metadata: {}
|
142
117
|
post_install_message:
|
143
118
|
rdoc_options: []
|
144
119
|
require_paths:
|
145
120
|
- lib
|
146
121
|
required_ruby_version: !ruby/object:Gem::Requirement
|
147
|
-
none: false
|
148
122
|
requirements:
|
149
|
-
- -
|
123
|
+
- - ">="
|
150
124
|
- !ruby/object:Gem::Version
|
151
125
|
version: '0'
|
152
|
-
segments:
|
153
|
-
- 0
|
154
|
-
hash: -1802133210709367804
|
155
126
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
156
|
-
none: false
|
157
127
|
requirements:
|
158
|
-
- -
|
128
|
+
- - ">="
|
159
129
|
- !ruby/object:Gem::Version
|
160
130
|
version: '0'
|
161
|
-
segments:
|
162
|
-
- 0
|
163
|
-
hash: -1802133210709367804
|
164
131
|
requirements: []
|
165
132
|
rubyforge_project: fakes-rspec
|
166
|
-
rubygems_version:
|
133
|
+
rubygems_version: 2.2.2
|
167
134
|
signing_key:
|
168
|
-
specification_version:
|
135
|
+
specification_version: 4
|
169
136
|
summary: Utility functions for develowithpassion_fakes when working with rSpec
|
170
137
|
test_files:
|
171
138
|
- spec/spec_helper.rb
|