tests_doc 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/examples/rails-4.2.5/Gemfile +0 -1
  4. data/examples/rails-4.2.5/Gemfile.lock +4 -4
  5. data/examples/rails-4.2.5/spec/requests/posts_spec.rb +4 -1
  6. data/examples/rails-4.2.5/spec/requests/users_spec.rb +3 -1
  7. data/examples/rails-4.2.5/tests-doc/README.md +1 -1
  8. data/examples/rails-4.2.5/tests-doc/api/posts.md +1 -16
  9. data/examples/rails-4.2.5/tests-doc/api/posts/@id.md +6 -6
  10. data/examples/rails-4.2.5/tests-doc/api/posts@with-filter.md +1 -16
  11. data/examples/rails-4.2.5/tests-doc/api/users.md +1 -16
  12. data/examples/rails-5.2.3/.gitignore +31 -0
  13. data/examples/rails-5.2.3/.ruby-version +1 -0
  14. data/examples/rails-5.2.3/Gemfile +49 -0
  15. data/examples/rails-5.2.3/Gemfile.lock +235 -0
  16. data/examples/rails-5.2.3/README.md +24 -0
  17. data/examples/rails-5.2.3/Rakefile +6 -0
  18. data/examples/rails-5.2.3/app/assets/config/manifest.js +3 -0
  19. data/examples/rails-5.2.3/app/assets/images/.keep +0 -0
  20. data/examples/rails-5.2.3/app/assets/javascripts/application.js +16 -0
  21. data/examples/rails-5.2.3/app/assets/javascripts/cable.js +13 -0
  22. data/examples/rails-5.2.3/app/assets/javascripts/channels/.keep +0 -0
  23. data/examples/rails-5.2.3/app/assets/javascripts/posts.js +2 -0
  24. data/examples/rails-5.2.3/app/assets/javascripts/users.js +2 -0
  25. data/examples/rails-5.2.3/app/assets/stylesheets/application.css +15 -0
  26. data/examples/rails-5.2.3/app/assets/stylesheets/posts.scss +3 -0
  27. data/examples/rails-5.2.3/app/assets/stylesheets/users.scss +3 -0
  28. data/examples/rails-5.2.3/app/channels/application_cable/channel.rb +4 -0
  29. data/examples/rails-5.2.3/app/channels/application_cable/connection.rb +4 -0
  30. data/examples/rails-5.2.3/app/controllers/application_controller.rb +2 -0
  31. data/examples/rails-5.2.3/app/controllers/concerns/.keep +0 -0
  32. data/examples/rails-5.2.3/app/controllers/posts_controller.rb +61 -0
  33. data/examples/rails-5.2.3/app/controllers/users_controller.rb +59 -0
  34. data/examples/rails-5.2.3/app/helpers/application_helper.rb +2 -0
  35. data/examples/rails-5.2.3/app/helpers/posts_helper.rb +2 -0
  36. data/examples/rails-5.2.3/app/helpers/users_helper.rb +2 -0
  37. data/examples/rails-5.2.3/app/jobs/application_job.rb +2 -0
  38. data/examples/rails-5.2.3/app/mailers/application_mailer.rb +4 -0
  39. data/examples/rails-5.2.3/app/models/application_record.rb +3 -0
  40. data/examples/rails-5.2.3/app/models/concerns/.keep +0 -0
  41. data/examples/rails-5.2.3/app/models/post.rb +3 -0
  42. data/examples/rails-5.2.3/app/models/user.rb +2 -0
  43. data/examples/rails-5.2.3/app/views/layouts/application.html.erb +15 -0
  44. data/examples/rails-5.2.3/app/views/layouts/mailer.html.erb +13 -0
  45. data/examples/rails-5.2.3/app/views/layouts/mailer.text.erb +1 -0
  46. data/examples/rails-5.2.3/bin/bundle +3 -0
  47. data/examples/rails-5.2.3/bin/rails +9 -0
  48. data/examples/rails-5.2.3/bin/rake +9 -0
  49. data/examples/rails-5.2.3/bin/setup +36 -0
  50. data/examples/rails-5.2.3/bin/spring +17 -0
  51. data/examples/rails-5.2.3/bin/update +31 -0
  52. data/examples/rails-5.2.3/bin/yarn +11 -0
  53. data/examples/rails-5.2.3/config.ru +5 -0
  54. data/examples/rails-5.2.3/config/application.rb +19 -0
  55. data/examples/rails-5.2.3/config/boot.rb +4 -0
  56. data/examples/rails-5.2.3/config/cable.yml +10 -0
  57. data/examples/rails-5.2.3/config/credentials.yml.enc +1 -0
  58. data/examples/rails-5.2.3/config/database.yml +25 -0
  59. data/examples/rails-5.2.3/config/environment.rb +5 -0
  60. data/examples/rails-5.2.3/config/environments/development.rb +61 -0
  61. data/examples/rails-5.2.3/config/environments/production.rb +94 -0
  62. data/examples/rails-5.2.3/config/environments/test.rb +46 -0
  63. data/examples/rails-5.2.3/config/initializers/application_controller_renderer.rb +8 -0
  64. data/examples/rails-5.2.3/config/initializers/assets.rb +14 -0
  65. data/examples/rails-5.2.3/config/initializers/backtrace_silencers.rb +7 -0
  66. data/examples/rails-5.2.3/config/initializers/content_security_policy.rb +25 -0
  67. data/examples/rails-5.2.3/config/initializers/cookies_serializer.rb +5 -0
  68. data/examples/rails-5.2.3/config/initializers/filter_parameter_logging.rb +4 -0
  69. data/examples/rails-5.2.3/config/initializers/inflections.rb +16 -0
  70. data/examples/rails-5.2.3/config/initializers/mime_types.rb +4 -0
  71. data/examples/rails-5.2.3/config/initializers/wrap_parameters.rb +14 -0
  72. data/examples/rails-5.2.3/config/locales/en.yml +33 -0
  73. data/examples/rails-5.2.3/config/puma.rb +34 -0
  74. data/examples/rails-5.2.3/config/routes.rb +6 -0
  75. data/examples/rails-5.2.3/config/spring.rb +6 -0
  76. data/examples/rails-5.2.3/config/storage.yml +34 -0
  77. data/examples/rails-5.2.3/db/migrate/20190618211257_create_users.rb +11 -0
  78. data/examples/rails-5.2.3/db/migrate/20190618211325_create_posts.rb +11 -0
  79. data/examples/rails-5.2.3/db/schema.rb +32 -0
  80. data/examples/rails-5.2.3/db/seeds.rb +7 -0
  81. data/examples/rails-5.2.3/lib/assets/.keep +0 -0
  82. data/examples/rails-5.2.3/lib/tasks/.keep +0 -0
  83. data/examples/rails-5.2.3/log/.keep +0 -0
  84. data/examples/rails-5.2.3/package.json +5 -0
  85. data/examples/rails-5.2.3/public/404.html +67 -0
  86. data/examples/rails-5.2.3/public/422.html +67 -0
  87. data/examples/rails-5.2.3/public/500.html +66 -0
  88. data/examples/rails-5.2.3/public/apple-touch-icon-precomposed.png +0 -0
  89. data/examples/rails-5.2.3/public/apple-touch-icon.png +0 -0
  90. data/examples/rails-5.2.3/public/favicon.ico +0 -0
  91. data/examples/rails-5.2.3/public/robots.txt +1 -0
  92. data/examples/rails-5.2.3/spec/rails_helper.rb +62 -0
  93. data/examples/rails-5.2.3/spec/requests/posts_spec.rb +33 -0
  94. data/examples/rails-5.2.3/spec/requests/users_spec.rb +24 -0
  95. data/examples/rails-5.2.3/spec/spec_helper.rb +89 -0
  96. data/examples/rails-5.2.3/storage/.keep +0 -0
  97. data/examples/rails-5.2.3/tests-doc/README.md +32 -0
  98. data/examples/rails-5.2.3/tests-doc/api/posts.md +24 -0
  99. data/examples/rails-5.2.3/tests-doc/api/posts/@id.md +29 -0
  100. data/examples/rails-5.2.3/tests-doc/api/posts@with-filter.md +25 -0
  101. data/examples/rails-5.2.3/tests-doc/api/users.md +24 -0
  102. data/examples/rails-5.2.3/tests-doc/api/users/@id/posts.md +24 -0
  103. data/examples/rails-5.2.3/tmp/.keep +0 -0
  104. data/examples/rails-5.2.3/vendor/.keep +0 -0
  105. data/lib/tests_doc/version.rb +1 -1
  106. data/tests_doc.gemspec +1 -1
  107. metadata +100 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36daab5dc76caf8d5e40caefec0aeef2eeac048e
