shoulda-callback-matchers 0.3.1 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +3 -0
- data/.travis.yml +11 -10
- data/Appraisals +1 -1
- data/ext/mkrf_conf.rb +44 -0
- data/lib/shoulda/callback/matchers/integrations/test_unit.rb +2 -2
- data/lib/shoulda/callback/matchers/version.rb +1 -1
- data/shoulda-callback-matchers.gemspec +8 -1
- metadata +12 -35
- data/Gemfile.lock +0 -136
- data/gemfiles/3.0.gemfile +0 -13
- data/gemfiles/3.0.gemfile.lock +0 -133
- data/gemfiles/3.1.gemfile +0 -15
- data/gemfiles/3.1.gemfile.lock +0 -155
- data/gemfiles/3.2.gemfile +0 -15
- data/gemfiles/3.2.gemfile.lock +0 -153
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
Nzg1MDgzYWVlNzcxMGExNmVkMjlmNjA0YTkxOTY0MTQ5YzZlYTQwNQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YjVkYjUzNWMxZDZjYWQ1NDFhZmQ4ZjQ2ZDczNmVkZDcxN2Q4ZGYyZA==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OWMwMWU1OTFjYzM4MTJiYmViZjYxZDc1MjQ3YzNlMmRmNzJmZTExN2Q1YzQ1
|
10
|
+
ODc1NDc5MTg2YjdmYjVhNjQwZTNkYmRhNjk4YTBjNWMwNzk5MzExMmU1MTMw
|
11
|
+
ODEyYWY3ODY5ZThlZGM0MTgxN2VmODRlNjljZjY2ZTQyMjZmNTI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NzQ1NjZjM2NmMDY3ZWQ3YjAwNDcxNDExNmY0Y2ZjYjMzMjNkNTc1NzU2M2Qz
|
14
|
+
NWRkZDhlMTAyMjlkYTJhN2FmNmI5NWFkZjBiNGI1MzYxOWExZjlkZmYyMmY2
|
15
|
+
NTA4NTYzYzkxOWRhMzRkMTU5YzkxZTM0NWQ5OGI3NjFkMGE4NzY=
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
rvm:
|
2
|
-
- 1.8.7
|
3
|
-
- 1.9.2
|
4
2
|
- 1.9.3
|
5
|
-
-
|
6
|
-
-
|
7
|
-
-
|
3
|
+
- 2.0.0
|
4
|
+
- 2.1.0
|
5
|
+
- rbx
|
6
|
+
- jruby-19mode
|
7
|
+
- jruby-20mode
|
8
8
|
|
9
|
-
script: "bundle exec rake
|
9
|
+
script: "bundle install && bundle exec rake"
|
10
10
|
|
11
11
|
gemfile:
|
12
|
-
- gemfiles/
|
13
|
-
- gemfiles/3.1.gemfile
|
12
|
+
- gemfiles/4.0.gemfile
|
14
13
|
|
15
14
|
matrix:
|
16
15
|
allow_failures:
|
17
|
-
- rvm:
|
18
|
-
- rvm:
|
16
|
+
- rvm: 2.1.0
|
17
|
+
- rvm: rbx
|
18
|
+
- rvm: jruby-19mode
|
19
|
+
- rvm: jruby-20mode
|
data/Appraisals
CHANGED
data/ext/mkrf_conf.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
rbx = defined?(RUBY_ENGINE) && 'rbx' == RUBY_ENGINE
|
2
|
+
|
3
|
+
def already_installed(dep)
|
4
|
+
!Gem::DependencyInstaller.new(:domain => :local).find_gems_with_sources(dep).empty? ||
|
5
|
+
!Gem::DependencyInstaller.new(:domain => :local,:prerelease => true).find_gems_with_sources(dep).empty?
|
6
|
+
end
|
7
|
+
|
8
|
+
if rbx
|
9
|
+
require 'rubygems'
|
10
|
+
require 'rubygems/command.rb'
|
11
|
+
require 'rubygems/dependency.rb'
|
12
|
+
require 'rubygems/dependency_installer.rb'
|
13
|
+
|
14
|
+
begin
|
15
|
+
Gem::Command.build_args = ARGV
|
16
|
+
rescue NoMethodError
|
17
|
+
end
|
18
|
+
|
19
|
+
dep = [
|
20
|
+
Gem::Dependency.new("rubysl", '~> 2.0'),
|
21
|
+
Gem::Dependency.new("rubysl-test-unit", '~> 2.0'),
|
22
|
+
Gem::Dependency.new("racc", '~> 1.4')
|
23
|
+
].reject{|d| already_installed(d) }
|
24
|
+
|
25
|
+
begin
|
26
|
+
puts "Installing base gem"
|
27
|
+
inst = Gem::DependencyInstaller.new
|
28
|
+
dep.each {|d| inst.install d }
|
29
|
+
rescue
|
30
|
+
inst = Gem::DependencyInstaller.new(:prerelease => true)
|
31
|
+
begin
|
32
|
+
dep.each {|d| inst.install d }
|
33
|
+
rescue Exception => e
|
34
|
+
puts e
|
35
|
+
puts e.backtrace.join "\n "
|
36
|
+
exit(1)
|
37
|
+
end
|
38
|
+
end unless dep.size == 0
|
39
|
+
end
|
40
|
+
|
41
|
+
# create dummy rakefile to indicate success
|
42
|
+
f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w")
|
43
|
+
f.write("task :default\n")
|
44
|
+
f.close
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# in environments where test/unit is not required, this is necessary
|
4
4
|
unless defined?(Test::Unit::TestCase)
|
5
5
|
begin
|
6
|
-
require 'test/unit'
|
6
|
+
require 'test/unit/testcase'
|
7
7
|
rescue LoadError
|
8
8
|
# silent
|
9
9
|
end
|
@@ -15,7 +15,7 @@ if defined?(ActiveRecord)
|
|
15
15
|
module Test
|
16
16
|
module Unit
|
17
17
|
class TestCase
|
18
|
-
include Shoulda::Callback::Matchers::ActiveModel
|
18
|
+
include Shoulda::Callback::Matchers::ActiveModel
|
19
19
|
extend Shoulda::Callback::Matchers::ActiveModel
|
20
20
|
end
|
21
21
|
end
|
@@ -16,8 +16,9 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
18
|
s.require_paths = ["lib"]
|
19
|
+
s.extensions = 'ext/mkrf_conf.rb'
|
19
20
|
|
20
|
-
s.add_dependency('activesupport',
|
21
|
+
s.add_dependency('activesupport', '~> 4.0')
|
21
22
|
|
22
23
|
s.add_development_dependency('appraisal', '~> 0.5.0')
|
23
24
|
s.add_development_dependency('aruba')
|
@@ -26,4 +27,10 @@ Gem::Specification.new do |s|
|
|
26
27
|
s.add_development_dependency('rails', '>= 3.0')
|
27
28
|
s.add_development_dependency('rake', '~> 10.0.0')
|
28
29
|
s.add_development_dependency('rspec-rails', '~> 2.12.0')
|
30
|
+
|
31
|
+
if RUBY_ENGINE == 'rbx'
|
32
|
+
s.add_development_dependency "rubysl", "~> 2.0"
|
33
|
+
s.add_development_dependency "rubysl-test-unit", '~> 2.0'
|
34
|
+
s.add_development_dependency "racc", "~> 1.4"
|
35
|
+
end
|
29
36
|
end
|
metadata
CHANGED
@@ -1,36 +1,32 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shoulda-callback-matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Beat Richartz
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-01-04 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activesupport
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 4.0
|
19
|
+
version: '4.0'
|
22
20
|
type: :runtime
|
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: 4.0
|
26
|
+
version: '4.0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: appraisal
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
@@ -38,7 +34,6 @@ dependencies:
|
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
@@ -46,7 +41,6 @@ dependencies:
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: aruba
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
45
|
- - ! '>='
|
52
46
|
- !ruby/object:Gem::Version
|
@@ -54,7 +48,6 @@ dependencies:
|
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
52
|
- - ! '>='
|
60
53
|
- !ruby/object:Gem::Version
|
@@ -62,7 +55,6 @@ dependencies:
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: bourne
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
59
|
- - ~>
|
68
60
|
- !ruby/object:Gem::Version
|
@@ -70,7 +62,6 @@ dependencies:
|
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
66
|
- - ~>
|
76
67
|
- !ruby/object:Gem::Version
|
@@ -78,7 +69,6 @@ dependencies:
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: bundler
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
73
|
- - ! '>='
|
84
74
|
- !ruby/object:Gem::Version
|
@@ -86,7 +76,6 @@ dependencies:
|
|
86
76
|
type: :development
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
80
|
- - ! '>='
|
92
81
|
- !ruby/object:Gem::Version
|
@@ -94,7 +83,6 @@ dependencies:
|
|
94
83
|
- !ruby/object:Gem::Dependency
|
95
84
|
name: rails
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
86
|
requirements:
|
99
87
|
- - ! '>='
|
100
88
|
- !ruby/object:Gem::Version
|
@@ -102,7 +90,6 @@ dependencies:
|
|
102
90
|
type: :development
|
103
91
|
prerelease: false
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
93
|
requirements:
|
107
94
|
- - ! '>='
|
108
95
|
- !ruby/object:Gem::Version
|
@@ -110,7 +97,6 @@ dependencies:
|
|
110
97
|
- !ruby/object:Gem::Dependency
|
111
98
|
name: rake
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
100
|
requirements:
|
115
101
|
- - ~>
|
116
102
|
- !ruby/object:Gem::Version
|
@@ -118,7 +104,6 @@ dependencies:
|
|
118
104
|
type: :development
|
119
105
|
prerelease: false
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
107
|
requirements:
|
123
108
|
- - ~>
|
124
109
|
- !ruby/object:Gem::Version
|
@@ -126,7 +111,6 @@ dependencies:
|
|
126
111
|
- !ruby/object:Gem::Dependency
|
127
112
|
name: rspec-rails
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
129
|
-
none: false
|
130
114
|
requirements:
|
131
115
|
- - ~>
|
132
116
|
- !ruby/object:Gem::Version
|
@@ -134,7 +118,6 @@ dependencies:
|
|
134
118
|
type: :development
|
135
119
|
prerelease: false
|
136
120
|
version_requirements: !ruby/object:Gem::Requirement
|
137
|
-
none: false
|
138
121
|
requirements:
|
139
122
|
- - ~>
|
140
123
|
- !ruby/object:Gem::Version
|
@@ -142,7 +125,8 @@ dependencies:
|
|
142
125
|
description: Making callback tests easy on the fingers and eyes
|
143
126
|
email: attraccessor@gmail.com
|
144
127
|
executables: []
|
145
|
-
extensions:
|
128
|
+
extensions:
|
129
|
+
- ext/mkrf_conf.rb
|
146
130
|
extra_rdoc_files: []
|
147
131
|
files:
|
148
132
|
- .gitignore
|
@@ -152,17 +136,11 @@ files:
|
|
152
136
|
- Appraisals
|
153
137
|
- CONTRIBUTING.md
|
154
138
|
- Gemfile
|
155
|
-
- Gemfile.lock
|
156
139
|
- MIT-LICENSE
|
157
140
|
- NEWS.md
|
158
141
|
- README.md
|
159
142
|
- Rakefile
|
160
|
-
-
|
161
|
-
- gemfiles/3.0.gemfile.lock
|
162
|
-
- gemfiles/3.1.gemfile
|
163
|
-
- gemfiles/3.1.gemfile.lock
|
164
|
-
- gemfiles/3.2.gemfile
|
165
|
-
- gemfiles/3.2.gemfile.lock
|
143
|
+
- ext/mkrf_conf.rb
|
166
144
|
- lib/shoulda-callback-matchers.rb
|
167
145
|
- lib/shoulda/callback/matchers.rb
|
168
146
|
- lib/shoulda/callback/matchers/active_model.rb
|
@@ -179,27 +157,26 @@ files:
|
|
179
157
|
homepage: http://github.com/beatrichartz/shoulda-callback-matchers
|
180
158
|
licenses:
|
181
159
|
- MIT
|
160
|
+
metadata: {}
|
182
161
|
post_install_message:
|
183
162
|
rdoc_options: []
|
184
163
|
require_paths:
|
185
164
|
- lib
|
186
165
|
required_ruby_version: !ruby/object:Gem::Requirement
|
187
|
-
none: false
|
188
166
|
requirements:
|
189
167
|
- - ! '>='
|
190
168
|
- !ruby/object:Gem::Version
|
191
169
|
version: '0'
|
192
170
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
193
|
-
none: false
|
194
171
|
requirements:
|
195
172
|
- - ! '>='
|
196
173
|
- !ruby/object:Gem::Version
|
197
174
|
version: '0'
|
198
175
|
requirements: []
|
199
176
|
rubyforge_project:
|
200
|
-
rubygems_version: 1.
|
177
|
+
rubygems_version: 2.1.11
|
201
178
|
signing_key:
|
202
|
-
specification_version:
|
179
|
+
specification_version: 4
|
203
180
|
summary: Making callback tests easy on the fingers and eyes
|
204
181
|
test_files:
|
205
182
|
- spec/fixtures/users.yml
|
data/Gemfile.lock
DELETED
@@ -1,136 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
shoulda-callback-matchers (0.3.0)
|
5
|
-
activesupport (>= 4.0.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: http://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionmailer (4.0.0)
|
11
|
-
actionpack (= 4.0.0)
|
12
|
-
mail (~> 2.5.3)
|
13
|
-
actionpack (4.0.0)
|
14
|
-
activesupport (= 4.0.0)
|
15
|
-
builder (~> 3.1.0)
|
16
|
-
erubis (~> 2.7.0)
|
17
|
-
rack (~> 1.5.2)
|
18
|
-
rack-test (~> 0.6.2)
|
19
|
-
activemodel (4.0.0)
|
20
|
-
activesupport (= 4.0.0)
|
21
|
-
builder (~> 3.1.0)
|
22
|
-
activerecord (4.0.0)
|
23
|
-
activemodel (= 4.0.0)
|
24
|
-
activerecord-deprecated_finders (~> 1.0.2)
|
25
|
-
activesupport (= 4.0.0)
|
26
|
-
arel (~> 4.0.0)
|
27
|
-
activerecord-deprecated_finders (1.0.3)
|
28
|
-
activesupport (4.0.0)
|
29
|
-
i18n (~> 0.6, >= 0.6.4)
|
30
|
-
minitest (~> 4.2)
|
31
|
-
multi_json (~> 1.3)
|
32
|
-
thread_safe (~> 0.1)
|
33
|
-
tzinfo (~> 0.3.37)
|
34
|
-
appraisal (0.5.2)
|
35
|
-
bundler
|
36
|
-
rake
|
37
|
-
arel (4.0.0)
|
38
|
-
aruba (0.5.3)
|
39
|
-
childprocess (>= 0.3.6)
|
40
|
-
cucumber (>= 1.1.1)
|
41
|
-
rspec-expectations (>= 2.7.0)
|
42
|
-
atomic (1.1.10)
|
43
|
-
bourne (1.3.2)
|
44
|
-
mocha (= 0.13.2)
|
45
|
-
builder (3.1.4)
|
46
|
-
childprocess (0.3.9)
|
47
|
-
ffi (~> 1.0, >= 1.0.11)
|
48
|
-
cucumber (1.3.4)
|
49
|
-
builder (>= 2.1.2)
|
50
|
-
diff-lcs (>= 1.1.3)
|
51
|
-
gherkin (~> 2.12.0)
|
52
|
-
multi_json (~> 1.7.5)
|
53
|
-
multi_test (~> 0.0.1)
|
54
|
-
diff-lcs (1.1.3)
|
55
|
-
erubis (2.7.0)
|
56
|
-
ffi (1.9.0)
|
57
|
-
gherkin (2.12.0)
|
58
|
-
multi_json (~> 1.3)
|
59
|
-
hike (1.2.3)
|
60
|
-
i18n (0.6.4)
|
61
|
-
mail (2.5.4)
|
62
|
-
mime-types (~> 1.16)
|
63
|
-
treetop (~> 1.4.8)
|
64
|
-
metaclass (0.0.1)
|
65
|
-
mime-types (1.23)
|
66
|
-
minitest (4.7.5)
|
67
|
-
mocha (0.13.2)
|
68
|
-
metaclass (~> 0.0.1)
|
69
|
-
multi_json (1.7.7)
|
70
|
-
multi_test (0.0.1)
|
71
|
-
polyglot (0.3.3)
|
72
|
-
rack (1.5.2)
|
73
|
-
rack-test (0.6.2)
|
74
|
-
rack (>= 1.0)
|
75
|
-
rails (4.0.0)
|
76
|
-
actionmailer (= 4.0.0)
|
77
|
-
actionpack (= 4.0.0)
|
78
|
-
activerecord (= 4.0.0)
|
79
|
-
activesupport (= 4.0.0)
|
80
|
-
bundler (>= 1.3.0, < 2.0)
|
81
|
-
railties (= 4.0.0)
|
82
|
-
sprockets-rails (~> 2.0.0)
|
83
|
-
railties (4.0.0)
|
84
|
-
actionpack (= 4.0.0)
|
85
|
-
activesupport (= 4.0.0)
|
86
|
-
rake (>= 0.8.7)
|
87
|
-
thor (>= 0.18.1, < 2.0)
|
88
|
-
rake (10.0.4)
|
89
|
-
rspec-core (2.12.2)
|
90
|
-
rspec-expectations (2.12.1)
|
91
|
-
diff-lcs (~> 1.1.3)
|
92
|
-
rspec-mocks (2.12.2)
|
93
|
-
rspec-rails (2.12.1)
|
94
|
-
actionpack (>= 3.0)
|
95
|
-
activesupport (>= 3.0)
|
96
|
-
railties (>= 3.0)
|
97
|
-
rspec-core (~> 2.12.0)
|
98
|
-
rspec-expectations (~> 2.12.0)
|
99
|
-
rspec-mocks (~> 2.12.0)
|
100
|
-
sprockets (2.10.0)
|
101
|
-
hike (~> 1.2)
|
102
|
-
multi_json (~> 1.0)
|
103
|
-
rack (~> 1.0)
|
104
|
-
tilt (~> 1.1, != 1.3.0)
|
105
|
-
sprockets-rails (2.0.0)
|
106
|
-
actionpack (>= 3.0)
|
107
|
-
activesupport (>= 3.0)
|
108
|
-
sprockets (~> 2.8)
|
109
|
-
sqlite3 (1.3.7)
|
110
|
-
thor (0.18.1)
|
111
|
-
thread_safe (0.1.0)
|
112
|
-
atomic
|
113
|
-
tilt (1.4.1)
|
114
|
-
treetop (1.4.14)
|
115
|
-
polyglot
|
116
|
-
polyglot (>= 0.3.1)
|
117
|
-
tzinfo (0.3.37)
|
118
|
-
|
119
|
-
PLATFORMS
|
120
|
-
ruby
|
121
|
-
|
122
|
-
DEPENDENCIES
|
123
|
-
activerecord-jdbc-adapter
|
124
|
-
activerecord-jdbcsqlite3-adapter
|
125
|
-
appraisal (~> 0.5.0)
|
126
|
-
aruba
|
127
|
-
bourne (~> 1.3.0)
|
128
|
-
bundler (>= 1.1.0)
|
129
|
-
jdbc-sqlite3
|
130
|
-
jruby-openssl
|
131
|
-
rails (>= 3.0)
|
132
|
-
rake (~> 10.0.0)
|
133
|
-
rspec-rails (~> 2.12.0)
|
134
|
-
shoulda-callback-matchers!
|
135
|
-
sqlite3
|
136
|
-
therubyrhino
|
data/gemfiles/3.0.gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "http://rubygems.org"
|
4
|
-
|
5
|
-
gem "sqlite3", :platform=>:ruby
|
6
|
-
gem "activerecord-jdbc-adapter", :platform=>:jruby
|
7
|
-
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
|
8
|
-
gem "jdbc-sqlite3", :platform=>:jruby
|
9
|
-
gem "jruby-openssl", :platform=>:jruby
|
10
|
-
gem "therubyrhino", :platform=>:jruby
|
11
|
-
gem "rails", "~>3.0.0"
|
12
|
-
|
13
|
-
gemspec :path=>"../"
|
data/gemfiles/3.0.gemfile.lock
DELETED
@@ -1,133 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/beatrichartz/Projects/shoulda-callback-matchers
|
3
|
-
specs:
|
4
|
-
shoulda-callback-matchers (0.1.0)
|
5
|
-
activesupport (>= 3.0.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: http://rubygems.org/
|
9
|
-
specs:
|
10
|
-
abstract (1.0.0)
|
11
|
-
actionmailer (3.0.17)
|
12
|
-
actionpack (= 3.0.17)
|
13
|
-
mail (~> 2.2.19)
|
14
|
-
actionpack (3.0.17)
|
15
|
-
activemodel (= 3.0.17)
|
16
|
-
activesupport (= 3.0.17)
|
17
|
-
builder (~> 2.1.2)
|
18
|
-
erubis (~> 2.6.6)
|
19
|
-
i18n (~> 0.5.0)
|
20
|
-
rack (~> 1.2.5)
|
21
|
-
rack-mount (~> 0.6.14)
|
22
|
-
rack-test (~> 0.5.7)
|
23
|
-
tzinfo (~> 0.3.23)
|
24
|
-
activemodel (3.0.17)
|
25
|
-
activesupport (= 3.0.17)
|
26
|
-
builder (~> 2.1.2)
|
27
|
-
i18n (~> 0.5.0)
|
28
|
-
activerecord (3.0.17)
|
29
|
-
activemodel (= 3.0.17)
|
30
|
-
activesupport (= 3.0.17)
|
31
|
-
arel (~> 2.0.10)
|
32
|
-
tzinfo (~> 0.3.23)
|
33
|
-
activeresource (3.0.17)
|
34
|
-
activemodel (= 3.0.17)
|
35
|
-
activesupport (= 3.0.17)
|
36
|
-
activesupport (3.0.17)
|
37
|
-
appraisal (0.4.1)
|
38
|
-
bundler
|
39
|
-
rake
|
40
|
-
arel (2.0.10)
|
41
|
-
aruba (0.5.0)
|
42
|
-
childprocess (= 0.2.3)
|
43
|
-
cucumber (>= 1.1.1)
|
44
|
-
ffi (>= 1.0.11)
|
45
|
-
rspec-expectations (>= 2.7.0)
|
46
|
-
bourne (1.1.2)
|
47
|
-
mocha (= 0.10.5)
|
48
|
-
builder (2.1.2)
|
49
|
-
childprocess (0.2.3)
|
50
|
-
ffi (~> 1.0.6)
|
51
|
-
cucumber (1.2.1)
|
52
|
-
builder (>= 2.1.2)
|
53
|
-
diff-lcs (>= 1.1.3)
|
54
|
-
gherkin (~> 2.11.0)
|
55
|
-
json (>= 1.4.6)
|
56
|
-
diff-lcs (1.1.3)
|
57
|
-
erubis (2.6.6)
|
58
|
-
abstract (>= 1.0.0)
|
59
|
-
ffi (1.0.11)
|
60
|
-
gherkin (2.11.5)
|
61
|
-
json (>= 1.4.6)
|
62
|
-
i18n (0.5.0)
|
63
|
-
json (1.7.5)
|
64
|
-
mail (2.2.19)
|
65
|
-
activesupport (>= 2.3.6)
|
66
|
-
i18n (>= 0.4.0)
|
67
|
-
mime-types (~> 1.16)
|
68
|
-
treetop (~> 1.4.8)
|
69
|
-
metaclass (0.0.1)
|
70
|
-
mime-types (1.19)
|
71
|
-
mocha (0.10.5)
|
72
|
-
metaclass (~> 0.0.1)
|
73
|
-
polyglot (0.3.3)
|
74
|
-
rack (1.2.5)
|
75
|
-
rack-mount (0.6.14)
|
76
|
-
rack (>= 1.0.0)
|
77
|
-
rack-test (0.5.7)
|
78
|
-
rack (>= 1.0)
|
79
|
-
rails (3.0.17)
|
80
|
-
actionmailer (= 3.0.17)
|
81
|
-
actionpack (= 3.0.17)
|
82
|
-
activerecord (= 3.0.17)
|
83
|
-
activeresource (= 3.0.17)
|
84
|
-
activesupport (= 3.0.17)
|
85
|
-
bundler (~> 1.0)
|
86
|
-
railties (= 3.0.17)
|
87
|
-
railties (3.0.17)
|
88
|
-
actionpack (= 3.0.17)
|
89
|
-
activesupport (= 3.0.17)
|
90
|
-
rake (>= 0.8.7)
|
91
|
-
rdoc (~> 3.4)
|
92
|
-
thor (~> 0.14.4)
|
93
|
-
rake (0.9.4)
|
94
|
-
rdoc (3.12)
|
95
|
-
json (~> 1.4)
|
96
|
-
rspec (2.8.0)
|
97
|
-
rspec-core (~> 2.8.0)
|
98
|
-
rspec-expectations (~> 2.8.0)
|
99
|
-
rspec-mocks (~> 2.8.0)
|
100
|
-
rspec-core (2.8.0)
|
101
|
-
rspec-expectations (2.8.0)
|
102
|
-
diff-lcs (~> 1.1.2)
|
103
|
-
rspec-mocks (2.8.0)
|
104
|
-
rspec-rails (2.8.1)
|
105
|
-
actionpack (>= 3.0)
|
106
|
-
activesupport (>= 3.0)
|
107
|
-
railties (>= 3.0)
|
108
|
-
rspec (~> 2.8.0)
|
109
|
-
sqlite3 (1.3.6)
|
110
|
-
thor (0.14.6)
|
111
|
-
treetop (1.4.12)
|
112
|
-
polyglot
|
113
|
-
polyglot (>= 0.3.1)
|
114
|
-
tzinfo (0.3.35)
|
115
|
-
|
116
|
-
PLATFORMS
|
117
|
-
ruby
|
118
|
-
|
119
|
-
DEPENDENCIES
|
120
|
-
activerecord-jdbc-adapter
|
121
|
-
activerecord-jdbcsqlite3-adapter
|
122
|
-
appraisal (~> 0.4.0)
|
123
|
-
aruba
|
124
|
-
bourne (~> 1.1.2)
|
125
|
-
bundler (>= 1.1.0)
|
126
|
-
jdbc-sqlite3
|
127
|
-
jruby-openssl
|
128
|
-
rails (~> 3.0.0)
|
129
|
-
rake (~> 0.9.2)
|
130
|
-
rspec-rails (~> 2.8.1)
|
131
|
-
shoulda-callback-matchers!
|
132
|
-
sqlite3
|
133
|
-
therubyrhino
|
data/gemfiles/3.1.gemfile
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "http://rubygems.org"
|
4
|
-
|
5
|
-
gem "sqlite3", :platform=>:ruby
|
6
|
-
gem "activerecord-jdbc-adapter", :platform=>:jruby
|
7
|
-
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
|
8
|
-
gem "jdbc-sqlite3", :platform=>:jruby
|
9
|
-
gem "jruby-openssl", :platform=>:jruby
|
10
|
-
gem "therubyrhino", :platform=>:jruby
|
11
|
-
gem "rails", "~>3.1.0"
|
12
|
-
gem "jquery-rails"
|
13
|
-
gem "sass-rails"
|
14
|
-
|
15
|
-
gemspec :path=>"../"
|
data/gemfiles/3.1.gemfile.lock
DELETED
@@ -1,155 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/beatrichartz/Projects/shoulda-callback-matchers
|
3
|
-
specs:
|
4
|
-
shoulda-callback-matchers (0.1.0)
|
5
|
-
activesupport (>= 3.0.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: http://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionmailer (3.1.8)
|
11
|
-
actionpack (= 3.1.8)
|
12
|
-
mail (~> 2.3.3)
|
13
|
-
actionpack (3.1.8)
|
14
|
-
activemodel (= 3.1.8)
|
15
|
-
activesupport (= 3.1.8)
|
16
|
-
builder (~> 3.0.0)
|
17
|
-
erubis (~> 2.7.0)
|
18
|
-
i18n (~> 0.6)
|
19
|
-
rack (~> 1.3.6)
|
20
|
-
rack-cache (~> 1.2)
|
21
|
-
rack-mount (~> 0.8.2)
|
22
|
-
rack-test (~> 0.6.1)
|
23
|
-
sprockets (~> 2.0.4)
|
24
|
-
activemodel (3.1.8)
|
25
|
-
activesupport (= 3.1.8)
|
26
|
-
builder (~> 3.0.0)
|
27
|
-
i18n (~> 0.6)
|
28
|
-
activerecord (3.1.8)
|
29
|
-
activemodel (= 3.1.8)
|
30
|
-
activesupport (= 3.1.8)
|
31
|
-
arel (~> 2.2.3)
|
32
|
-
tzinfo (~> 0.3.29)
|
33
|
-
activeresource (3.1.8)
|
34
|
-
activemodel (= 3.1.8)
|
35
|
-
activesupport (= 3.1.8)
|
36
|
-
activesupport (3.1.8)
|
37
|
-
multi_json (>= 1.0, < 1.3)
|
38
|
-
appraisal (0.4.1)
|
39
|
-
bundler
|
40
|
-
rake
|
41
|
-
arel (2.2.3)
|
42
|
-
aruba (0.5.0)
|
43
|
-
childprocess (= 0.2.3)
|
44
|
-
cucumber (>= 1.1.1)
|
45
|
-
ffi (>= 1.0.11)
|
46
|
-
rspec-expectations (>= 2.7.0)
|
47
|
-
bourne (1.1.2)
|
48
|
-
mocha (= 0.10.5)
|
49
|
-
builder (3.0.4)
|
50
|
-
childprocess (0.2.3)
|
51
|
-
ffi (~> 1.0.6)
|
52
|
-
cucumber (1.2.1)
|
53
|
-
builder (>= 2.1.2)
|
54
|
-
diff-lcs (>= 1.1.3)
|
55
|
-
gherkin (~> 2.11.0)
|
56
|
-
json (>= 1.4.6)
|
57
|
-
diff-lcs (1.1.3)
|
58
|
-
erubis (2.7.0)
|
59
|
-
ffi (1.0.11)
|
60
|
-
gherkin (2.11.5)
|
61
|
-
json (>= 1.4.6)
|
62
|
-
hike (1.2.1)
|
63
|
-
i18n (0.6.1)
|
64
|
-
jquery-rails (2.1.3)
|
65
|
-
railties (>= 3.1.0, < 5.0)
|
66
|
-
thor (~> 0.14)
|
67
|
-
json (1.7.5)
|
68
|
-
mail (2.3.3)
|
69
|
-
i18n (>= 0.4.0)
|
70
|
-
mime-types (~> 1.16)
|
71
|
-
treetop (~> 1.4.8)
|
72
|
-
metaclass (0.0.1)
|
73
|
-
mime-types (1.19)
|
74
|
-
mocha (0.10.5)
|
75
|
-
metaclass (~> 0.0.1)
|
76
|
-
multi_json (1.2.0)
|
77
|
-
polyglot (0.3.3)
|
78
|
-
rack (1.3.6)
|
79
|
-
rack-cache (1.2)
|
80
|
-
rack (>= 0.4)
|
81
|
-
rack-mount (0.8.3)
|
82
|
-
rack (>= 1.0.0)
|
83
|
-
rack-ssl (1.3.2)
|
84
|
-
rack
|
85
|
-
rack-test (0.6.2)
|
86
|
-
rack (>= 1.0)
|
87
|
-
rails (3.1.8)
|
88
|
-
actionmailer (= 3.1.8)
|
89
|
-
actionpack (= 3.1.8)
|
90
|
-
activerecord (= 3.1.8)
|
91
|
-
activeresource (= 3.1.8)
|
92
|
-
activesupport (= 3.1.8)
|
93
|
-
bundler (~> 1.0)
|
94
|
-
railties (= 3.1.8)
|
95
|
-
railties (3.1.8)
|
96
|
-
actionpack (= 3.1.8)
|
97
|
-
activesupport (= 3.1.8)
|
98
|
-
rack-ssl (~> 1.3.2)
|
99
|
-
rake (>= 0.8.7)
|
100
|
-
rdoc (~> 3.4)
|
101
|
-
thor (~> 0.14.6)
|
102
|
-
rake (0.9.4)
|
103
|
-
rdoc (3.12)
|
104
|
-
json (~> 1.4)
|
105
|
-
rspec (2.8.0)
|
106
|
-
rspec-core (~> 2.8.0)
|
107
|
-
rspec-expectations (~> 2.8.0)
|
108
|
-
rspec-mocks (~> 2.8.0)
|
109
|
-
rspec-core (2.8.0)
|
110
|
-
rspec-expectations (2.8.0)
|
111
|
-
diff-lcs (~> 1.1.2)
|
112
|
-
rspec-mocks (2.8.0)
|
113
|
-
rspec-rails (2.8.1)
|
114
|
-
actionpack (>= 3.0)
|
115
|
-
activesupport (>= 3.0)
|
116
|
-
railties (>= 3.0)
|
117
|
-
rspec (~> 2.8.0)
|
118
|
-
sass (3.2.3)
|
119
|
-
sass-rails (3.1.6)
|
120
|
-
actionpack (~> 3.1.0)
|
121
|
-
railties (~> 3.1.0)
|
122
|
-
sass (>= 3.1.10)
|
123
|
-
tilt (~> 1.3.2)
|
124
|
-
sprockets (2.0.4)
|
125
|
-
hike (~> 1.2)
|
126
|
-
rack (~> 1.0)
|
127
|
-
tilt (~> 1.1, != 1.3.0)
|
128
|
-
sqlite3 (1.3.6)
|
129
|
-
thor (0.14.6)
|
130
|
-
tilt (1.3.3)
|
131
|
-
treetop (1.4.12)
|
132
|
-
polyglot
|
133
|
-
polyglot (>= 0.3.1)
|
134
|
-
tzinfo (0.3.35)
|
135
|
-
|
136
|
-
PLATFORMS
|
137
|
-
ruby
|
138
|
-
|
139
|
-
DEPENDENCIES
|
140
|
-
activerecord-jdbc-adapter
|
141
|
-
activerecord-jdbcsqlite3-adapter
|
142
|
-
appraisal (~> 0.4.0)
|
143
|
-
aruba
|
144
|
-
bourne (~> 1.1.2)
|
145
|
-
bundler (>= 1.1.0)
|
146
|
-
jdbc-sqlite3
|
147
|
-
jquery-rails
|
148
|
-
jruby-openssl
|
149
|
-
rails (~> 3.1.0)
|
150
|
-
rake (~> 0.9.2)
|
151
|
-
rspec-rails (~> 2.8.1)
|
152
|
-
sass-rails
|
153
|
-
shoulda-callback-matchers!
|
154
|
-
sqlite3
|
155
|
-
therubyrhino
|
data/gemfiles/3.2.gemfile
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "http://rubygems.org"
|
4
|
-
|
5
|
-
gem "sqlite3", :platform=>:ruby
|
6
|
-
gem "activerecord-jdbc-adapter", :platform=>:jruby
|
7
|
-
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
|
8
|
-
gem "jdbc-sqlite3", :platform=>:jruby
|
9
|
-
gem "jruby-openssl", :platform=>:jruby
|
10
|
-
gem "therubyrhino", :platform=>:jruby
|
11
|
-
gem "rails", "~>3.2.0"
|
12
|
-
gem "jquery-rails"
|
13
|
-
gem "sass-rails"
|
14
|
-
|
15
|
-
gemspec :path=>"../"
|
data/gemfiles/3.2.gemfile.lock
DELETED
@@ -1,153 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/beatrichartz/Projects/shoulda-callback-matchers
|
3
|
-
specs:
|
4
|
-
shoulda-callback-matchers (0.1.0)
|
5
|
-
activesupport (>= 3.0.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: http://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionmailer (3.2.9)
|
11
|
-
actionpack (= 3.2.9)
|
12
|
-
mail (~> 2.4.4)
|
13
|
-
actionpack (3.2.9)
|
14
|
-
activemodel (= 3.2.9)
|
15
|
-
activesupport (= 3.2.9)
|
16
|
-
builder (~> 3.0.0)
|
17
|
-
erubis (~> 2.7.0)
|
18
|
-
journey (~> 1.0.4)
|
19
|
-
rack (~> 1.4.0)
|
20
|
-
rack-cache (~> 1.2)
|
21
|
-
rack-test (~> 0.6.1)
|
22
|
-
sprockets (~> 2.2.1)
|
23
|
-
activemodel (3.2.9)
|
24
|
-
activesupport (= 3.2.9)
|
25
|
-
builder (~> 3.0.0)
|
26
|
-
activerecord (3.2.9)
|
27
|
-
activemodel (= 3.2.9)
|
28
|
-
activesupport (= 3.2.9)
|
29
|
-
arel (~> 3.0.2)
|
30
|
-
tzinfo (~> 0.3.29)
|
31
|
-
activeresource (3.2.9)
|
32
|
-
activemodel (= 3.2.9)
|
33
|
-
activesupport (= 3.2.9)
|
34
|
-
activesupport (3.2.9)
|
35
|
-
i18n (~> 0.6)
|
36
|
-
multi_json (~> 1.0)
|
37
|
-
appraisal (0.4.1)
|
38
|
-
bundler
|
39
|
-
rake
|
40
|
-
arel (3.0.2)
|
41
|
-
aruba (0.5.0)
|
42
|
-
childprocess (= 0.2.3)
|
43
|
-
cucumber (>= 1.1.1)
|
44
|
-
ffi (>= 1.0.11)
|
45
|
-
rspec-expectations (>= 2.7.0)
|
46
|
-
bourne (1.1.2)
|
47
|
-
mocha (= 0.10.5)
|
48
|
-
builder (3.0.4)
|
49
|
-
childprocess (0.2.3)
|
50
|
-
ffi (~> 1.0.6)
|
51
|
-
cucumber (1.2.1)
|
52
|
-
builder (>= 2.1.2)
|
53
|
-
diff-lcs (>= 1.1.3)
|
54
|
-
gherkin (~> 2.11.0)
|
55
|
-
json (>= 1.4.6)
|
56
|
-
diff-lcs (1.1.3)
|
57
|
-
erubis (2.7.0)
|
58
|
-
ffi (1.0.11)
|
59
|
-
gherkin (2.11.5)
|
60
|
-
json (>= 1.4.6)
|
61
|
-
hike (1.2.1)
|
62
|
-
i18n (0.6.1)
|
63
|
-
journey (1.0.4)
|
64
|
-
jquery-rails (2.1.3)
|
65
|
-
railties (>= 3.1.0, < 5.0)
|
66
|
-
thor (~> 0.14)
|
67
|
-
json (1.7.5)
|
68
|
-
mail (2.4.4)
|
69
|
-
i18n (>= 0.4.0)
|
70
|
-
mime-types (~> 1.16)
|
71
|
-
treetop (~> 1.4.8)
|
72
|
-
metaclass (0.0.1)
|
73
|
-
mime-types (1.19)
|
74
|
-
mocha (0.10.5)
|
75
|
-
metaclass (~> 0.0.1)
|
76
|
-
multi_json (1.3.7)
|
77
|
-
polyglot (0.3.3)
|
78
|
-
rack (1.4.1)
|
79
|
-
rack-cache (1.2)
|
80
|
-
rack (>= 0.4)
|
81
|
-
rack-ssl (1.3.2)
|
82
|
-
rack
|
83
|
-
rack-test (0.6.2)
|
84
|
-
rack (>= 1.0)
|
85
|
-
rails (3.2.9)
|
86
|
-
actionmailer (= 3.2.9)
|
87
|
-
actionpack (= 3.2.9)
|
88
|
-
activerecord (= 3.2.9)
|
89
|
-
activeresource (= 3.2.9)
|
90
|
-
activesupport (= 3.2.9)
|
91
|
-
bundler (~> 1.0)
|
92
|
-
railties (= 3.2.9)
|
93
|
-
railties (3.2.9)
|
94
|
-
actionpack (= 3.2.9)
|
95
|
-
activesupport (= 3.2.9)
|
96
|
-
rack-ssl (~> 1.3.2)
|
97
|
-
rake (>= 0.8.7)
|
98
|
-
rdoc (~> 3.4)
|
99
|
-
thor (>= 0.14.6, < 2.0)
|
100
|
-
rake (0.9.4)
|
101
|
-
rdoc (3.12)
|
102
|
-
json (~> 1.4)
|
103
|
-
rspec (2.8.0)
|
104
|
-
rspec-core (~> 2.8.0)
|
105
|
-
rspec-expectations (~> 2.8.0)
|
106
|
-
rspec-mocks (~> 2.8.0)
|
107
|
-
rspec-core (2.8.0)
|
108
|
-
rspec-expectations (2.8.0)
|
109
|
-
diff-lcs (~> 1.1.2)
|
110
|
-
rspec-mocks (2.8.0)
|
111
|
-
rspec-rails (2.8.1)
|
112
|
-
actionpack (>= 3.0)
|
113
|
-
activesupport (>= 3.0)
|
114
|
-
railties (>= 3.0)
|
115
|
-
rspec (~> 2.8.0)
|
116
|
-
sass (3.2.3)
|
117
|
-
sass-rails (3.2.5)
|
118
|
-
railties (~> 3.2.0)
|
119
|
-
sass (>= 3.1.10)
|
120
|
-
tilt (~> 1.3)
|
121
|
-
sprockets (2.2.1)
|
122
|
-
hike (~> 1.2)
|
123
|
-
multi_json (~> 1.0)
|
124
|
-
rack (~> 1.0)
|
125
|
-
tilt (~> 1.1, != 1.3.0)
|
126
|
-
sqlite3 (1.3.6)
|
127
|
-
thor (0.16.0)
|
128
|
-
tilt (1.3.3)
|
129
|
-
treetop (1.4.12)
|
130
|
-
polyglot
|
131
|
-
polyglot (>= 0.3.1)
|
132
|
-
tzinfo (0.3.35)
|
133
|
-
|
134
|
-
PLATFORMS
|
135
|
-
ruby
|
136
|
-
|
137
|
-
DEPENDENCIES
|
138
|
-
activerecord-jdbc-adapter
|
139
|
-
activerecord-jdbcsqlite3-adapter
|
140
|
-
appraisal (~> 0.4.0)
|
141
|
-
aruba
|
142
|
-
bourne (~> 1.1.2)
|
143
|
-
bundler (>= 1.1.0)
|
144
|
-
jdbc-sqlite3
|
145
|
-
jquery-rails
|
146
|
-
jruby-openssl
|
147
|
-
rails (~> 3.2.0)
|
148
|
-
rake (~> 0.9.2)
|
149
|
-
rspec-rails (~> 2.8.1)
|
150
|
-
sass-rails
|
151
|
-
shoulda-callback-matchers!
|
152
|
-
sqlite3
|
153
|
-
therubyrhino
|