abyme 0.2.3 → 0.6.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.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.babelrc +6 -0
  4. data/.github/workflows/build.yml +60 -0
  5. data/.gitignore +2 -0
  6. data/.simplecov +0 -0
  7. data/CHANGELOG.md +114 -0
  8. data/Gemfile.lock +182 -41
  9. data/README.md +120 -181
  10. data/Rakefile +31 -8
  11. data/abyme.gemspec +17 -1
  12. data/dist/abyme.js +2 -0
  13. data/dist/abyme.js.map +1 -0
  14. data/dist/abyme.modern.js +2 -0
  15. data/dist/abyme.modern.js.map +1 -0
  16. data/dist/abyme.module.js +2 -0
  17. data/dist/abyme.module.js.map +1 -0
  18. data/dist/abyme.umd.js +2 -0
  19. data/dist/abyme.umd.js.map +1 -0
  20. data/jest/jest-setup.js +2 -0
  21. data/lib/abyme.rb +2 -0
  22. data/lib/abyme/abyme_builder.rb +24 -15
  23. data/lib/abyme/action_view_extensions/builder.rb +17 -0
  24. data/lib/abyme/controller.rb +15 -0
  25. data/lib/abyme/engine.rb +3 -1
  26. data/lib/abyme/model.rb +81 -5
  27. data/lib/abyme/version.rb +4 -2
  28. data/lib/abyme/view_helpers.rb +213 -42
  29. data/lib/generators/abyme/controller/USAGE +16 -0
  30. data/lib/generators/abyme/controller/controller_generator.rb +25 -0
  31. data/lib/generators/abyme/model/USAGE +21 -0
  32. data/lib/generators/abyme/model/model_generator.rb +70 -0
  33. data/lib/generators/abyme/resource/USAGE +10 -0
  34. data/lib/generators/abyme/resource/resource_generator.rb +18 -0
  35. data/lib/generators/abyme/stimulus/USAGE +5 -0
  36. data/lib/generators/abyme/stimulus/stimulus_generator.rb +21 -0
  37. data/lib/generators/abyme/view/view_generator.rb +65 -0
  38. data/package-lock.json +31992 -0
  39. data/package.json +35 -5
  40. data/specs/index.test.js +26 -0
  41. data/{javascript → src}/abyme_controller.js +84 -11
  42. data/{javascript → src}/index.js +0 -0
  43. data/yarn.lock +8228 -24
  44. metadata +199 -9
  45. data/.travis.yml +0 -7
  46. data/lib/generators/.DS_Store +0 -0
  47. data/lib/generators/abyme/install_generator.rb +0 -25
  48. data/lib/generators/abyme/templates/abyme_controller.js +0 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c47483c64b5a49b57f83cf3e779b089aff6cfb218a6cc4cc56c35b7cf14ea44a
4
- data.tar.gz: ad6152628fe3731f04a19bf3afabf45f1f9c2fc92f7af2637ce990cd8ad801e8
3
+ metadata.gz: a97e238f55a532fe8c8539fc6a7362b77ba79f0a13475a8bac7241b26e15a668
4
+ data.tar.gz: 4ebbc1a9ec8cccbf8cbf028e70013c9538493c650852ee5d26ec05183542576b
5
5
  SHA512:
