factory_girl_sequences 4.8.0 → 4.9.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
- SHA1:
3
- metadata.gz: 623579233b02ef5c47e00fcd838a668b9e9cc70d
4
- data.tar.gz: 02b8d39f44f23a132fde0be9d0a538150da35c2c
2
+ SHA256:
3
+ metadata.gz: cc1315625c077e043ac5e928bc4d111bf160ec836fb2e89966356f01f23a7d70
4
+ data.tar.gz: 6f5ff7c4b8ffe22a7205c0d7211dca6e93c115b36bb24ae68113bceef24e4cf2
5
5
  SHA512:
6
- metadata.gz: dd9365b53f249be84368e9e2c8f970393db5a0fc55cf3b2102ab62b041411bcff0524e10a10242e276bd918f33bd55488714f39077e964ebbe300518a66b022a
7
- data.tar.gz: 3da5e098a34ca8120e16cf7a8d23fef56f27bd99fb9f0c4789e700d5b18099c9c4051823f1e24c6b686b9d2a85f45b45e8c75bf7d716b2f14ddc96bdecc0f26b
6
+ metadata.gz: 6889306887fe9583c58c45cc1aa463ba56e65cfef6803e3fad0ccb610d3ceafe061f297ae9adb14564d56d6629bda504f67b5b7accab39378d2d8d57cdf10c91
7
+ data.tar.gz: b61f4b9c02e1e2712066821f89bb08804e76f99bf0a6521c1a75e9ae2d1305a1ef2586625caeefe78d4ee8c6b8a19696c45acf5bfe62bac11fa16768585d5774
data/Appraisals CHANGED
@@ -1,12 +1,12 @@
1
1
  appraise "rails-4" do
2
2
  gem "rails", "~> 4.2.7"
3
3
  gem "sqlite3"
4
- gem "factory_girl_rails"
4
+ gem "factory_bot_rails"
5
5
  end
6
6
 
7
7
  appraise "rails-5" do
8
8
  gem "rails", "~> 5.0.0"
9
9
  gem "sqlite3"
10
- gem "factory_girl_rails"
10
+ gem "factory_bot_rails"
11
11
  gem "listen"
12
12
  end
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # FactoryGirlSequences [![Build Status](https://secure.travis-ci.org/melekes/factory_girl_sequences.png "Build Status")](http://travis-ci.org/melekes/factory_girl_sequences) [![Gem Version](https://badge.fury.io/rb/factory_girl_sequences.png)](http://badge.fury.io/rb/factory_girl_sequences) [![Dependency Status](https://gemnasium.com/melekes/factory_girl_sequences.png)](https://gemnasium.com/melekes/factory_girl_sequences)
1
+ # FactoryGirlSequences [![Build Status](https://secure.travis-ci.org/melekes/factory_girl_sequences.png "Build Status")](http://travis-ci.org/melekes/factory_girl_sequences) [![Gem Version](https://badge.fury.io/rb/factory_girl_sequences.png)](http://badge.fury.io/rb/factory_girl_sequences)
2
2
 