4
- data.tar.gz: 1c6fb21fab993de63a0055ba00b481140ff85a82
3
+ metadata.gz: 97117372b593aa69dca65044aeca5c7b429ddb69
4
+ data.tar.gz: 5fefab7a264d8c4447b307b9f9772211d2814092
5
5
  SHA512:
6
- metadata.gz: 68071ad2d90621ad152762c4fccbd65f0059c908a3d2b483ebc400401b6958ab4e2ab8aa3db4104abec560ac577102a18466d842e8a79fe8c5922847cbf84f50
7
- data.tar.gz: 4d5b57030f580f889ce36e72b155ae1919fae743fdeb98197e3d515060cb6c435d27f517d04bced3a5b41c7566d47a5f0d5293181fe80d8e93ef72f96bb1671b
6
+ metadata.gz: 93c619e5bc174e11089a9241b1ab2733a6f5f36e3ccd58b2c2a38cd14e98f6061f94ea9d8d485a26c32cdf337e4a9f018f05bda58d3250ec5939c1c45540165b
7
+ data.tar.gz: a99ad35af1a05a6192d620cb18c1d813b94bccc0a49bab99be6dd4d1bcfedcbf5e8b4922ea925733949900ebe8435b31cab7f315f59dd646fdbb6738d66b329d
@@ -1 +1 @@
1
- 2.1.6
1
+ 2.3.4
@@ -1,6 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
-
4
3
  gem 'rails', '4.2.5'