6
- metadata.gz: 1fb02ef0524a28ae5a7445c1f51d3144e1ae11b4bbe710dd5e4d87b8a767d4b0e598f512293892cc114f06e492c73074a4c409a902a2911e29b0329bdf0a1a96
7
- data.tar.gz: 6bb56a17944fd6f4577580bc19cb5a004903e7dc149c65aedbc3d6e34469565c66f26318147cdb7cde107d7adc06ad3176b875557c6cb8ef8412489d3131ea09
6
+ metadata.gz: a768126195e684dc1c9de9c16c776ea4588d5b841a3927ec0f1ba224cbc96bbc8f199667221a2dc05b8c75764c187418859f89fc890ec4a8f3b064b6339f5fa3
7
+ data.tar.gz: 6a2aab308d72d41616fa6445a58c53ba3fa67c7ce143014371506412afdddd0380aece8874dbbdc00ea70f47d6fc61568ce0b6e086b47f26ac6ab7f61cef5f58
data/.DS_Store CHANGED
Binary file
data/.babelrc ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "presets": ["@babel/env"],
3
+ "plugins": [
4
+ "@babel/plugin-proposal-class-properties"
5
+ ]
6
+ }
@@ -0,0 +1,60 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: build
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+ runs-on: ubuntu-latest
19
+
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up Ruby
23
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
25
+ # uses: ruby/setup-ruby@v1
26
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
27
+ with:
28
+ ruby-version: 2.6
29
+ - name: Install sqlite headers
30
+ run: |
31
+ sudo apt-get update
32
+ sudo apt-get install libsqlite3-dev
33
+
34
+ - name: Install dependencies
35
+ run: bundle install
36
+
37
+ - name: Prepare Database
38
+ run: bundle exec rails db:create db:migrate
39
+ env:
40
+ DB_CONNECTION: sqlite
41
+ DB_DATABASE: db/test.sqlite3
42
+ RAILS_ENV: test
43
+
44
+ - name: Run tests
45
+ run: bundle exec rake
46
+ env:
47
+ DB_CONNECTION: sqlite
48
+ DB_DATABASE: db/test.sqlite3
49
+ RAILS_ENV: test
50
+
51
+ - name: Coveralls
52
+ uses: coverallsapp/github-action@master
53
+ with:
54
+ github-token: ${{ secrets.GITHUB_TOKEN }}
55
+
56
+ - name: Create Coverage Artifact
57
+ uses: actions/upload-artifact@v2
58
+ with:
59
+ name: code-coverage
60
+ path: coverage/
data/.gitignore CHANGED
@@ -17,5 +17,7 @@ node_modules
17
17
  spec/dummy/db/*.sqlite3
18
18
  spec/dummy/db/*.sqlite3-journal
19
19
  spec/dummy/db/log/*.log
20
+ spec/dummy/log/
20
21
  spec/dummy/tmp/
21
22
  spec/dummy/.sass-cache
23
+ spec/dummy/public
data/.simplecov ADDED
File without changes
data/CHANGELOG.md ADDED
@@ -0,0 +1,114 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased](https://github.com/bear-in-mind/abyme/tree/HEAD)
4
+
5
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.5.0...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - retro compatibility with former public method names [\#26](https://github.com/bear-in-mind/abyme/pull/26) ([bear-in-mind](https://github.com/bear-in-mind))
10
+
11
+ ## [v0.5.0](https://github.com/bear-in-mind/abyme/tree/v0.5.0) (2021-02-26)
12
+
13
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.5...v0.5.0)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Dynamic strong params for nested attributes [\#23](https://github.com/bear-in-mind/abyme/pull/23) ([bear-in-mind](https://github.com/bear-in-mind))
18
+
19
+ ## [v0.2.5](https://github.com/bear-in-mind/abyme/tree/v0.2.5) (2021-02-12)
20
+
21
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.4.0...v0.2.5)
22
+
23
+ ## [v0.4.0](https://github.com/bear-in-mind/abyme/tree/v0.4.0) (2021-02-12)
24
+
25
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.4...v0.4.0)
26
+
27
+ **Merged pull requests:**
28
+
29
+ - Bump nokogiri from 1.10.10 to 1.11.1 [\#22](https://github.com/bear-in-mind/abyme/pull/22) ([dependabot[bot]](https://github.com/apps/dependabot))
30
+ - Methods naming change & FormBuilder extension [\#21](https://github.com/bear-in-mind/abyme/pull/21) ([bear-in-mind](https://github.com/bear-in-mind))
31
+ - Solved JS compile bug [\#19](https://github.com/bear-in-mind/abyme/pull/19) ([bear-in-mind](https://github.com/bear-in-mind))
32
+
33
+ ## [v0.2.4](https://github.com/bear-in-mind/abyme/tree/v0.2.4) (2020-10-18)
34
+
35
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.3...v0.2.4)
36
+
37
+ **Merged pull requests:**
38
+
39
+ - Abymebuilder doc [\#18](https://github.com/bear-in-mind/abyme/pull/18) ([ghbozz](https://github.com/ghbozz))
40
+ - Last fix [\#17](https://github.com/bear-in-mind/abyme/pull/17) ([bear-in-mind](https://github.com/bear-in-mind))
41
+ - Drop demo [\#16](https://github.com/bear-in-mind/abyme/pull/16) ([bear-in-mind](https://github.com/bear-in-mind))
42
+ - Coveralls [\#15](https://github.com/bear-in-mind/abyme/pull/15) ([bear-in-mind](https://github.com/bear-in-mind))
43
+ - changing action name [\#14](https://github.com/bear-in-mind/abyme/pull/14) ([bear-in-mind](https://github.com/bear-in-mind))
44
+ - fixing button default text when auto mode [\#13](https://github.com/bear-in-mind/abyme/pull/13) ([ghbozz](https://github.com/ghbozz))
45
+ - travis and rake update [\#12](https://github.com/bear-in-mind/abyme/pull/12) ([bear-in-mind](https://github.com/bear-in-mind))
46
+ - Autonomous Spec [\#11](https://github.com/bear-in-mind/abyme/pull/11) ([bear-in-mind](https://github.com/bear-in-mind))
47
+
48
+ ## [v0.2.3](https://github.com/bear-in-mind/abyme/tree/v0.2.3) (2020-10-15)
49
+
50
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.2...v0.2.3)
51
+
52
+ ## [v0.2.2](https://github.com/bear-in-mind/abyme/tree/v0.2.2) (2020-10-15)
53
+
54
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.1...v0.2.2)
55
+
56
+ **Merged pull requests:**
57
+
58
+ - Dummy app setup \(incomplete\) [\#10](https://github.com/bear-in-mind/abyme/pull/10) ([bear-in-mind](https://github.com/bear-in-mind))
59
+
60
+ ## [v0.2.1](https://github.com/bear-in-mind/abyme/tree/v0.2.1) (2020-10-15)
61
+
62
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/0.2.0...v0.2.1)
63
+
64
+ **Merged pull requests:**
65
+
66
+ - fix partial path [\#9](https://github.com/bear-in-mind/abyme/pull/9) ([ghbozz](https://github.com/ghbozz))
67
+
68
+ ## [0.2.0](https://github.com/bear-in-mind/abyme/tree/0.2.0) (2020-10-14)
69
+
70
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.2.0...0.2.0)
71
+
72
+ **Merged pull requests:**
73
+
74
+ - End of doc [\#8](https://github.com/bear-in-mind/abyme/pull/8) ([bear-in-mind](https://github.com/bear-in-mind))
75
+
76
+ ## [v0.2.0](https://github.com/bear-in-mind/abyme/tree/v0.2.0) (2020-10-14)
77
+
78
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/0.1.3...v0.2.0)
79
+
80
+ **Merged pull requests:**
81
+
82
+ - limit & min count options [\#7](https://github.com/bear-in-mind/abyme/pull/7) ([ghbozz](https://github.com/ghbozz))
83
+ - Documentation end [\#6](https://github.com/bear-in-mind/abyme/pull/6) ([bear-in-mind](https://github.com/bear-in-mind))
84
+ - add limit feature [\#5](https://github.com/bear-in-mind/abyme/pull/5) ([ghbozz](https://github.com/ghbozz))
85
+
86
+ ## [0.1.3](https://github.com/bear-in-mind/abyme/tree/0.1.3) (2020-10-13)
87
+
88
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.1.2...0.1.3)
89
+
90
+ ## [v0.1.2](https://github.com/bear-in-mind/abyme/tree/v0.1.2) (2020-10-13)
91
+
92
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/0.1.1...v0.1.2)
93
+
94
+ **Merged pull requests:**
95
+
96
+ - basic lifecycle events [\#4](https://github.com/bear-in-mind/abyme/pull/4) ([ghbozz](https://github.com/ghbozz))
97
+
98
+ ## [0.1.1](https://github.com/bear-in-mind/abyme/tree/0.1.1) (2020-10-12)
99
+
100
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/v0.1.1...0.1.1)
101
+
102
+ ## [v0.1.1](https://github.com/bear-in-mind/abyme/tree/v0.1.1) (2020-10-12)
103
+
104
+ [Full Changelog](https://github.com/bear-in-mind/abyme/compare/9b99709cd8f84e9401adb8ba6f59f0074e2f416b...v0.1.1)
105
+
106
+ **Merged pull requests:**
107
+
108
+ - Gem Content [\#3](https://github.com/bear-in-mind/abyme/pull/3) ([bear-in-mind](https://github.com/bear-in-mind))
109
+ - install generator for stimulus init setup [\#2](https://github.com/bear-in-mind/abyme/pull/2) ([ghbozz](https://github.com/ghbozz))
110
+ - Update rake requirement from ~\> 10.0 to ~\> 13.0 [\#1](https://github.com/bear-in-mind/abyme/pull/1) ([dependabot[bot]](https://github.com/apps/dependabot))
111
+
112
+
113
+
114
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Gemfile.lock CHANGED
@@ -1,85 +1,214 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- abyme (0.2.3)
4
+ abyme (0.6.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actionpack (6.0.3.4)
10
- actionview (= 6.0.3.4)
11
- activesupport (= 6.0.3.4)
9
+ actioncable (6.0.3.7)
10
+ actionpack (= 6.0.3.7)
11
+ nio4r (~> 2.0)
12
+ websocket-driver (>= 0.6.1)
13
+ actionmailbox (6.0.3.7)
14
+ actionpack (= 6.0.3.7)
15
+ activejob (= 6.0.3.7)
16
+ activerecord (= 6.0.3.7)
17
+ activestorage (= 6.0.3.7)
18
+ activesupport (= 6.0.3.7)
19
+ mail (>= 2.7.1)
20
+ actionmailer (6.0.3.7)
21
+ actionpack (= 6.0.3.7)
22
+ actionview (= 6.0.3.7)
23
+ activejob (= 6.0.3.7)
24
+ mail (~> 2.5, >= 2.5.4)
25
+ rails-dom-testing (~> 2.0)
26
+ actionpack (6.0.3.7)
27
+ actionview (= 6.0.3.7)
28
+ activesupport (= 6.0.3.7)
12
29
  rack (~> 2.0, >= 2.0.8)
13
30
  rack-test (>= 0.6.3)
14
31
  rails-dom-testing (~> 2.0)
15
32
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
16
- actionview (6.0.3.4)
17
- activesupport (= 6.0.3.4)
33
+ actiontext (6.0.3.7)
34
+ actionpack (= 6.0.3.7)
35
+ activerecord (= 6.0.3.7)
36
+ activestorage (= 6.0.3.7)
37
+ activesupport (= 6.0.3.7)
38
+ nokogiri (>= 1.8.5)
39
+ actionview (6.0.3.7)
40
+ activesupport (= 6.0.3.7)
18
41
  builder (~> 3.1)
19
42
  erubi (~> 1.4)
20
43
  rails-dom-testing (~> 2.0)
21
44
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
22
- activesupport (6.0.3.4)
45
+ activejob (6.0.3.7)
46
+ activesupport (= 6.0.3.7)
47
+ globalid (>= 0.3.6)
48
+ activemodel (6.0.3.7)
49
+ activesupport (= 6.0.3.7)
50
+ activerecord (6.0.3.7)
51
+ activemodel (= 6.0.3.7)
52
+ activesupport (= 6.0.3.7)
53
+ activestorage (6.0.3.7)
54
+ actionpack (= 6.0.3.7)
55
+ activejob (= 6.0.3.7)
56
+ activerecord (= 6.0.3.7)
57
+ marcel (~> 1.0.0)
58
+ activesupport (6.0.3.7)
23
59
  concurrent-ruby (~> 1.0, >= 1.0.2)
24
60
  i18n (>= 0.7, < 2)
25
61
  minitest (~> 5.1)
26
62
  tzinfo (~> 1.1)
27
63
  zeitwerk (~> 2.2, >= 2.2.2)
64
+ addressable (2.7.0)
65
+ public_suffix (>= 2.0.2, < 5.0)
66
+ bindex (0.8.1)
28
67
  builder (3.2.4)
29
- concurrent-ruby (1.1.7)
68
+ byebug (11.1.3)
69
+ capybara (3.35.3)
70
+ addressable
71
+ mini_mime (>= 0.1.3)
72
+ nokogiri (~> 1.8)
73
+ rack (>= 1.6.0)
74
+ rack-test (>= 0.6.3)
75
+ regexp_parser (>= 1.5, < 3.0)
76
+ xpath (~> 3.2)
77
+ childprocess (3.0.0)
78
+ coderay (1.1.3)
79
+ concurrent-ruby (1.1.9)
30
80
  crass (1.0.6)
81
+ database_cleaner-active_record (2.0.1)
82
+ activerecord (>= 5.a)
83
+ database_cleaner-core (~> 2.0.0)
84
+ database_cleaner-core (2.0.1)
31
85
  diff-lcs (1.4.4)
32
- erubi (1.9.0)
33
- i18n (1.8.5)
86
+ docile (1.4.0)
87
+ erubi (1.10.0)
88
+ generator_spec (0.9.4)
89
+ activesupport (>= 3.0.0)
90
+ railties (>= 3.0.0)
91
+ globalid (0.4.2)
92
+ activesupport (>= 4.2.0)
93
+ i18n (1.8.10)
34
94
  concurrent-ruby (~> 1.0)
35
- loofah (2.7.0)
95
+ loofah (2.10.0)
36
96
  crass (~> 1.0.2)
37
97
  nokogiri (>= 1.5.9)
98
+ mail (2.7.1)
99
+ mini_mime (>= 0.1.1)
100
+ marcel (1.0.1)
38
101
  method_source (1.0.0)
39
- mini_portile2 (2.4.0)
40
- minitest (5.14.2)
41
- nokogiri (1.10.10)
42
- mini_portile2 (~> 2.4.0)
102
+ mini_mime (1.1.0)
103
+ mini_portile2 (2.5.3)
104
+ minitest (5.14.4)
105
+ nio4r (2.5.7)
106
+ nokogiri (1.11.7)
107
+ mini_portile2 (~> 2.5.0)
108
+ racc (~> 1.4)
109
+ pry (0.13.1)
110
+ coderay (~> 1.1)
111
+ method_source (~> 1.0)
112
+ pry-byebug (3.9.0)
113
+ byebug (~> 11.0)
114
+ pry (~> 0.13.0)
115
+ public_suffix (4.0.6)
116
+ puma (5.3.2)
117
+ nio4r (~> 2.0)
118
+ racc (1.5.2)
43
119
  rack (2.2.3)
44
120
  rack-test (1.1.0)
45
121
  rack (>= 1.0, < 3)
122
+ rails (6.0.3.7)
123
+ actioncable (= 6.0.3.7)
124
+ actionmailbox (= 6.0.3.7)
125
+ actionmailer (= 6.0.3.7)
126
+ actionpack (= 6.0.3.7)
127
+ actiontext (= 6.0.3.7)
128
+ actionview (= 6.0.3.7)
129
+ activejob (= 6.0.3.7)
130
+ activemodel (= 6.0.3.7)
131
+ activerecord (= 6.0.3.7)
132
+ activestorage (= 6.0.3.7)
133
+ activesupport (= 6.0.3.7)
134
+ bundler (>= 1.3.0)
135
+ railties (= 6.0.3.7)
136
+ sprockets-rails (>= 2.0.0)
137
+ rails-controller-testing (1.0.5)
138
+ actionpack (>= 5.0.1.rc1)
139
+ actionview (>= 5.0.1.rc1)
140
+ activesupport (>= 5.0.1.rc1)
46
141
  rails-dom-testing (2.0.3)
47
142
  activesupport (>= 4.2.0)
48
143
  nokogiri (>= 1.6)
49
- rails-dummy (0.1.0)
50
- railties
51
144
  rails-html-sanitizer (1.3.0)
52
145
  loofah (~> 2.3)
53
- railties (6.0.3.4)
54
- actionpack (= 6.0.3.4)
55
- activesupport (= 6.0.3.4)
146
+ railties (6.0.3.7)
147
+ actionpack (= 6.0.3.7)
148
+ activesupport (= 6.0.3.7)
56
149
  method_source
57
150
  rake (>= 0.8.7)
58
151
  thor (>= 0.20.3, < 2.0)
59
- rake (13.0.1)
60
- rspec-core (3.9.3)
61
- rspec-support (~> 3.9.3)
62
- rspec-expectations (3.9.2)
152
+ rake (13.0.3)
153
+ regexp_parser (2.1.1)
154
+ rspec-core (3.10.1)
155
+ rspec-support (~> 3.10.0)
156
+ rspec-expectations (3.10.1)
63
157
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.9.0)
65
- rspec-mocks (3.9.1)
158
+ rspec-support (~> 3.10.0)
159
+ rspec-mocks (3.10.2)
66
160
  diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.9.0)
68
- rspec-rails (4.0.1)
69
- actionpack (>= 4.2)
70
- activesupport (>= 4.2)
71
- railties (>= 4.2)
72
- rspec-core (~> 3.9)
73
- rspec-expectations (~> 3.9)
74
- rspec-mocks (~> 3.9)
75
- rspec-support (~> 3.9)
76
- rspec-support (3.9.3)
161
+ rspec-support (~> 3.10.0)
162
+ rspec-rails (5.0.1)
163
+ actionpack (>= 5.2)
164
+ activesupport (>= 5.2)
165
+ railties (>= 5.2)
166
+ rspec-core (~> 3.10)
167
+ rspec-expectations (~> 3.10)
168
+ rspec-mocks (~> 3.10)
169
+ rspec-support (~> 3.10)
170
+ rspec-support (3.10.2)
171
+ rubyzip (2.3.0)
172
+ selenium-webdriver (3.142.7)
173
+ childprocess (>= 0.5, < 4.0)
174
+ rubyzip (>= 1.2.2)
175
+ simple_form (5.1.0)
176
+ actionpack (>= 5.2)
177
+ activemodel (>= 5.2)
178
+ simplecov (0.21.2)
179
+ docile (~> 1.1)
180
+ simplecov-html (~> 0.11)
181
+ simplecov_json_formatter (~> 0.1)
182
+ simplecov-html (0.12.3)
183
+ simplecov-lcov (0.8.0)
184
+ simplecov_json_formatter (0.1.3)
185
+ sprockets (4.0.2)
186
+ concurrent-ruby (~> 1.0)
187
+ rack (> 1, < 3)
188
+ sprockets-rails (3.2.2)
189
+ actionpack (>= 4.0)
190
+ activesupport (>= 4.0)
191
+ sprockets (>= 3.0.0)
77
192
  sqlite3 (1.4.2)
78
- thor (1.0.1)
193
+ thor (1.1.0)
79
194
  thread_safe (0.3.6)
80
- tzinfo (1.2.7)
195
+ tzinfo (1.2.9)
81
196
  thread_safe (~> 0.1)
82
- zeitwerk (2.4.0)
197
+ web-console (4.1.0)
198
+ actionview (>= 6.0.0)
199
+ activemodel (>= 6.0.0)
200
+ bindex (>= 0.4.0)
201
+ railties (>= 6.0.0)
202
+ webdrivers (4.6.0)
203
+ nokogiri (~> 1.6)
204
+ rubyzip (>= 1.3.0)
205
+ selenium-webdriver (>= 3.0, < 4.0)
206
+ websocket-driver (0.7.5)
207
+ websocket-extensions (>= 0.1.0)
208
+ websocket-extensions (0.1.5)
209
+ xpath (3.2.0)
210
+ nokogiri (~> 1.8)
211
+ zeitwerk (2.4.2)
83
212
 
84
213
  PLATFORMS
85
214
  ruby
@@ -87,10 +216,22 @@ PLATFORMS
87
216
  DEPENDENCIES
88
217
  abyme!
89
218
  bundler (~> 2.0)
90
- rails-dummy
219
+ byebug
220
+ capybara
221
+ database_cleaner-active_record
222
+ generator_spec
223
+ pry-byebug
224
+ puma
225
+ rails (~> 6.0.3.6)
226
+ rails-controller-testing
91
227
  rake (~> 13.0)
92
228
  rspec-rails
229
+ simple_form
230
+ simplecov
231
+ simplecov-lcov
93
232
  sqlite3
233
+ web-console
234
+ webdrivers
94
235
 
95
236
  BUNDLED WITH
96
- 2.1.4
237
+ 2.2.13