deferring 0.4.1 → 0.5.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09743f4e4060ead2be2023679342fc743df00ab5
4
- data.tar.gz: 0456cba25010e1592bcd4fbd30be9eda0b5392d0
3
+ metadata.gz: 81a9e2bd6deea9d8b3fc5ea29b2633f9cfafaee5
4
+ data.tar.gz: 3e4749cb1645b4278631ded639460f30ff099246
5
5
  SHA512:
6
- metadata.gz: 1b61a7fc3a401fab399394dc0a3d4c7fe38385fac08028cedf9e55e253859540745adb5a139d6e87615dcee6903eb338bd54bf4b8b499626b5daf5951b3efc6d
7
- data.tar.gz: 98d4e256dcc2370e08ba937152de55cbdf5737dde75641ce0c6aafc3fb1e8fdfa2a9e9a49db8e0d32ba0842fe7d86b0832cadac3408588d735bf176e54c892a5
6
+ metadata.gz: 3d1481294966a71e02d5a2eeba4b63f38a998039d79956760c6c6fb95a7ef4a1f0fd2fc216ad503ad4b1cd5d56f4464028223ab3cd30e25d93e01b43f666d609
7
+ data.tar.gz: 4dd94104c28016dc7b216b3a486c28e692da0d59f2be56fc5499a2f858aa0a7e76da4457ac8930ed8d664f6dd3ac45ffc7401664978d6b623f30e85305f3cb17
@@ -1,29 +1,17 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.3.0
5
- - 2.3.3
6
- - 2.4.0
4
+ - 2.3.7
5
+ - 2.4.4
6
+ - 2.5.1
7
7
  - ruby-head
8
8
 
9
9
  gemfile:
10
- - gemfiles/rails_40.gemfile
11
- - gemfiles/rails_41.gemfile
12
10
  - gemfiles/rails_42.gemfile
13
11
  - gemfiles/rails_50.gemfile
14
12
  - gemfiles/rails_51.gemfile
13
+ - gemfiles/rails_52.gemfile
15
14
 
16
15
  sudo: false
17
16
 
18
- matrix:
19
- allow_failures:
20
- - rvm: ruby-head
21
- gemfile: gemfiles/rails_40.gemfile
22
- - rvm: ruby-head
23
- gemfile: gemfiles/rails_41.gemfile
24
- - rvm: 2.4.0
25
- gemfile: gemfiles/rails_40.gemfile
26
- - rvm: 2.4.0
27
- gemfile: gemfiles/rails_41.gemfile
28
-
29
17
  script: 'bundle exec rake'
data/Appraisals CHANGED
@@ -1,19 +1,15 @@
1
- appraise 'rails-40' do
2
- gem 'activerecord', '4.0.13'
3
- end
4
-
5
- appraise 'rails-41' do
6
- gem 'activerecord', '4.1.15'
7
- end
8
-
9
1
  appraise 'rails-42' do
10
- gem 'activerecord', '4.2.8'
2
+ gem 'activerecord', '4.2.10'
11
3
  end
12
4
 
13
5
  appraise 'rails-50' do
14
- gem 'activerecord', '5.0.2'
6
+ gem 'activerecord', '5.0.7'
15
7
  end
16
8
 
17
9
  appraise 'rails-51' do
18
- gem 'activerecord', '5.1.4'
10
+ gem 'activerecord', '5.1.6'
11
+ end
12
+
13
+ appraise 'rails-52' do
14
+ gem 'activerecord', '5.2.0'
19
15
  end
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  Deferring makes it possible to delay saving ActiveRecord associations until the
7
7
  parent object has been saved.
8
8
 
9
- Currently supporting Rails 4.x, 5.0 & 5.1 on MRI Ruby 2.3+.
9
+ Currently supporting Rails 4.2, 5.0, 5.1 & 5.2 on MRI Ruby 2.3+.
10
10
 
11
11
  It is important to note that Deferring does not touch the original `has_many`
12
12
  and `has_and_belongs_to_many` associations. You can use them, without worrying