3
- Collection of useful [FactoryGirl](http://github.com/thoughtbot/factory_girl)
3
+ Collection of useful [FactoryBot](http://github.com/thoughtbot/factory_bot)
4
4
  sequences.
5
5
 
6
6
  **Important**
@@ -172,10 +172,10 @@ Or install it yourself as:
172
172
  Basic example:
173
173
 
174
174
  ```ruby
175
- FactoryGirl.generate :email
175
+ FactoryBot.generate :email
176
176
  # => "person1@example.com"
177
177
 
178
- FactoryGirl.generate :email
178
+ FactoryBot.generate :email
179
179
  # => "person2@example.com"
180
180
  ```
181
181
 
@@ -195,11 +195,11 @@ factory :invite do
195
195
  end
196
196
  ```
197
197
 
198
- Check out FactoryGirl's [GETTING_STARTED](http://github.com/thoughtbot/factory_girl) for more information.
198
+ Check out FactoryBot's [GETTING_STARTED](http://github.com/thoughtbot/factory_bot) for more information.
199
199
 
200
200
  ### Spork or TConsole
201
201
 
202
- For whose of you who are using spork or tconsole, consider adding `FactoryGirlSequences.reload` right after `FactoryGirl.reload`.
202
+ For whose of you who are using spork or tconsole, consider adding `FactoryGirlSequences.reload` right after `FactoryBot.reload`.
203
203
 
204
204
  ## Contributing
205
205
 
@@ -215,3 +215,61 @@ For whose of you who are using spork or tconsole, consider adding `FactoryGirlSe
215
215
  Created by [Anton Kaliaev](http://github.com/melekes)
216
216
 
217
217
  Thank you to all our amazing [contributors](http://github.com/melekes/factory_girl_sequences/contributors)!
218
+
219
+ ## Changelog
220
+
221
+ ### 4.9.0 / 2017-12-04
222
+
223
+ * factory_girl now factory_bot [Pavel Kalashnikov]
224
+
225
+ ### 4.8.0 / 2017-01-14
226
+
227
+ * updated dependencies (`activesupport >= 4.2`)
228
+
229
+ ### 4.3.1 / 2014-08-08
230
+
231
+ * added few aliases [Kirill Platonov]
232
+
233
+ ### 4.3.0 / 2014-07-31
234
+
235
+ * added uuid sequence [Kirill Platonov]
236
+
237
+ ### 4.2.0 / 2014-01-09
238
+
239
+ * added a seat sequence [Hans Lemuet]
240
+
241
+ ### 4.1.0 / 2013-11-14
242
+
243
+ * added port and token sequences [Andrew Kulakov]
244
+ * aliased body as text / content [Andrew Kulakov]
245
+
246
+ ### 4.0.0 / 2013-02-22
247
+
248
+ * updated factory_bot version
249
+ * added appraisal
250
+ * rewrite tests
251
+ * created separate reload method
252
+
253
+ ### 0.1.1 / 2012-10-27
254
+
255
+ * Updated README
256
+
257
+ ### 0.1.0 / 2012-10-24
258
+
259
+ * Added url sequence
260
+ * Fixed slug sequence
261
+ * Updated README
262
+
263
+ ### 0.0.4 / 2012-10-20
264
+
265
+ * Added travis-ci
266
+ * Added extra options for docs
267
+
268
+ ### 0.0.3 / 2012-10-20
269
+
270
+ * Pathed FactoryBot.reload to add default sequences
271
+
272
+ ### 0.0.3 / 2012-10-20
273
+
274
+ * Updated README
275
+ * Added link to the homepage
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "factory_girl_sequences"
5
- gem.version = "4.8.0"
5
+ gem.version = "4.9.0"
6
6
  gem.authors = ["Anton Kaliaev"]
7
7
  gem.email = ["anton.kalyaev@gmail.com"]
8
- gem.description = %q{factory_girl_sequences provides a collection of useful FactoryGirl sequences}
9
- gem.summary = %q{Collection of useful FactoryGirl sequences}
8
+ gem.description = %q{factory_girl_sequences provides a collection of useful FactoryBot sequences}
9
+ gem.summary = %q{Collection of useful FactoryBot sequences}
10
10
  gem.homepage = "http://github.com/melekes/factory_girl_sequences"
11
11
  gem.license = "MIT"
12
12
 
@@ -17,8 +17,8 @@ Gem::Specification.new do |gem|
17
17
  gem.require_paths = ["lib"]
18
18
 
19
19
  gem.rdoc_options = %w(--line-numbers --inline-source --title factory_girl_sequences --main README.md)
20
- gem.extra_rdoc_files = %w(README.md CHANGELOG.md LICENSE)
20
+ gem.extra_rdoc_files = %w(README.md LICENSE)
21
21
 
22
- gem.add_dependency 'factory_girl', '~> 4.0'
22
+ gem.add_dependency 'factory_bot', '~> 4.0'
23
23
  gem.add_dependency 'activesupport', '>= 4.2'
24
24
  end
@@ -17,8 +17,8 @@ Feature:
17
17
  require 'test_helper'
18
18
 
19
19
  class UserTest < ActiveSupport::TestCase
20
- test "factory_girl should know name sequence" do
21
- user = FactoryGirl.create(:user)
20
+ test "factory_bot should know name sequence" do
21
+ user = FactoryBot.create(:user)
22
22
  assert user.name
23
23
  end
24
24
  end
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  gem "rake"
6
6
  gem "rails", "~> 4.2.7"
7
7
  gem "sqlite3"
8
- gem "factory_girl_rails"
8
+ gem "factory_bot_rails"
9
9
 
10
10
  group :test do
11
11
  gem "cucumber", "~> 2.4.0"
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  gem "rake"
6
6
  gem "rails", "~> 5.0.0"
7
7
  gem "sqlite3"
8
- gem "factory_girl_rails"
8
+ gem "factory_bot_rails"
9
9
  gem "listen"
10
10
 
11
11
  group :test do
@@ -1,5 +1,5 @@
1
1
  module FactoryGirlSequences
2
2
  def self.reload
3
- FactoryGirl.register_default_sequences
3
+ FactoryBot.register_default_sequences
4
4
  end
5
5
  end
@@ -1,4 +1,4 @@
1
- module FactoryGirl
1
+ module FactoryBot
2
2
 
3
3
  def self.register_default_sequences
4
4
  # basic types
@@ -36,4 +36,4 @@ module FactoryGirl
36
36
  end
37
37
  end
38
38
 
39
- FactoryGirl.register_default_sequences
39
+ FactoryBot.register_default_sequences
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_girl_sequences
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.8.0
4
+ version: 4.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Kaliaev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-14 00:00:00.000000000 Z
11
+ date: 2017-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: factory_girl
14
+ name: factory_bot
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
@@ -38,14 +38,13 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '4.2'
41
- description: factory_girl_sequences provides a collection of useful FactoryGirl sequences
41
+ description: factory_girl_sequences provides a collection of useful FactoryBot sequences
42
42
  email:
43
43
  - anton.kalyaev@gmail.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files:
47
47
  - README.md
48
- - CHANGELOG.md
49
48
  - LICENSE
50
49
  files:
51
50
  - ".dockerignore"
@@ -53,7 +52,6 @@ files:
53
52
  - ".travis.yml"
54
53
  - ".yardopts"
55
54
  - Appraisals
56
- - CHANGELOG.md
57
55
  - Dockerfile
58
56
  - Gemfile
59
57
  - LICENSE
@@ -65,9 +63,7 @@ files:
65
63
  - features/step_definitions/rails_steps.rb
66
64
  - features/support/env.rb
67
65
  - gemfiles/rails_4.gemfile
68
- - gemfiles/rails_4.gemfile.lock
69
66
  - gemfiles/rails_5.gemfile
70
- - gemfiles/rails_5.gemfile.lock
71
67
  - lib/factory_girl_sequences.rb
72
68
  - lib/factory_girl_sequences/reload.rb
73
69
  - lib/factory_girl_sequences/sequences.rb
@@ -97,10 +93,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
93
  version: '0'
98
94
  requirements: []
99
95
  rubyforge_project:
100
- rubygems_version: 2.6.8
96
+ rubygems_version: 2.7.3
101
97
  signing_key:
102
98
  specification_version: 4
103
- summary: Collection of useful FactoryGirl sequences
99
+ summary: Collection of useful FactoryBot sequences
104
100
  test_files:
105
101
  - features/sequences.feature
106
102
  - features/step_definitions/rails_steps.rb
@@ -1,47 +0,0 @@
1
- ## 4.3.1 / 2014-08-08
2
-
3
- * added few aliases [Kirill Platonov]
4
-
5
- ## 4.3.0 / 2014-07-31
6
-
7
- * added uuid sequence [Kirill Platonov]
8
-
9
- ## 4.2.0 / 2014-01-09
10
-
11
- * added a seat sequence [Hans Lemuet]
12
-
13
- ## 4.1.0 / 2013-11-14
14
-
15
- * added port and token sequences [Andrew Kulakov]
16
- * aliased body as text / content [Andrew Kulakov]
17
-
18
- ## 4.0.0 / 2013-02-22
19
-
20
- * updated factory_girl version
21
- * added appraisal
22
- * rewrite tests
23
- * created separate reload method
24
-
25
- ## 0.1.1 / 2012-10-27
26
-
27
- * Updated README
28
-
29
- ## 0.1.0 / 2012-10-24
30
-
31
- * Added url sequence
32
- * Fixed slug sequence
33
- * Updated README
34
-
35
- ## 0.0.4 / 2012-10-20
36
-
37
- * Added travis-ci
38
- * Added extra options for docs
39
-
40
- ## 0.0.3 / 2012-10-20
41
-
42
- * Pathed FactoryGirl.reload to add default sequences
43
-
44
- ## 0.0.3 / 2012-10-20
45
-
46
- * Updated README
47
- * Added link to the homepage
@@ -1,159 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- factory_girl_sequences (4.3.1)
5
- activesupport (>= 4.2)
6
- factory_girl (~> 4.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.7.1)
12
- actionpack (= 4.2.7.1)
13
- actionview (= 4.2.7.1)
14
- activejob (= 4.2.7.1)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.7.1)
18
- actionview (= 4.2.7.1)
19
- activesupport (= 4.2.7.1)
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.7.1)
25
- activesupport (= 4.2.7.1)
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.2)
30
- activejob (4.2.7.1)
31
- activesupport (= 4.2.7.1)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.7.1)
34
- activesupport (= 4.2.7.1)
35
- builder (~> 3.1)
36
- activerecord (4.2.7.1)
37
- activemodel (= 4.2.7.1)
38
- activesupport (= 4.2.7.1)
39
- arel (~> 6.0)
40
- activesupport (4.2.7.1)
41
- i18n (~> 0.7)
42
- json (~> 1.7, >= 1.7.7)
43
- minitest (~> 5.1)
44
- thread_safe (~> 0.3, >= 0.3.4)
45
- tzinfo (~> 1.1)
46
- appraisal (2.1.0)
47
- bundler
48
- rake
49
- thor (>= 0.14.0)
50
- arel (6.0.4)
51
- aruba (0.14.2)
52
- childprocess (~> 0.5.6)
53
- contracts (~> 0.9)
54
- cucumber (>= 1.3.19)
55
- ffi (~> 1.9.10)
56
- rspec-expectations (>= 2.99)
57
- thor (~> 0.19)
58
- builder (3.2.3)
59
- childprocess (0.5.9)
60
- ffi (~> 1.0, >= 1.0.11)
61
- concurrent-ruby (1.0.4)
62
- contracts (0.14.0)
63
- cucumber (2.4.0)
64
- builder (>= 2.1.2)
65
- cucumber-core (~> 1.5.0)
66
- cucumber-wire (~> 0.0.1)
67
- diff-lcs (>= 1.1.3)
68
- gherkin (~> 4.0)
69
- multi_json (>= 1.7.5, < 2.0)
70
- multi_test (>= 0.1.2)
71
- cucumber-core (1.5.0)
72
- gherkin (~> 4.0)
73
- cucumber-wire (0.0.1)
74
- diff-lcs (1.2.5)
75
- erubis (2.7.0)
76
- factory_girl (4.8.0)
77
- activesupport (>= 3.0.0)
78
- factory_girl_rails (4.8.0)
79
- factory_girl (~> 4.8.0)
80
- railties (>= 3.0.0)
81
- ffi (1.9.17)
82
- gherkin (4.0.0)
83
- globalid (0.3.7)
84
- activesupport (>= 4.1.0)
85
- i18n (0.7.0)
86
- json (1.8.6)
87
- loofah (2.0.3)
88
- nokogiri (>= 1.5.9)
89
- mail (2.6.4)
90
- mime-types (>= 1.16, < 4)
91
- mime-types (3.1)
92
- mime-types-data (~> 3.2015)
93
- mime-types-data (3.2016.0521)
94
- mini_portile2 (2.1.0)
95
- minitest (5.10.1)
96
- multi_json (1.12.1)
97
- multi_test (0.1.2)
98
- nokogiri (1.7.0.1)
99
- mini_portile2 (~> 2.1.0)
100
- rack (1.6.5)
101
- rack-test (0.6.3)
102
- rack (>= 1.0)
103
- rails (4.2.7.1)
104
- actionmailer (= 4.2.7.1)
105
- actionpack (= 4.2.7.1)
106
- actionview (= 4.2.7.1)
107
- activejob (= 4.2.7.1)
108
- activemodel (= 4.2.7.1)
109
- activerecord (= 4.2.7.1)
110
- activesupport (= 4.2.7.1)
111
- bundler (>= 1.3.0, < 2.0)
112
- railties (= 4.2.7.1)
113
- sprockets-rails
114
- rails-deprecated_sanitizer (1.0.3)
115
- activesupport (>= 4.2.0.alpha)
116
- rails-dom-testing (1.0.8)
117
- activesupport (>= 4.2.0.beta, < 5.0)
118
- nokogiri (~> 1.6)
119
- rails-deprecated_sanitizer (>= 1.0.1)
120
- rails-html-sanitizer (1.0.3)
121
- loofah (~> 2.0)
122
- railties (4.2.7.1)
123
- actionpack (= 4.2.7.1)
124
- activesupport (= 4.2.7.1)
125
- rake (>= 0.8.7)
126
- thor (>= 0.18.1, < 2.0)
127
- rake (12.0.0)
128
- rspec-expectations (3.5.0)
129
- diff-lcs (>= 1.2.0, < 2.0)
130
- rspec-support (~> 3.5.0)
131
- rspec-support (3.5.0)
132
- sprockets (3.7.1)
133
- concurrent-ruby (~> 1.0)
134
- rack (> 1, < 3)
135
- sprockets-rails (3.2.0)
136
- actionpack (>= 4.0)
137
- activesupport (>= 4.0)
138
- sprockets (>= 3.0.0)
139
- sqlite3 (1.3.13)
140
- thor (0.19.4)
141
- thread_safe (0.3.5)
142
- tzinfo (1.2.2)
143
- thread_safe (~> 0.1)
144
-
145
- PLATFORMS
146
- ruby
147
-
148
- DEPENDENCIES
149
- appraisal (~> 2.1)
150
- aruba (~> 0.14.2)
151
- cucumber (~> 2.4.0)
152
- factory_girl_rails
153
- factory_girl_sequences!
154
- rails (~> 4.2.7)
155
- rake
156
- sqlite3
157
-
158
- BUNDLED WITH
159
- 1.13.6
@@ -1,173 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- factory_girl_sequences (4.3.1)
5
- activesupport (>= 4.2)
6
- factory_girl (~> 4.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.1)
12
- actionpack (= 5.0.1)
13
- nio4r (~> 1.2)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.1)
16
- actionpack (= 5.0.1)
17
- actionview (= 5.0.1)
18
- activejob (= 5.0.1)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.1)
22
- actionview (= 5.0.1)
23
- activesupport (= 5.0.1)
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.1)
29
- activesupport (= 5.0.1)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- activejob (5.0.1)
35
- activesupport (= 5.0.1)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.1)
38
- activesupport (= 5.0.1)
39
- activerecord (5.0.1)
40
- activemodel (= 5.0.1)
41
- activesupport (= 5.0.1)
42
- arel (~> 7.0)
43
- activesupport (5.0.1)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- appraisal (2.1.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (7.1.4)
53
- aruba (0.14.2)
54
- childprocess (~> 0.5.6)
55
- contracts (~> 0.9)
56
- cucumber (>= 1.3.19)
57
- ffi (~> 1.9.10)
58
- rspec-expectations (>= 2.99)
59
- thor (~> 0.19)
60
- builder (3.2.3)
61
- childprocess (0.5.9)
62
- ffi (~> 1.0, >= 1.0.11)
63
- concurrent-ruby (1.0.4)
64
- contracts (0.14.0)
65
- cucumber (2.4.0)
66
- builder (>= 2.1.2)
67
- cucumber-core (~> 1.5.0)
68
- cucumber-wire (~> 0.0.1)
69
- diff-lcs (>= 1.1.3)
70
- gherkin (~> 4.0)
71
- multi_json (>= 1.7.5, < 2.0)
72
- multi_test (>= 0.1.2)
73
- cucumber-core (1.5.0)
74
- gherkin (~> 4.0)
75
- cucumber-wire (0.0.1)
76
- diff-lcs (1.2.5)
77
- erubis (2.7.0)
78
- factory_girl (4.8.0)
79
- activesupport (>= 3.0.0)
80
- factory_girl_rails (4.8.0)
81
- factory_girl (~> 4.8.0)
82
- railties (>= 3.0.0)
83
- ffi (1.9.17)
84
- gherkin (4.0.0)
85
- globalid (0.3.7)
86
- activesupport (>= 4.1.0)
87
- i18n (0.7.0)
88
- listen (3.1.5)
89
- rb-fsevent (~> 0.9, >= 0.9.4)
90
- rb-inotify (~> 0.9, >= 0.9.7)
91
- ruby_dep (~> 1.2)
92
- loofah (2.0.3)
93
- nokogiri (>= 1.5.9)
94
- mail (2.6.4)
95
- mime-types (>= 1.16, < 4)
96
- method_source (0.8.2)
97
- mime-types (3.1)
98
- mime-types-data (~> 3.2015)
99
- mime-types-data (3.2016.0521)
100
- mini_portile2 (2.1.0)
101
- minitest (5.10.1)
102
- multi_json (1.12.1)
103
- multi_test (0.1.2)
104
- nio4r (1.2.1)
105
- nokogiri (1.7.0.1)
106
- mini_portile2 (~> 2.1.0)
107
- rack (2.0.1)
108
- rack-test (0.6.3)
109
- rack (>= 1.0)
110
- rails (5.0.1)
111
- actioncable (= 5.0.1)
112
- actionmailer (= 5.0.1)
113
- actionpack (= 5.0.1)
114
- actionview (= 5.0.1)
115
- activejob (= 5.0.1)
116
- activemodel (= 5.0.1)
117
- activerecord (= 5.0.1)
118
- activesupport (= 5.0.1)
119
- bundler (>= 1.3.0, < 2.0)
120
- railties (= 5.0.1)
121
- sprockets-rails (>= 2.0.0)
122
- rails-dom-testing (2.0.2)
123
- activesupport (>= 4.2.0, < 6.0)
124
- nokogiri (~> 1.6)
125
- rails-html-sanitizer (1.0.3)
126
- loofah (~> 2.0)
127
- railties (5.0.1)
128
- actionpack (= 5.0.1)
129
- activesupport (= 5.0.1)
130
- method_source
131
- rake (>= 0.8.7)
132
- thor (>= 0.18.1, < 2.0)
133
- rake (12.0.0)
134
- rb-fsevent (0.9.8)
135
- rb-inotify (0.9.7)
136
- ffi (>= 0.5.0)
137
- rspec-expectations (3.5.0)
138
- diff-lcs (>= 1.2.0, < 2.0)
139
- rspec-support (~> 3.5.0)
140
- rspec-support (3.5.0)
141
- ruby_dep (1.5.0)
142
- sprockets (3.7.1)
143
- concurrent-ruby (~> 1.0)
144
- rack (> 1, < 3)
145
- sprockets-rails (3.2.0)
146
- actionpack (>= 4.0)
147
- activesupport (>= 4.0)
148
- sprockets (>= 3.0.0)
149
- sqlite3 (1.3.13)
150
- thor (0.19.4)
151
- thread_safe (0.3.5)
152
- tzinfo (1.2.2)
153
- thread_safe (~> 0.1)
154
- websocket-driver (0.6.4)
155
- websocket-extensions (>= 0.1.0)
156
- websocket-extensions (0.1.2)
157
-
158
- PLATFORMS
159
- ruby
160
-
161
- DEPENDENCIES
162
- appraisal (~> 2.1)
163
- aruba (~> 0.14.2)
164
- cucumber (~> 2.4.0)
165
- factory_girl_rails
166
- factory_girl_sequences!
167
- listen
168
- rails (~> 5.0.0)
169
- rake
170
- sqlite3
171
-
172
- BUNDLED WITH
173
- 1.13.6