factory_bot_instrumentation 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37c841015eb6d5ca194d74c475957cf81a896a1ba20cebfd354de0702979a003
4
- data.tar.gz: f4071fb9684abc657f92e0c5d5b8001c557832e4a2a8645ee3225e600f737a55
3
+ metadata.gz: 32b62f67039dbe0cd562eaf5ea41336866bce49cac7153b0abb86858a6ecf5e0
4
+ data.tar.gz: 3efc8629cced06d8d68da53aaaaa6ba1280d5b25be43b71b9d930fbd9f1424e5
5
5
  SHA512:
6
- metadata.gz: ca07c702926a18278aac3488b409d5d2a6cb3297fa3bbf3f6371c6606f26139c98b0c741995baf9662935dc890ff7cf7864f1f299c2402a6a3617d9bedbb71e9
7
- data.tar.gz: 38eb79f9af34cbdc7a02d45c21a4f33db15c8688159a7e012c6b1f237e2edc2ea75585cd820bcb0541d8a4673c05270c83b58059282053453dd2df9ce1b1e653
6
+ metadata.gz: 8b8deb694372a595010a82a314234e4f0b5a2c5342c6ebb5568a497fe677530d54d2d4ea6443ef5f2154cc1fc601d1367e755035cb06c4fb26c39d06947b4ae1
7
+ data.tar.gz: 47b5760d942fcc51e5fc5d6df7c3fc9dfe8ed1a0b0ce593224aba027e925c7124239e0dbf28a222d143102dd6a16e593fa84c51446cd8c75b5b1cf4e50dc5d35
data/.gitignore CHANGED
@@ -8,6 +8,8 @@
8
8
  /tmp/
9
9
  /vendor/
10
10
  /gemfiles/vendor/
11
+ /Gemfile.lock
12
+ *.gemfile.lock
11
13
 
12
14
  # rspec failure tracking
13
15
  .rspec_status
@@ -17,7 +17,11 @@ gemfile:
17
17
  - gemfiles/rails_5.1.gemfile
18
18
  - gemfiles/rails_5.2.gemfile
19
19
 
20
- before_install: gem install bundler
20
+ before_install: |
21
+ [[ ! "${BUNDLE_GEMFILE}" =~ rails_4 ]] \
22
+ && (gem install bundler) \
23
+ || (yes n | rvm @global do gem uninstall bundler; \
24
+ gem install bundler -v '~> 1.0') \
21
25
 
22
26
  before_script:
23
27
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
data/Appraisals CHANGED
@@ -1,15 +1,15 @@
1
1
  appraise 'rails-4' do
2
- gem 'activesupport', '4.2.10'
2
+ gem 'rails', '~> 4.2.11'
3
3
  end
4
4
 
5
5
  appraise 'rails-5.0' do
6
- gem 'activesupport', '5.0.6'
6
+ gem 'rails', '~> 5.0.7'
7
7
  end
8
8
 
9
9
  appraise 'rails-5.1' do
10
- gem 'activesupport', '5.1.4'
10
+ gem 'rails', '~> 5.1.6'
11
11
  end
12
12
 
13
13
  appraise 'rails-5.2' do
14
- gem 'activesupport', '5.2.0'
14
+ gem 'rails', '~> 5.2.2'
15
15
  end
@@ -1,3 +1,9 @@
1
+ ### 0.2.0
2
+
3
+ * Removed the Gemfile locks and added the to the ignore list
4
+ * Dropped Rails 3 support
5
+ * Added support for Bundler 1 and 2
6
+
1
7
  ### 0.1.0
2
8
 
3
9
  * Added the initial code base
@@ -21,10 +21,10 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_runtime_dependency 'rails', '>= 3.2.0'
24
+ spec.add_runtime_dependency 'rails', '>= 4.0'
25
25
  spec.add_runtime_dependency 'factory_bot'
26
26
 
27
- spec.add_development_dependency 'bundler', '~> 1.16'
27
+ spec.add_development_dependency 'bundler', '>= 1.16', '< 3'
28
28
  spec.add_development_dependency 'rspec', '~> 3.0'