@@ -1,4 +1,3 @@
1
- # coding: utf-8
2
1
  lib = File.expand_path('../lib', __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
3
  require 'deferring/version'
@@ -21,7 +20,7 @@ Gem::Specification.new do |spec|
21
20
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
21
  spec.require_paths = ['lib']
23
22
 
24
- spec.add_dependency 'activerecord', '> 4.0'
23
+ spec.add_dependency 'activerecord', ['>= 4.2', '< 5.3']
25
24
 
26
25
  spec.add_development_dependency 'bundler', '~> 1.3'
27
26
  spec.add_development_dependency 'rake'
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "4.2.8"
5
+ gem "activerecord", "4.2.10"
6
6
 
7
7
  gemspec :path => "../"
@@ -1,58 +1,60 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- deferring (0.4.0)
5
- activerecord (> 4.0)
4
+ deferring (0.5.0)
5
+ activerecord (>= 4.2, < 5.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (4.2.8)
11
- activesupport (= 4.2.8)
10
+ activemodel (4.2.10)
11
+ activesupport (= 4.2.10)
12
12
  builder (~> 3.1)
13
- activerecord (4.2.8)
14
- activemodel (= 4.2.8)
15
- activesupport (= 4.2.8)
13
+ activerecord (4.2.10)
14
+ activemodel (= 4.2.10)
15
+ activesupport (= 4.2.10)
16
16
  arel (~> 6.0)
17
- activesupport (4.2.8)
17
+ activesupport (4.2.10)
18
18
  i18n (~> 0.7)
19
19
  minitest (~> 5.1)
20
20
  thread_safe (~> 0.3, >= 0.3.4)
21
21
  tzinfo (~> 1.1)
22
- appraisal (2.1.0)
22
+ appraisal (2.2.0)
23
23
  bundler
24
24
  rake
25
25
  thor (>= 0.14.0)
26
26
  arel (6.0.4)
27
27
  builder (3.2.3)
28
+ concurrent-ruby (1.0.5)
28
29
  diff-lcs (1.3)
29
- i18n (0.8.1)
30
- minitest (5.10.1)
31
- rake (12.0.0)
32
- rspec (3.5.0)
33
- rspec-core (~> 3.5.0)
34
- rspec-expectations (~> 3.5.0)
35
- rspec-mocks (~> 3.5.0)
36
- rspec-core (3.5.4)
37
- rspec-support (~> 3.5.0)
38
- rspec-expectations (3.5.0)
30
+ i18n (0.9.5)
31
+ concurrent-ruby (~> 1.0)
32
+ minitest (5.11.3)
33
+ rake (12.3.1)
34
+ rspec (3.7.0)
35
+ rspec-core (~> 3.7.0)
36
+ rspec-expectations (~> 3.7.0)
37
+ rspec-mocks (~> 3.7.0)
38
+ rspec-core (3.7.1)
39
+ rspec-support (~> 3.7.0)
40
+ rspec-expectations (3.7.0)
39
41
  diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.5.0)
41
- rspec-mocks (3.5.0)
42
+ rspec-support (~> 3.7.0)
43
+ rspec-mocks (3.7.0)
42
44
  diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.5.0)
44
- rspec-support (3.5.0)
45
+ rspec-support (~> 3.7.0)
46
+ rspec-support (3.7.1)
45
47
  sqlite3 (1.3.13)
46
- thor (0.19.4)
48
+ thor (0.20.0)
47
49
  thread_safe (0.3.6)
48
- tzinfo (1.2.2)
50
+ tzinfo (1.2.5)
49
51
  thread_safe (~> 0.1)
50
52
 
51
53
  PLATFORMS
52
54
  ruby
53
55
 
54
56
  DEPENDENCIES
55
- activerecord (= 4.2.8)
57
+ activerecord (= 4.2.10)
56
58
  appraisal
57
59
  bundler (~> 1.3)
58
60
  deferring!
@@ -61,4 +63,4 @@ DEPENDENCIES
61
63
  sqlite3
62
64
 
63
65
  BUNDLED WITH
64
- 1.13.0
66
+ 1.16.2
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "5.0.2"
5
+ gem "activerecord", "5.0.7"
6
6
 
7
7
  gemspec :path => "../"
@@ -1,57 +1,58 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- deferring (0.4.0)
5
- activerecord (> 4.0)
4
+ deferring (0.5.0)
5
+ activerecord (>= 4.2, < 5.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.0.2)
11
- activesupport (= 5.0.2)
12
- activerecord (5.0.2)
13
- activemodel (= 5.0.2)
14
- activesupport (= 5.0.2)
10
+ activemodel (5.0.7)
11
+ activesupport (= 5.0.7)
12
+ activerecord (5.0.7)
13
+ activemodel (= 5.0.7)
14
+ activesupport (= 5.0.7)
15
15
  arel (~> 7.0)