5
4
 
6
5
  gem 'rails-api'
@@ -1,8 +1,8 @@
1
1
  PATH
2
- remote: ../../../tests_doc
2
+ remote: ../..
3
3
  specs:
4
- tests_doc (0.0.3)
5
- rails (~> 4.0)
4
+ tests_doc (0.0.4)
5
+ rails (>= 4)
6
6
  rspec (>= 2.0)
7
7
  rspec-rails (>= 2.0)
8
8
 
@@ -140,4 +140,4 @@ DEPENDENCIES
140
140
  tests_doc!
141
141
 
142
142
  BUNDLED WITH
143
- 1.10.6
143
+ 1.17.3
@@ -20,9 +20,12 @@ RSpec.describe "Posts", :type => :request do
20
20
 
21
21
  describe "GET /posts/:id" do
22
22
  it "renders posts with id" do
23
+ User.create
24
+ Post.create(user_id: User.first.id)
25
+
23
26
  recording_api_interaction do |options|
24
27
  options.path = 'posts/@id'
25
- get post_path(Post.first)
28
+ get post_path(Post.first.id)
26
29
  expect(response.status).to be(200)
27
30
  end
28
31
  end
@@ -12,9 +12,11 @@ RSpec.describe "Users", :type => :request do
12
12
 
13
13
  describe "GET /users/:user_id/posts" do
14
14
  it "renders posts" do
15
+ User.create
16
+
15
17
  recording_api_interaction do |options|
16
18
  options.path = 'users/@id/posts'
17
- get user_posts_path(User.first)
19
+ get user_posts_path(User.first.id)
18
20
  expect(response.status).to be(200)
19
21
  end
20
22
  end
@@ -4,7 +4,7 @@ This document contains a list of api endpoints tested.
4
4
  If one of the api endpoint is modified during the test suite if its a deletion,
5
5
  make sure this wont affect any of code consuming the api endpoint.
6
6
 
7
- Last modified at: 11/20/2015 08:53AM
7
+ Last modified at: 06/18/2019 11:34PM
8
8
 
9
9
 
10
10
  # Endpoints
@@ -19,21 +19,6 @@ HTTP CODE = 200
19
19
 
20
20
  ```json
21
21
  [
22
- {
23
- "id": 298486374,
24
- "title": "MyString",
25
- "body": "MyText",
26
- "user_id": null,
27
- "created_at": "2015-11-19T01:11:08.000Z",
28
- "updated_at": "2015-11-19T01:11:08.000Z"
29
- },
30
- {
31
- "id": 980190962,
32
- "title": "MyString",
33
- "body": "MyText",
34
- "user_id": null,
35
- "created_at": "2015-11-19T01:11:08.000Z",
36
- "updated_at": "2015-11-19T01:11:08.000Z"
37
- }
22
+
38
23
  ]
39
24
  ```
@@ -19,11 +19,11 @@ HTTP CODE = 200
19
19
 