29
29
  spec.add_development_dependency 'simplecov', '~> 0.15'
30
30
  spec.add_development_dependency 'timecop', '~> 0.9.1'
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activesupport", "4.2.10"
5
+ gem "rails", "~> 4.2.11"
6
6
 
7
7
  gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activesupport", "5.0.6"
5
+ gem "rails", "~> 5.0.7"
6
6
 
7
7
  gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activesupport", "5.1.4"
5
+ gem "rails", "~> 5.1.6"
6
6
 
7
7
  gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activesupport", "5.2.0"
5
+ gem "rails", "~> 5.2.2"
6
6
 
7
7
  gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module FactoryBot
4
4
  module Instrumentation
5
- VERSION = '0.1.0'.freeze
5
+ VERSION = '0.2.0'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_bot_instrumentation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-10 00:00:00.000000000 Z
11
+ date: 2019-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.2.0
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.2.0
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: factory_bot
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -42,16 +42,22 @@ dependencies:
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.16'
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: '3'
48
51
  type: :development
49
52
  prerelease: false
50
53
  version_requirements: !ruby/object:Gem::Requirement
51
54
  requirements:
52
- - - "~>"
55
+ - - ">="
53
56
  - !ruby/object:Gem::Version
54
57
  version: '1.16'
58
+ - - "<"
59
+ - !ruby/object:Gem::Version
60
+ version: '3'
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: rspec
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -138,7 +144,6 @@ files:
138
144
  - Appraisals
139
145
  - CHANGELOG.md
140
146
  - Gemfile
141
- - Gemfile.lock
142
147
  - LICENSE
143
148
  - Makefile
144
149
  - README.md
@@ -173,13 +178,9 @@ files:
173
178
  - docker-compose.yml
174
179
  - factory_bot_instrumentation.gemspec
175
180
  - gemfiles/rails_4.gemfile
176
- - gemfiles/rails_4.gemfile.lock
177
181
  - gemfiles/rails_5.0.gemfile
178
- - gemfiles/rails_5.0.gemfile.lock
179
182
  - gemfiles/rails_5.1.gemfile
180
- - gemfiles/rails_5.1.gemfile.lock
181
183
  - gemfiles/rails_5.2.gemfile
182
- - gemfiles/rails_5.2.gemfile.lock
183
184
  - lib/factory_bot/instrumentation/configuration.rb
184
185
  - lib/factory_bot/instrumentation/engine.rb
185
186
  - lib/factory_bot/instrumentation/version.rb
@@ -202,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
203
  - !ruby/object:Gem::Version
203
204
  version: '0'
204
205
  requirements: []
205
- rubygems_version: 3.0.2
206
+ rubygems_version: 3.0.3
206
207
  signing_key:
207
208
  specification_version: 4
208
209
  summary: Allow your testers to generate test data on demand