16
- activesupport (5.0.2)
16
+ activesupport (5.0.7)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
18
+ i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
- appraisal (2.1.0)
21
+ appraisal (2.2.0)
22
22
  bundler
23
23
  rake
24
24
  thor (>= 0.14.0)
25
25
  arel (7.1.4)
26
26
  concurrent-ruby (1.0.5)
27
27
  diff-lcs (1.3)
28
- i18n (0.8.1)
29
- minitest (5.10.1)
30
- rake (12.0.0)
31
- rspec (3.5.0)
32
- rspec-core (~> 3.5.0)
33
- rspec-expectations (~> 3.5.0)
34
- rspec-mocks (~> 3.5.0)
35
- rspec-core (3.5.4)
36
- rspec-support (~> 3.5.0)
37
- rspec-expectations (3.5.0)
28
+ i18n (1.0.1)
29
+ concurrent-ruby (~> 1.0)
30
+ minitest (5.11.3)
31
+ rake (12.3.1)
32
+ rspec (3.7.0)
33
+ rspec-core (~> 3.7.0)
34
+ rspec-expectations (~> 3.7.0)
35
+ rspec-mocks (~> 3.7.0)
36
+ rspec-core (3.7.1)
37
+ rspec-support (~> 3.7.0)
38
+ rspec-expectations (3.7.0)
38
39
  diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.5.0)
40
- rspec-mocks (3.5.0)
40
+ rspec-support (~> 3.7.0)
41
+ rspec-mocks (3.7.0)
41
42
  diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.5.0)
43
- rspec-support (3.5.0)
43
+ rspec-support (~> 3.7.0)
44
+ rspec-support (3.7.1)
44
45
  sqlite3 (1.3.13)
45
- thor (0.19.4)
46
+ thor (0.20.0)
46
47
  thread_safe (0.3.6)
47
- tzinfo (1.2.2)
48
+ tzinfo (1.2.5)
48
49
  thread_safe (~> 0.1)
49
50
 
50
51
  PLATFORMS
51
52
  ruby
52
53
 
53
54
  DEPENDENCIES
54
- activerecord (= 5.0.2)
55
+ activerecord (= 5.0.7)
55
56
  appraisal
56
57
  bundler (~> 1.3)
57
58
  deferring!
@@ -60,4 +61,4 @@ DEPENDENCIES
60
61
  sqlite3
61
62
 
62
63
  BUNDLED WITH
63
- 1.13.0
64
+ 1.16.2
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "5.1.4"
5
+ gem "activerecord", "5.1.6"
6
6
 
7
7
  gemspec :path => "../"
@@ -1,21 +1,21 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- deferring (0.4.0)
5
- activerecord (> 4.0)
4
+ deferring (0.5.0)
5
+ activerecord (>= 4.2, < 5.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.1.4)
11
- activesupport (= 5.1.4)
12
- activerecord (5.1.4)
13
- activemodel (= 5.1.4)
14
- activesupport (= 5.1.4)
10
+ activemodel (5.1.6)
11
+ activesupport (= 5.1.6)
12
+ activerecord (5.1.6)
13
+ activemodel (= 5.1.6)
14
+ activesupport (= 5.1.6)
15
15
  arel (~> 8.0)
16
- activesupport (5.1.4)
16
+ activesupport (5.1.6)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
18
+ i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
21
  appraisal (2.2.0)
@@ -25,15 +25,15 @@ GEM
25
25
  arel (8.0.0)
26
26
  concurrent-ruby (1.0.5)
27
27
  diff-lcs (1.3)
28
- i18n (0.9.1)
28
+ i18n (1.0.1)
29
29
  concurrent-ruby (~> 1.0)
30
- minitest (5.10.3)
31
- rake (12.3.0)
30
+ minitest (5.11.3)
31
+ rake (12.3.1)
32
32
  rspec (3.7.0)
33
33
  rspec-core (~> 3.7.0)
34
34
  rspec-expectations (~> 3.7.0)
35
35
  rspec-mocks (~> 3.7.0)
36
- rspec-core (3.7.0)
36
+ rspec-core (3.7.1)
37
37
  rspec-support (~> 3.7.0)
38
38
  rspec-expectations (3.7.0)