20
20
  ```json
21
21
  {
22
- "id": 298486374,
23
- "title": "MyString",
24
- "body": "MyText",
25
- "user_id": null,
26
- "created_at": "2015-11-19T01:11:08.000Z",
27
- "updated_at": "2015-11-19T01:11:08.000Z"
22
+ "id": 1,
23
+ "title": null,
24
+ "body": null,
25
+ "user_id": 1,
26
+ "created_at": "2019-06-18T21:34:32.172Z",
27
+ "updated_at": "2019-06-18T21:34:32.172Z"
28
28
  }
29
29
  ```
@@ -20,21 +20,6 @@ HTTP CODE = 200
20
20
 
21
21
  ```json
22
22
  [
23
- {
24
- "id": 298486374,
25
- "title": "MyString",
26
- "body": "MyText",
27
- "user_id": null,
28
- "created_at": "2015-11-19T01:11:08.000Z",
29
- "updated_at": "2015-11-19T01:11:08.000Z"
30
- },
31
- {
32
- "id": 980190962,
33
- "title": "MyString",
34
- "body": "MyText",
35
- "user_id": null,
36
- "created_at": "2015-11-19T01:11:08.000Z",
37
- "updated_at": "2015-11-19T01:11:08.000Z"
38
- }
23
+
39
24
  ]
40
25
  ```
@@ -19,21 +19,6 @@ HTTP CODE = 200
19
19
 
20
20
  ```json
21
21
  [
22
- {
23
- "id": 298486374,
24
- "email": "MyString",
25
- "first_name": "MyString",
26
- "last_name": "MyString",
27
- "created_at": "2015-11-19T01:11:08.000Z",
28
- "updated_at": "2015-11-19T01:11:08.000Z"
29
- },
30
- {
31
- "id": 980190962,
32
- "email": "MyString",
33
- "first_name": "MyString",
34
- "last_name": "MyString",
35
- "created_at": "2015-11-19T01:11:08.000Z",
36
- "updated_at": "2015-11-19T01:11:08.000Z"
37
- }
22
+
38
23
  ]
39
24
  ```