@@ -1,161 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- factory_bot_instrumentation (0.1.0)
5
- factory_bot
6
- rails (>= 3.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.2)
12
- actionpack (= 5.2.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.2)
16
- actionpack (= 5.2.2)
17
- actionview (= 5.2.2)
18
- activejob (= 5.2.2)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.2)
22
- actionview (= 5.2.2)
23
- activesupport (= 5.2.2)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.2)
29
- activesupport (= 5.2.2)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.2)
35
- activesupport (= 5.2.2)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.2)
38
- activesupport (= 5.2.2)
39
- activerecord (5.2.2)
40
- activemodel (= 5.2.2)
41
- activesupport (= 5.2.2)
42
- arel (>= 9.0)
43
- activestorage (5.2.2)
44
- actionpack (= 5.2.2)
45
- activerecord (= 5.2.2)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.2)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- appraisal (2.2.0)
53
- bundler
54
- rake
55
- thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.3)
58
- concurrent-ruby (1.1.4)
59
- crass (1.0.4)
60
- diff-lcs (1.3)
61
- docile (1.3.1)
62
- erubi (1.8.0)
63
- factory_bot (4.11.1)
64
- activesupport (>= 3.0.0)
65
- globalid (0.4.1)
66
- activesupport (>= 4.2.0)
67
- i18n (1.5.1)
68
- concurrent-ruby (~> 1.0)
69
- json (2.1.0)
70
- loofah (2.2.3)
71
- crass (~> 1.0.2)
72
- nokogiri (>= 1.5.9)
73
- mail (2.7.1)
74
- mini_mime (>= 0.1.1)
75
- marcel (0.3.3)
76
- mimemagic (~> 0.3.2)
77
- method_source (0.9.2)
78
- mimemagic (0.3.3)
79
- mini_mime (1.0.1)
80
- mini_portile2 (2.4.0)
81
- minitest (5.11.3)
82
- nio4r (2.3.1)
83
- nokogiri (1.10.0)
84
- mini_portile2 (~> 2.4.0)
85
- rack (2.0.6)
86
- rack-test (0.8.3)
87
- rack (>= 1.0, < 3)
88
- rails (5.2.2)
89
- actioncable (= 5.2.2)
90
- actionmailer (= 5.2.2)
91
- actionpack (= 5.2.2)
92
- actionview (= 5.2.2)
93
- activejob (= 5.2.2)
94
- activemodel (= 5.2.2)
95
- activerecord (= 5.2.2)
96
- activestorage (= 5.2.2)
97
- activesupport (= 5.2.2)
98
- bundler (>= 1.3.0)
99
- railties (= 5.2.2)
100
- sprockets-rails (>= 2.0.0)
101
- rails-dom-testing (2.0.3)
102
- activesupport (>= 4.2.0)
103
- nokogiri (>= 1.6)
104
- rails-html-sanitizer (1.0.4)
105
- loofah (~> 2.2, >= 2.2.2)
106
- railties (5.2.2)
107
- actionpack (= 5.2.2)
108
- activesupport (= 5.2.2)
109
- method_source
110
- rake (>= 0.8.7)
111
- thor (>= 0.19.0, < 2.0)
112
- rake (10.5.0)
113
- rspec (3.8.0)
114
- rspec-core (~> 3.8.0)
115
- rspec-expectations (~> 3.8.0)
116
- rspec-mocks (~> 3.8.0)
117
- rspec-core (3.8.0)
118
- rspec-support (~> 3.8.0)
119
- rspec-expectations (3.8.2)
120
- diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.8.0)
122
- rspec-mocks (3.8.0)
123
- diff-lcs (>= 1.2.0, < 2.0)
124
- rspec-support (~> 3.8.0)
125
- rspec-support (3.8.0)
126
- simplecov (0.16.1)
127
- docile (~> 1.1)
128
- json (>= 1.8, < 3)
129
- simplecov-html (~> 0.10.0)
130
- simplecov-html (0.10.2)
131
- sprockets (3.7.2)
132
- concurrent-ruby (~> 1.0)
133
- rack (> 1, < 3)
134
- sprockets-rails (3.2.1)
135
- actionpack (>= 4.0)
136
- activesupport (>= 4.0)
137
- sprockets (>= 3.0.0)
138
- sqlite3 (1.3.13)
139
- thor (0.20.3)
140
- thread_safe (0.3.6)
141
- timecop (0.9.1)
142
- tzinfo (1.2.5)
143
- thread_safe (~> 0.1)
144
- websocket-driver (0.7.0)
145
- websocket-extensions (>= 0.1.0)
146
- websocket-extensions (0.1.3)
147
-
148
- PLATFORMS
149
- ruby
150
-
151
- DEPENDENCIES
152
- appraisal
153
- bundler (~> 1.16)
154
- factory_bot_instrumentation!
155
- rspec (~> 3.0)
156
- simplecov (~> 0.15)
157
- sqlite3
158
- timecop (~> 0.9.1)
159
-
160
- BUNDLED WITH
161
- 1.17.2
@@ -1,147 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- factory_bot_instrumentation (0.1.0)
5
- factory_bot
6
- rails (>= 3.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.10)
12
- actionpack (= 4.2.10)
13
- actionview (= 4.2.10)
14
- activejob (= 4.2.10)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.10)
18
- actionview (= 4.2.10)
19
- activesupport (= 4.2.10)
20
- rack (~> 1.6)
21
- rack-test (~> 0.6.2)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.10)
25
- activesupport (= 4.2.10)
26
- builder (~> 3.1)
27
- erubis (~> 2.7.0)
28
- rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
- activejob (4.2.10)
31
- activesupport (= 4.2.10)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.10)
34
- activesupport (= 4.2.10)
35
- builder (~> 3.1)
36
- activerecord (4.2.10)
37
- activemodel (= 4.2.10)
38
- activesupport (= 4.2.10)
39
- arel (~> 6.0)
40
- activesupport (4.2.10)
41
- i18n (~> 0.7)
42
- minitest (~> 5.1)
43
- thread_safe (~> 0.3, >= 0.3.4)
44
- tzinfo (~> 1.1)
45
- appraisal (2.2.0)
46
- bundler
47
- rake
48
- thor (>= 0.14.0)
49
- arel (6.0.4)
50
- builder (3.2.3)
51
- concurrent-ruby (1.1.4)
52
- crass (1.0.4)
53
- diff-lcs (1.3)
54
- docile (1.3.1)
55
- erubis (2.7.0)
56
- factory_bot (4.11.1)
57
- activesupport (>= 3.0.0)
58
- globalid (0.4.1)
59
- activesupport (>= 4.2.0)
60
- i18n (0.9.5)
61
- concurrent-ruby (~> 1.0)
62
- json (2.1.0)
63
- loofah (2.2.3)
64
- crass (~> 1.0.2)
65
- nokogiri (>= 1.5.9)
66
- mail (2.7.1)
67
- mini_mime (>= 0.1.1)
68
- mini_mime (1.0.1)
69
- mini_portile2 (2.4.0)
70
- minitest (5.11.3)
71
- nokogiri (1.10.0)
72
- mini_portile2 (~> 2.4.0)
73
- rack (1.6.11)
74
- rack-test (0.6.3)
75
- rack (>= 1.0)
76
- rails (4.2.10)
77
- actionmailer (= 4.2.10)
78
- actionpack (= 4.2.10)
79
- actionview (= 4.2.10)
80
- activejob (= 4.2.10)
81
- activemodel (= 4.2.10)
82
- activerecord (= 4.2.10)
83
- activesupport (= 4.2.10)
84
- bundler (>= 1.3.0, < 2.0)
85
- railties (= 4.2.10)
86
- sprockets-rails
87
- rails-deprecated_sanitizer (1.0.3)
88
- activesupport (>= 4.2.0.alpha)
89
- rails-dom-testing (1.0.9)
90
- activesupport (>= 4.2.0, < 5.0)
91
- nokogiri (~> 1.6)
92
- rails-deprecated_sanitizer (>= 1.0.1)
93
- rails-html-sanitizer (1.0.4)
94
- loofah (~> 2.2, >= 2.2.2)
95
- railties (4.2.10)
96
- actionpack (= 4.2.10)
97
- activesupport (= 4.2.10)
98
- rake (>= 0.8.7)
99
- thor (>= 0.18.1, < 2.0)
100
- rake (12.3.2)
101
- rspec (3.8.0)
102
- rspec-core (~> 3.8.0)
103
- rspec-expectations (~> 3.8.0)
104
- rspec-mocks (~> 3.8.0)
105
- rspec-core (3.8.0)
106
- rspec-support (~> 3.8.0)
107
- rspec-expectations (3.8.2)
108
- diff-lcs (>= 1.2.0, < 2.0)
109
- rspec-support (~> 3.8.0)
110
- rspec-mocks (3.8.0)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.8.0)
113
- rspec-support (3.8.0)
114
- simplecov (0.16.1)
115
- docile (~> 1.1)
116
- json (>= 1.8, < 3)
117
- simplecov-html (~> 0.10.0)
118
- simplecov-html (0.10.2)
119
- sprockets (3.7.2)
120
- concurrent-ruby (~> 1.0)
121
- rack (> 1, < 3)
122
- sprockets-rails (3.2.1)
123
- actionpack (>= 4.0)
124
- activesupport (>= 4.0)
125
- sprockets (>= 3.0.0)
126
- sqlite3 (1.3.13)
127
- thor (0.20.3)
128
- thread_safe (0.3.6)
129
- timecop (0.9.1)
130
- tzinfo (1.2.5)
131
- thread_safe (~> 0.1)
132
-
133
- PLATFORMS
134
- ruby
135
-
136
- DEPENDENCIES
137
- activesupport (= 4.2.10)
138
- appraisal
139
- bundler (~> 1.16)
140
- factory_bot_instrumentation!
141
- rspec (~> 3.0)
142
- simplecov (~> 0.15)
143
- sqlite3
144
- timecop (~> 0.9.1)
145
-
146
- BUNDLED WITH
147
- 1.17.2
@@ -1,154 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- factory_bot_instrumentation (0.1.0)
5
- factory_bot
6
- rails (>= 3.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.6)
12
- actionpack (= 5.0.6)
13
- nio4r (>= 1.2, < 3.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.6)
16
- actionpack (= 5.0.6)
17
- actionview (= 5.0.6)
18
- activejob (= 5.0.6)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.6)
22
- actionview (= 5.0.6)
23
- activesupport (= 5.0.6)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.6)
29
- activesupport (= 5.0.6)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.0.6)
35
- activesupport (= 5.0.6)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.6)
38
- activesupport (= 5.0.6)
39
- activerecord (5.0.6)
40
- activemodel (= 5.0.6)
41
- activesupport (= 5.0.6)
42
- arel (~> 7.0)
43
- activesupport (5.0.6)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- appraisal (2.2.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (7.1.4)
53
- builder (3.2.3)
54
- concurrent-ruby (1.1.4)
55
- crass (1.0.4)
56
- diff-lcs (1.3)
57
- docile (1.3.1)
58
- erubis (2.7.0)
59
- factory_bot (4.11.1)
60
- activesupport (>= 3.0.0)
61
- globalid (0.4.1)
62
- activesupport (>= 4.2.0)
63
- i18n (0.9.5)
64
- concurrent-ruby (~> 1.0)
65
- json (2.1.0)
66
- loofah (2.2.3)
67
- crass (~> 1.0.2)
68
- nokogiri (>= 1.5.9)
69
- mail (2.7.1)
70
- mini_mime (>= 0.1.1)
71
- method_source (0.9.2)
72
- mini_mime (1.0.1)
73
- mini_portile2 (2.4.0)
74
- minitest (5.11.3)
75
- nio4r (2.3.1)
76
- nokogiri (1.10.0)
77
- mini_portile2 (~> 2.4.0)
78
- rack (2.0.6)
79
- rack-test (0.6.3)
80
- rack (>= 1.0)
81
- rails (5.0.6)
82
- actioncable (= 5.0.6)
83
- actionmailer (= 5.0.6)
84
- actionpack (= 5.0.6)
85
- actionview (= 5.0.6)
86
- activejob (= 5.0.6)
87
- activemodel (= 5.0.6)
88
- activerecord (= 5.0.6)
89
- activesupport (= 5.0.6)
90
- bundler (>= 1.3.0)
91
- railties (= 5.0.6)
92
- sprockets-rails (>= 2.0.0)
93
- rails-dom-testing (2.0.3)
94
- activesupport (>= 4.2.0)
95
- nokogiri (>= 1.6)
96
- rails-html-sanitizer (1.0.4)
97
- loofah (~> 2.2, >= 2.2.2)
98
- railties (5.0.6)
99
- actionpack (= 5.0.6)
100
- activesupport (= 5.0.6)
101
- method_source
102
- rake (>= 0.8.7)
103
- thor (>= 0.18.1, < 2.0)
104
- rake (12.3.2)
105
- rspec (3.8.0)
106
- rspec-core (~> 3.8.0)
107
- rspec-expectations (~> 3.8.0)
108
- rspec-mocks (~> 3.8.0)
109
- rspec-core (3.8.0)
110
- rspec-support (~> 3.8.0)
111
- rspec-expectations (3.8.2)
112
- diff-lcs (>= 1.2.0, < 2.0)
113
- rspec-support (~> 3.8.0)
114
- rspec-mocks (3.8.0)
115
- diff-lcs (>= 1.2.0, < 2.0)
116
- rspec-support (~> 3.8.0)
117
- rspec-support (3.8.0)
118
- simplecov (0.16.1)
119
- docile (~> 1.1)
120
- json (>= 1.8, < 3)
121
- simplecov-html (~> 0.10.0)
122
- simplecov-html (0.10.2)
123
- sprockets (3.7.2)
124
- concurrent-ruby (~> 1.0)
125
- rack (> 1, < 3)
126
- sprockets-rails (3.2.1)
127
- actionpack (>= 4.0)
128
- activesupport (>= 4.0)
129
- sprockets (>= 3.0.0)
130
- sqlite3 (1.3.13)
131
- thor (0.20.3)
132
- thread_safe (0.3.6)
133
- timecop (0.9.1)
134
- tzinfo (1.2.5)
135
- thread_safe (~> 0.1)
136
- websocket-driver (0.6.5)
137
- websocket-extensions (>= 0.1.0)
138
- websocket-extensions (0.1.3)
139
-
140
- PLATFORMS
141
- ruby
142
-
143
- DEPENDENCIES
144
- activesupport (= 5.0.6)
145
- appraisal
146
- bundler (~> 1.16)
147
- factory_bot_instrumentation!
148
- rspec (~> 3.0)
149
- simplecov (~> 0.15)
150
- sqlite3
151
- timecop (~> 0.9.1)
152
-
153
- BUNDLED WITH
154
- 1.17.2
@@ -1,154 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- factory_bot_instrumentation (0.1.0)
5
- factory_bot
6
- rails (>= 3.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.1.4)
12
- actionpack (= 5.1.4)
13
- nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.4)
16
- actionpack (= 5.1.4)
17
- actionview (= 5.1.4)
18
- activejob (= 5.1.4)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.1.4)
22
- actionview (= 5.1.4)
23
- activesupport (= 5.1.4)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.4)
29
- activesupport (= 5.1.4)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.4)
35
- activesupport (= 5.1.4)
36
- globalid (>= 0.3.6)
37
- activemodel (5.1.4)
38
- activesupport (= 5.1.4)
39
- activerecord (5.1.4)
40
- activemodel (= 5.1.4)
41
- activesupport (= 5.1.4)
42
- arel (~> 8.0)
43
- activesupport (5.1.4)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- appraisal (2.2.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (8.0.0)
53
- builder (3.2.3)
54
- concurrent-ruby (1.1.4)
55
- crass (1.0.4)
56
- diff-lcs (1.3)
57
- docile (1.3.1)
58
- erubi (1.8.0)
59
- factory_bot (4.11.1)
60
- activesupport (>= 3.0.0)
61
- globalid (0.4.1)
62
- activesupport (>= 4.2.0)
63
- i18n (0.9.5)
64
- concurrent-ruby (~> 1.0)
65
- json (2.1.0)
66
- loofah (2.2.3)
67
- crass (~> 1.0.2)
68
- nokogiri (>= 1.5.9)
69
- mail (2.7.1)
70
- mini_mime (>= 0.1.1)
71
- method_source (0.9.2)
72
- mini_mime (1.0.1)
73
- mini_portile2 (2.4.0)
74
- minitest (5.11.3)
75
- nio4r (2.3.1)
76
- nokogiri (1.10.0)
77
- mini_portile2 (~> 2.4.0)
78
- rack (2.0.6)
79
- rack-test (1.1.0)
80
- rack (>= 1.0, < 3)
81
- rails (5.1.4)
82
- actioncable (= 5.1.4)
83
- actionmailer (= 5.1.4)
84
- actionpack (= 5.1.4)
85
- actionview (= 5.1.4)
86
- activejob (= 5.1.4)
87
- activemodel (= 5.1.4)
88
- activerecord (= 5.1.4)
89
- activesupport (= 5.1.4)
90
- bundler (>= 1.3.0)
91
- railties (= 5.1.4)
92
- sprockets-rails (>= 2.0.0)
93
- rails-dom-testing (2.0.3)
94
- activesupport (>= 4.2.0)
95
- nokogiri (>= 1.6)
96
- rails-html-sanitizer (1.0.4)
97
- loofah (~> 2.2, >= 2.2.2)
98
- railties (5.1.4)
99
- actionpack (= 5.1.4)
100
- activesupport (= 5.1.4)
101
- method_source
102
- rake (>= 0.8.7)
103
- thor (>= 0.18.1, < 2.0)
104
- rake (12.3.2)
105
- rspec (3.8.0)
106
- rspec-core (~> 3.8.0)
107
- rspec-expectations (~> 3.8.0)
108
- rspec-mocks (~> 3.8.0)
109
- rspec-core (3.8.0)
110
- rspec-support (~> 3.8.0)
111
- rspec-expectations (3.8.2)
112
- diff-lcs (>= 1.2.0, < 2.0)
113
- rspec-support (~> 3.8.0)
114
- rspec-mocks (3.8.0)
115
- diff-lcs (>= 1.2.0, < 2.0)
116
- rspec-support (~> 3.8.0)
117
- rspec-support (3.8.0)
118
- simplecov (0.16.1)
119
- docile (~> 1.1)
120
- json (>= 1.8, < 3)
121
- simplecov-html (~> 0.10.0)
122
- simplecov-html (0.10.2)
123
- sprockets (3.7.2)
124
- concurrent-ruby (~> 1.0)
125
- rack (> 1, < 3)
126
- sprockets-rails (3.2.1)
127
- actionpack (>= 4.0)
128
- activesupport (>= 4.0)
129
- sprockets (>= 3.0.0)
130
- sqlite3 (1.3.13)
131
- thor (0.20.3)
132
- thread_safe (0.3.6)
133
- timecop (0.9.1)
134
- tzinfo (1.2.5)
135
- thread_safe (~> 0.1)
136
- websocket-driver (0.6.5)
137
- websocket-extensions (>= 0.1.0)
138
- websocket-extensions (0.1.3)
139
-
140
- PLATFORMS
141
- ruby
142
-
143
- DEPENDENCIES
144
- activesupport (= 5.1.4)
145
- appraisal
146
- bundler (~> 1.16)
147
- factory_bot_instrumentation!
148
- rspec (~> 3.0)
149
- simplecov (~> 0.15)
150
- sqlite3
151
- timecop (~> 0.9.1)
152
-
153
- BUNDLED WITH
154
- 1.17.2
@@ -1,162 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- factory_bot_instrumentation (0.1.0)
5
- factory_bot
6
- rails (>= 3.2.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.0)
12
- actionpack (= 5.2.0)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.0)
16
- actionpack (= 5.2.0)
17
- actionview (= 5.2.0)
18
- activejob (= 5.2.0)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.0)
22
- actionview (= 5.2.0)
23
- activesupport (= 5.2.0)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.0)
29
- activesupport (= 5.2.0)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.0)
35
- activesupport (= 5.2.0)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.0)
38
- activesupport (= 5.2.0)
39
- activerecord (5.2.0)
40
- activemodel (= 5.2.0)
41
- activesupport (= 5.2.0)
42
- arel (>= 9.0)
43
- activestorage (5.2.0)
44
- actionpack (= 5.2.0)
45
- activerecord (= 5.2.0)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.0)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- appraisal (2.2.0)
53
- bundler
54
- rake
55
- thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.3)
58
- concurrent-ruby (1.1.4)
59
- crass (1.0.4)
60
- diff-lcs (1.3)
61
- docile (1.3.1)
62
- erubi (1.8.0)
63
- factory_bot (4.11.1)
64
- activesupport (>= 3.0.0)
65
- globalid (0.4.1)
66
- activesupport (>= 4.2.0)
67
- i18n (1.5.1)
68
- concurrent-ruby (~> 1.0)
69
- json (2.1.0)
70
- loofah (2.2.3)
71
- crass (~> 1.0.2)
72
- nokogiri (>= 1.5.9)
73
- mail (2.7.1)
74
- mini_mime (>= 0.1.1)
75
- marcel (0.3.3)
76
- mimemagic (~> 0.3.2)
77
- method_source (0.9.2)
78
- mimemagic (0.3.3)
79
- mini_mime (1.0.1)
80
- mini_portile2 (2.4.0)
81
- minitest (5.11.3)
82
- nio4r (2.3.1)
83
- nokogiri (1.10.0)
84
- mini_portile2 (~> 2.4.0)
85
- rack (2.0.6)
86
- rack-test (1.1.0)
87
- rack (>= 1.0, < 3)
88
- rails (5.2.0)
89
- actioncable (= 5.2.0)
90
- actionmailer (= 5.2.0)
91
- actionpack (= 5.2.0)
92
- actionview (= 5.2.0)
93
- activejob (= 5.2.0)
94
- activemodel (= 5.2.0)
95
- activerecord (= 5.2.0)
96
- activestorage (= 5.2.0)
97
- activesupport (= 5.2.0)
98
- bundler (>= 1.3.0)
99
- railties (= 5.2.0)
100
- sprockets-rails (>= 2.0.0)
101
- rails-dom-testing (2.0.3)
102
- activesupport (>= 4.2.0)
103
- nokogiri (>= 1.6)
104
- rails-html-sanitizer (1.0.4)
105
- loofah (~> 2.2, >= 2.2.2)
106
- railties (5.2.0)
107
- actionpack (= 5.2.0)
108
- activesupport (= 5.2.0)
109
- method_source
110
- rake (>= 0.8.7)
111
- thor (>= 0.18.1, < 2.0)
112
- rake (12.3.2)
113
- rspec (3.8.0)
114
- rspec-core (~> 3.8.0)
115
- rspec-expectations (~> 3.8.0)
116
- rspec-mocks (~> 3.8.0)
117
- rspec-core (3.8.0)
118
- rspec-support (~> 3.8.0)
119
- rspec-expectations (3.8.2)
120
- diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.8.0)
122
- rspec-mocks (3.8.0)
123
- diff-lcs (>= 1.2.0, < 2.0)
124
- rspec-support (~> 3.8.0)
125
- rspec-support (3.8.0)
126
- simplecov (0.16.1)
127
- docile (~> 1.1)
128
- json (>= 1.8, < 3)
129
- simplecov-html (~> 0.10.0)
130
- simplecov-html (0.10.2)
131
- sprockets (3.7.2)
132
- concurrent-ruby (~> 1.0)
133
- rack (> 1, < 3)
134
- sprockets-rails (3.2.1)
135
- actionpack (>= 4.0)
136
- activesupport (>= 4.0)
137
- sprockets (>= 3.0.0)
138
- sqlite3 (1.3.13)
139
- thor (0.20.3)
140
- thread_safe (0.3.6)
141
- timecop (0.9.1)
142
- tzinfo (1.2.5)
143
- thread_safe (~> 0.1)
144
- websocket-driver (0.7.0)
145
- websocket-extensions (>= 0.1.0)
146
- websocket-extensions (0.1.3)
147
-
148
- PLATFORMS
149
- ruby
150
-
151
- DEPENDENCIES
152
- activesupport (= 5.2.0)
153
- appraisal
154
- bundler (~> 1.16)
155
- factory_bot_instrumentation!
156
- rspec (~> 3.0)
157
- simplecov (~> 0.15)
158
- sqlite3
159
- timecop (~> 0.9.1)
160
-
161
- BUNDLED WITH
162
- 1.17.2