39
39
  diff-lcs (>= 1.2.0, < 2.0)
@@ -41,18 +41,18 @@ GEM
41
41
  rspec-mocks (3.7.0)
42
42
  diff-lcs (>= 1.2.0, < 2.0)
43
43
  rspec-support (~> 3.7.0)
44
- rspec-support (3.7.0)
44
+ rspec-support (3.7.1)
45
45
  sqlite3 (1.3.13)
46
46
  thor (0.20.0)
47
47
  thread_safe (0.3.6)
48
- tzinfo (1.2.4)
48
+ tzinfo (1.2.5)
49
49
  thread_safe (~> 0.1)
50
50
 
51
51
  PLATFORMS
52
52
  ruby
53
53
 
54
54
  DEPENDENCIES
55
- activerecord (= 5.1.4)
55
+ activerecord (= 5.1.6)
56
56
  appraisal
57
57
  bundler (~> 1.3)
58
58
  deferring!
@@ -61,4 +61,4 @@ DEPENDENCIES
61
61
  sqlite3
62
62
 
63
63
  BUNDLED WITH
64
- 1.13.0
64
+ 1.16.2
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "4.0.13"
5
+ gem "activerecord", "5.2.0"
6
6
 
7
7
  gemspec :path => "../"
@@ -0,0 +1,64 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ deferring (0.5.0)
5
+ activerecord (>= 4.2, < 5.3)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.2.0)
11
+ activesupport (= 5.2.0)
12
+ activerecord (5.2.0)
13
+ activemodel (= 5.2.0)
14
+ activesupport (= 5.2.0)
15
+ arel (>= 9.0)
16
+ activesupport (5.2.0)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
19
+ minitest (~> 5.1)
20
+ tzinfo (~> 1.1)
21
+ appraisal (2.2.0)
22
+ bundler
23
+ rake
24
+ thor (>= 0.14.0)
25
+ arel (9.0.0)
26
+ concurrent-ruby (1.0.5)
27
+ diff-lcs (1.3)
28
+ i18n (1.0.1)
29
+ concurrent-ruby (~> 1.0)
30
+ minitest (5.11.3)
31
+ rake (12.3.1)
32
+ rspec (3.7.0)
33
+ rspec-core (~> 3.7.0)
34
+ rspec-expectations (~> 3.7.0)
35
+ rspec-mocks (~> 3.7.0)
36
+ rspec-core (3.7.1)
37
+ rspec-support (~> 3.7.0)
38
+ rspec-expectations (3.7.0)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.7.0)
41
+ rspec-mocks (3.7.0)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.7.0)
44
+ rspec-support (3.7.1)
45
+ sqlite3 (1.3.13)
46
+ thor (0.20.0)
47
+ thread_safe (0.3.6)
48
+ tzinfo (1.2.5)
49
+ thread_safe (~> 0.1)
50
+
51
+ PLATFORMS
52
+ ruby
53
+
54
+ DEPENDENCIES
55
+ activerecord (= 5.2.0)
56
+ appraisal
57
+ bundler (~> 1.3)
58
+ deferring!
59
+ rake
60
+ rspec
61
+ sqlite3
62
+
63
+ BUNDLED WITH
64
+ 1.16.2
@@ -1,3 +1,3 @@
1
1
  module Deferring
2
- VERSION = '0.4.1'
2
+ VERSION = '0.5.0'
3
3
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deferring
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robin Roestenburg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-18 00:00:00.000000000 Z
11
+ date: 2018-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: '4.0'
22
+ version: '5.3'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - ">"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '4.2'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '4.0'
32
+ version: '5.3'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: bundler
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -111,16 +117,14 @@ files:
111
117
  - README.md
112
118
  - Rakefile
113
119
  - deferring.gemspec
114
- - gemfiles/rails_40.gemfile
115
- - gemfiles/rails_40.gemfile.lock
116
- - gemfiles/rails_41.gemfile
117
- - gemfiles/rails_41.gemfile.lock
118
120
  - gemfiles/rails_42.gemfile
119
121
  - gemfiles/rails_42.gemfile.lock
120
122
  - gemfiles/rails_50.gemfile
121
123
  - gemfiles/rails_50.gemfile.lock
122
124
  - gemfiles/rails_51.gemfile
123
125
  - gemfiles/rails_51.gemfile.lock
126
+ - gemfiles/rails_52.gemfile
127
+ - gemfiles/rails_52.gemfile.lock
124
128
  - lib/deferring.rb