@@ -0,0 +1,31 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore uploaded files in development
21
+ /storage/*
22
+ !/storage/.keep
23
+
24
+ /node_modules
25
+ /yarn-error.log
26
+
27
+ /public/assets
28
+ .byebug_history
29
+
30
+ # Ignore master key for decrypting credentials and more.
31
+ /config/master.key
@@ -0,0 +1 @@
1
+ 2.3.4
@@ -0,0 +1,49 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ ruby '2.3.4'
5
+
6
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7
+ gem 'rails', '~> 5.2.3'
8
+
9
+ # Use sqlite3 as the database for Active Record
10
+ gem 'sqlite3'
11
+
12
+ # Use Puma as the app server
13
+ gem 'puma', '~> 3.11'
14
+
15
+ # Use SCSS for stylesheets
16
+ gem 'sass-rails', '~> 5.0'
17
+
18
+ # Use Uglifier as compressor for JavaScript assets
19
+ gem 'uglifier', '>= 1.3.0'
20
+
21
+ # Reduces boot times through caching; required in config/boot.rb
22
+ gem 'bootsnap', '>= 1.1.0', require: false
23
+
24
+ group :development, :test do
25
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
26
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
27
+ gem 'rspec-rails', '~> 3.4'
28
+ end
29
+
30
+ group :development do
31
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
32
+ gem 'web-console', '>= 3.3.0'
33
+ gem 'listen', '>= 3.0.5', '< 3.2'
34
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
35
+ gem 'spring'
36
+ gem 'spring-watcher-listen', '~> 2.0.0'
37
+ end
38
+
39
+ group :test do
40
+ # Adds support for Capybara system testing and selenium driver
41
+ gem 'capybara', '>= 2.15'
42
+ gem 'selenium-webdriver'
43
+ # Easy installation and use of chromedriver to run system tests with Chrome
44
+ gem 'chromedriver-helper'
45
+ gem 'tests_doc', path: '../../../tests_doc', :group => :test
46
+ end
47
+
48
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
49
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
@@ -0,0 +1,235 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ tests_doc (0.0.4)
5
+ rails (>= 4)
6
+ rspec (>= 2.0)
7
+ rspec-rails (>= 2.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.2.3)
13
+ actionpack (= 5.2.3)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailer (5.2.3)
17
+ actionpack (= 5.2.3)
18
+ actionview (= 5.2.3)
19
+ activejob (= 5.2.3)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.2.3)
23
+ actionview (= 5.2.3)
24
+ activesupport (= 5.2.3)
25
+ rack (~> 2.0)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.2.3)
30
+ activesupport (= 5.2.3)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.2.3)
36
+ activesupport (= 5.2.3)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.2.3)
39
+ activesupport (= 5.2.3)
40
+ activerecord (5.2.3)
41
+ activemodel (= 5.2.3)
42
+ activesupport (= 5.2.3)
43
+ arel (>= 9.0)
44
+ activestorage (5.2.3)
45
+ actionpack (= 5.2.3)
46
+ activerecord (= 5.2.3)
47
+ marcel (~> 0.3.1)
48
+ activesupport (5.2.3)
49
+ concurrent-ruby (~> 1.0, >= 1.0.2)
50
+ i18n (>= 0.7, < 2)
51
+ minitest (~> 5.1)
52
+ tzinfo (~> 1.1)
53
+ addressable (2.6.0)
54
+ public_suffix (>= 2.0.2, < 4.0)
55
+ archive-zip (0.12.0)
56
+ io-like (~> 0.3.0)
57
+ arel (9.0.0)
58
+ bindex (0.7.0)
59
+ bootsnap (1.4.4)
60
+ msgpack (~> 1.0)
61
+ builder (3.2.3)
62
+ byebug (11.0.1)
63
+ capybara (3.15.1)
64
+ addressable
65
+ mini_mime (>= 0.1.3)
66
+ nokogiri (~> 1.8)
67
+ rack (>= 1.6.0)
68
+ rack-test (>= 0.6.3)
69
+ regexp_parser (~> 1.2)
70
+ xpath (~> 3.2)
71
+ childprocess (1.0.1)
72
+ rake (< 13.0)
73
+ chromedriver-helper (2.1.1)
74
+ archive-zip (~> 0.10)
75
+ nokogiri (~> 1.8)
76
+ concurrent-ruby (1.1.5)
77
+ crass (1.0.4)
78
+ diff-lcs (1.3)
79
+ erubi (1.8.0)
80
+ execjs (2.7.0)
81
+ ffi (1.11.1)
82
+ globalid (0.4.2)
83
+ activesupport (>= 4.2.0)
84
+ i18n (1.6.0)
85
+ concurrent-ruby (~> 1.0)
86
+ io-like (0.3.0)
87
+ listen (3.1.5)
88
+ rb-fsevent (~> 0.9, >= 0.9.4)
89
+ rb-inotify (~> 0.9, >= 0.9.7)
90
+ ruby_dep (~> 1.2)
91
+ loofah (2.2.3)
92
+ crass (~> 1.0.2)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.7.1)
95
+ mini_mime (>= 0.1.1)
96
+ marcel (0.3.3)
97
+ mimemagic (~> 0.3.2)
98
+ method_source (0.9.2)
99
+ mimemagic (0.3.3)
100
+ mini_mime (1.0.1)
101
+ mini_portile2 (2.4.0)
102
+ minitest (5.11.3)
103
+ msgpack (1.2.10)
104
+ nio4r (2.3.1)
105
+ nokogiri (1.10.3)
106
+ mini_portile2 (~> 2.4.0)
107
+ public_suffix (3.1.0)
108
+ puma (3.12.1)
109
+ rack (2.0.7)
110
+ rack-test (1.1.0)
111
+ rack (>= 1.0, < 3)
112
+ rails (5.2.3)
113
+ actioncable (= 5.2.3)
114
+ actionmailer (= 5.2.3)
115
+ actionpack (= 5.2.3)
116
+ actionview (= 5.2.3)
117
+ activejob (= 5.2.3)
118
+ activemodel (= 5.2.3)
119
+ activerecord (= 5.2.3)
120
+ activestorage (= 5.2.3)
121
+ activesupport (= 5.2.3)
122
+ bundler (>= 1.3.0)
123
+ railties (= 5.2.3)
124
+ sprockets-rails (>= 2.0.0)
125
+ rails-dom-testing (2.0.3)
126
+ activesupport (>= 4.2.0)
127
+ nokogiri (>= 1.6)
128
+ rails-html-sanitizer (1.0.4)
129
+ loofah (~> 2.2, >= 2.2.2)
130
+ railties (5.2.3)
131
+ actionpack (= 5.2.3)
132
+ activesupport (= 5.2.3)
133
+ method_source
134
+ rake (>= 0.8.7)
135
+ thor (>= 0.19.0, < 2.0)
136
+ rake (12.3.2)
137
+ rb-fsevent (0.10.3)
138
+ rb-inotify (0.10.0)
139
+ ffi (~> 1.0)
140
+ regexp_parser (1.5.1)
141
+ rspec (3.8.0)
142
+ rspec-core (~> 3.8.0)
143
+ rspec-expectations (~> 3.8.0)
144
+ rspec-mocks (~> 3.8.0)
145
+ rspec-core (3.8.1)
146
+ rspec-support (~> 3.8.0)
147
+ rspec-expectations (3.8.4)
148
+ diff-lcs (>= 1.2.0, < 2.0)
149
+ rspec-support (~> 3.8.0)
150
+ rspec-mocks (3.8.1)
151
+ diff-lcs (>= 1.2.0, < 2.0)
152
+ rspec-support (~> 3.8.0)
153
+ rspec-rails (3.8.2)
154
+ actionpack (>= 3.0)
155
+ activesupport (>= 3.0)
156
+ railties (>= 3.0)
157
+ rspec-core (~> 3.8.0)
158
+ rspec-expectations (~> 3.8.0)
159
+ rspec-mocks (~> 3.8.0)
160
+ rspec-support (~> 3.8.0)
161
+ rspec-support (3.8.2)
162
+ ruby_dep (1.5.0)
163
+ rubyzip (1.2.3)
164
+ sass (3.7.4)
165
+ sass-listen (~> 4.0.0)
166
+ sass-listen (4.0.0)
167
+ rb-fsevent (~> 0.9, >= 0.9.4)
168
+ rb-inotify (~> 0.9, >= 0.9.7)
169
+ sass-rails (5.0.7)
170
+ railties (>= 4.0.0, < 6)
171
+ sass (~> 3.1)
172
+ sprockets (>= 2.8, < 4.0)
173
+ sprockets-rails (>= 2.0, < 4.0)
174
+ tilt (>= 1.1, < 3)
175
+ selenium-webdriver (3.142.3)
176
+ childprocess (>= 0.5, < 2.0)
177
+ rubyzip (~> 1.2, >= 1.2.2)
178
+ spring (2.0.2)
179
+ activesupport (>= 4.2)
180
+ spring-watcher-listen (2.0.1)
181
+ listen (>= 2.7, < 4.0)
182
+ spring (>= 1.2, < 3.0)
183
+ sprockets (3.7.2)
184
+ concurrent-ruby (~> 1.0)
185
+ rack (> 1, < 3)
186
+ sprockets-rails (3.2.1)
187
+ actionpack (>= 4.0)
188
+ activesupport (>= 4.0)
189
+ sprockets (>= 3.0.0)
190
+ sqlite3 (1.4.1)
191
+ thor (0.20.3)
192
+ thread_safe (0.3.6)
193
+ tilt (2.0.9)
194
+ tzinfo (1.2.5)
195
+ thread_safe (~> 0.1)
196
+ uglifier (4.1.20)
197
+ execjs (>= 0.3.0, < 3)
198
+ web-console (3.7.0)
199
+ actionview (>= 5.0)
200
+ activemodel (>= 5.0)
201
+ bindex (>= 0.4.0)
202
+ railties (>= 5.0)
203
+ websocket-driver (0.7.1)
204
+ websocket-extensions (>= 0.1.0)
205
+ websocket-extensions (0.1.4)
206
+ xpath (3.2.0)
207
+ nokogiri (~> 1.8)
208
+
209
+ PLATFORMS
210
+ ruby
211
+
212
+ DEPENDENCIES
213
+ bootsnap (>= 1.1.0)
214
+ byebug
215
+ capybara (>= 2.15)
216
+ chromedriver-helper
217
+ listen (>= 3.0.5, < 3.2)
218
+ puma (~> 3.11)
219
+ rails (~> 5.2.3)
220
+ rspec-rails (~> 3.4)
221
+ sass-rails (~> 5.0)
222
+ selenium-webdriver
223
+ spring
224
+ spring-watcher-listen (~> 2.0.0)
225
+ sqlite3
226
+ tests_doc!
227
+ tzinfo-data
228
+ uglifier (>= 1.3.0)
229
+ web-console (>= 3.3.0)
230
+
231
+ RUBY VERSION
232
+ ruby 2.3.4p301
233
+
234
+ BUNDLED WITH
235
+ 1.17.3