125
129
  - lib/deferring/deferred_association.rb
126
130
  - lib/deferring/deferred_callback_listener.rb
@@ -1,67 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- deferring (0.4.0)
5
- activerecord (> 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.0.13)
11
- activesupport (= 4.0.13)
12
- builder (~> 3.1.0)
13
- activerecord (4.0.13)
14
- activemodel (= 4.0.13)
15
- activerecord-deprecated_finders (~> 1.0.2)
16
- activesupport (= 4.0.13)
17
- arel (~> 4.0.0)
18
- activerecord-deprecated_finders (1.0.4)
19
- activesupport (4.0.13)
20
- i18n (~> 0.6, >= 0.6.9)
21
- minitest (~> 4.2)
22
- multi_json (~> 1.3)
23
- thread_safe (~> 0.1)
24
- tzinfo (~> 0.3.37)
25
- appraisal (2.1.0)
26
- bundler
27
- rake
28
- thor (>= 0.14.0)
29
- arel (4.0.2)
30
- builder (3.1.4)
31
- diff-lcs (1.3)
32
- i18n (0.8.1)
33
- minitest (4.7.5)
34
- multi_json (1.12.1)
35
- rake (12.0.0)
36
- rspec (3.5.0)
37
- rspec-core (~> 3.5.0)
38
- rspec-expectations (~> 3.5.0)
39
- rspec-mocks (~> 3.5.0)
40
- rspec-core (3.5.4)
41
- rspec-support (~> 3.5.0)
42
- rspec-expectations (3.5.0)
43
- diff-lcs (>= 1.2.0, < 2.0)
44
- rspec-support (~> 3.5.0)
45
- rspec-mocks (3.5.0)
46
- diff-lcs (>= 1.2.0, < 2.0)
47
- rspec-support (~> 3.5.0)
48
- rspec-support (3.5.0)
49
- sqlite3 (1.3.13)
50
- thor (0.19.4)
51
- thread_safe (0.3.6)
52
- tzinfo (0.3.52)
53
-
54
- PLATFORMS
55
- ruby
56
-
57
- DEPENDENCIES
58
- activerecord (= 4.0.13)
59
- appraisal
60
- bundler (~> 1.3)
61
- deferring!
62
- rake
63
- rspec
64
- sqlite3
65
-
66
- BUNDLED WITH
67
- 1.13.0
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "activerecord", "4.1.15"
6
-
7
- gemspec :path => "../"
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- deferring (0.4.0)
5
- activerecord (> 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.1.15)
11
- activesupport (= 4.1.15)
12
- builder (~> 3.1)
13
- activerecord (4.1.15)
14
- activemodel (= 4.1.15)
15
- activesupport (= 4.1.15)
16
- arel (~> 5.0.0)
17
- activesupport (4.1.15)
18
- i18n (~> 0.6, >= 0.6.9)
19
- json (~> 1.7, >= 1.7.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.1)
22
- tzinfo (~> 1.1)
23
- appraisal (2.1.0)
24
- bundler
25
- rake
26
- thor (>= 0.14.0)
27
- arel (5.0.1.20140414130214)
28
- builder (3.2.3)
29
- diff-lcs (1.3)
30
- i18n (0.8.1)
31
- json (1.8.6)
32
- minitest (5.10.1)
33
- rake (12.0.0)
34
- rspec (3.5.0)
35
- rspec-core (~> 3.5.0)
36
- rspec-expectations (~> 3.5.0)
37
- rspec-mocks (~> 3.5.0)
38
- rspec-core (3.5.4)
39
- rspec-support (~> 3.5.0)
40
- rspec-expectations (3.5.0)
41
- diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.5.0)
43
- rspec-mocks (3.5.0)
44
- diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.5.0)
46
- rspec-support (3.5.0)
47
- sqlite3 (1.3.13)
48
- thor (0.19.4)
49
- thread_safe (0.3.6)
50
- tzinfo (1.2.2)
51
- thread_safe (~> 0.1)
52
-
53
- PLATFORMS
54
- ruby
55
-
56
- DEPENDENCIES
57
- activerecord (= 4.1.15)
58
- appraisal
59
- bundler (~> 1.3)
60
- deferring!
61
- rake
62
- rspec
63
- sqlite3
64
-
65
- BUNDLED WITH
66
- 1.13.0