abyme 0.2.4 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.babelrc +6 -0
  4. data/.github/workflows/build.yml +1 -1
  5. data/.gitignore +1 -0
  6. data/CHANGELOG.md +114 -0
  7. data/Gemfile.lock +126 -99
  8. data/README.md +148 -181
  9. data/abyme.gemspec +7 -1
  10. data/dist/abyme.js +2 -0
  11. data/dist/abyme.js.map +1 -0
  12. data/dist/abyme.modern.js +2 -0
  13. data/dist/abyme.modern.js.map +1 -0
  14. data/dist/abyme.module.js +2 -0
  15. data/dist/abyme.module.js.map +1 -0
  16. data/dist/abyme.umd.js +2 -0
  17. data/dist/abyme.umd.js.map +1 -0
  18. data/jest/jest-setup.js +2 -0
  19. data/lib/abyme.rb +2 -0
  20. data/lib/abyme/abyme_builder.rb +11 -18
  21. data/lib/abyme/action_view_extensions/builder.rb +17 -0
  22. data/lib/abyme/controller.rb +15 -0
  23. data/lib/abyme/engine.rb +3 -1
  24. data/lib/abyme/model.rb +82 -6
  25. data/lib/abyme/version.rb +2 -2
  26. data/lib/abyme/view_helpers.rb +75 -57
  27. data/lib/generators/abyme/controller/USAGE +16 -0
  28. data/lib/generators/abyme/controller/controller_generator.rb +25 -0
  29. data/lib/generators/abyme/model/USAGE +21 -0
  30. data/lib/generators/abyme/model/model_generator.rb +70 -0
  31. data/lib/generators/abyme/resource/USAGE +10 -0
  32. data/lib/generators/abyme/resource/resource_generator.rb +18 -0
  33. data/lib/generators/abyme/stimulus/USAGE +5 -0
  34. data/lib/generators/abyme/stimulus/stimulus_generator.rb +21 -0
  35. data/lib/generators/abyme/view/USAGE +11 -0
  36. data/lib/generators/abyme/view/view_generator.rb +65 -0
  37. data/package-lock.json +31992 -0
  38. data/package.json +35 -5
  39. data/specs/index.test.js +26 -0
  40. data/{javascript → src}/abyme_controller.js +5 -1
  41. data/{javascript → src}/index.js +0 -0
  42. data/yarn.lock +7678 -22
  43. metadata +99 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 585adff10e80cf9646d03a7d2251188d6d8be083a3f9f9b3e7fe019187904c39
4
- data.tar.gz: 1e17608e8bde56231bf57016d4d5f880f29915e7cf7c98cd51f46e21ff06609b
3
+ metadata.gz: '0309e79614421492e80249d70d4c3759318420a1eeb16d5b00e856c102c575f8'
4
+ data.tar.gz: 5446966d33cc88565ad588d9fb39c305ba1c5798043a82c87f8e328711da08ab
5
5
  SHA512:
6
- metadata.gz: efc39dc12b33a25c5b5b61f5079b2b0f7605b7b6ae557cebad526c9efa88475ce4f3e3841fce0e3a04bc87d823e9b52c15a6a2655203cd324ff6985ef229bec8
7
- data.tar.gz: fe4dd5956a8afe5ac9d48df970a5c71a0fbabd880f36b19e8de997dc0a622bee5f23c1064e7f1db8b876439909b48bccdbe66bc514bd51573945f950a66699a4
6
+ metadata.gz: 8465c0e77487f2b2499313a7b289bfcfa5ae091fef0a4c44a62138fbe4a15b8638bc31ae9fbb389505584a43cf6ba9adc979e185ba821ce3795165d60be008e0
7
+ data.tar.gz: 27a83ba53937bf37a1364a75bb7b3af6ab7bf1da8b9cdbcedf9e3344e319d91cdbd986a0f5aa7380f8c9dcebe4ee1e26f178b988916dbbd79f18a530e52c0d1f
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
+ }
@@ -23,7 +23,7 @@ jobs:
23
23
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
24
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
25
25
  # uses: ruby/setup-ruby@v1
26
- uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
26
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
27
27
  with:
28
28
  ruby-version: 2.6
29
29
  - name: Install sqlite headers
data/.gitignore CHANGED
@@ -17,6 +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
22
23
  spec/dummy/public
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,61 +1,61 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- abyme (0.2.4)
4
+ abyme (0.6.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actioncable (6.0.3.4)
10
- actionpack (= 6.0.3.4)
9
+ actioncable (6.0.3.7)
10
+ actionpack (= 6.0.3.7)
11
11
  nio4r (~> 2.0)
12
12
  websocket-driver (>= 0.6.1)
13
- actionmailbox (6.0.3.4)
14
- actionpack (= 6.0.3.4)
15
- activejob (= 6.0.3.4)
16
- activerecord (= 6.0.3.4)
17
- activestorage (= 6.0.3.4)
18
- activesupport (= 6.0.3.4)
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
19
  mail (>= 2.7.1)
20
- actionmailer (6.0.3.4)
21
- actionpack (= 6.0.3.4)
22
- actionview (= 6.0.3.4)
23
- activejob (= 6.0.3.4)
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
24
  mail (~> 2.5, >= 2.5.4)
25
25
  rails-dom-testing (~> 2.0)
26
- actionpack (6.0.3.4)
27
- actionview (= 6.0.3.4)
28
- activesupport (= 6.0.3.4)
26
+ actionpack (6.0.3.7)
27
+ actionview (= 6.0.3.7)
28
+ activesupport (= 6.0.3.7)
29
29
  rack (~> 2.0, >= 2.0.8)
30
30
  rack-test (>= 0.6.3)
31
31
  rails-dom-testing (~> 2.0)
32
32
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
33
- actiontext (6.0.3.4)
34
- actionpack (= 6.0.3.4)
35
- activerecord (= 6.0.3.4)
36
- activestorage (= 6.0.3.4)
37
- 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
38
  nokogiri (>= 1.8.5)
39
- actionview (6.0.3.4)
40
- activesupport (= 6.0.3.4)
39
+ actionview (6.0.3.7)
40
+ activesupport (= 6.0.3.7)
41
41
  builder (~> 3.1)
42
42
  erubi (~> 1.4)
43
43
  rails-dom-testing (~> 2.0)
44
44
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
45
- activejob (6.0.3.4)
46
- activesupport (= 6.0.3.4)
45
+ activejob (6.0.3.7)
46
+ activesupport (= 6.0.3.7)
47
47
  globalid (>= 0.3.6)
48
- activemodel (6.0.3.4)
49
- activesupport (= 6.0.3.4)
50
- activerecord (6.0.3.4)
51
- activemodel (= 6.0.3.4)
52
- activesupport (= 6.0.3.4)
53
- activestorage (6.0.3.4)
54
- actionpack (= 6.0.3.4)
55
- activejob (= 6.0.3.4)
56
- activerecord (= 6.0.3.4)
57
- marcel (~> 0.3.1)
58
- activesupport (6.0.3.4)
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)
59
59
  concurrent-ruby (~> 1.0, >= 1.0.2)
60
60
  i18n (>= 0.7, < 2)
61
61
  minitest (~> 5.1)
@@ -63,64 +63,76 @@ GEM
63
63
  zeitwerk (~> 2.2, >= 2.2.2)
64
64
  addressable (2.7.0)
65
65
  public_suffix (>= 2.0.2, < 5.0)
66
+ bindex (0.8.1)
66
67
  builder (3.2.4)
67
- capybara (3.33.0)
68
+ byebug (11.1.3)
69
+ capybara (3.35.3)
68
70
  addressable
69
71
  mini_mime (>= 0.1.3)
70
72
  nokogiri (~> 1.8)
71
73
  rack (>= 1.6.0)
72
74
  rack-test (>= 0.6.3)
73
- regexp_parser (~> 1.5)
75
+ regexp_parser (>= 1.5, < 3.0)
74
76
  xpath (~> 3.2)
75
77
  childprocess (3.0.0)
76
- concurrent-ruby (1.1.7)
78
+ coderay (1.1.3)
79
+ concurrent-ruby (1.1.9)
77
80
  crass (1.0.6)
78
- database_cleaner (1.8.5)
79
- database_cleaner-active_record (1.8.0)
80
- activerecord
81
- database_cleaner (~> 1.8.0)
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)
82
85
  diff-lcs (1.4.4)
83
- docile (1.3.2)
84
- erubi (1.9.0)
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)
85
91
  globalid (0.4.2)
86
92
  activesupport (>= 4.2.0)
87
- i18n (1.8.5)
93
+ i18n (1.8.10)
88
94
  concurrent-ruby (~> 1.0)
89
- loofah (2.7.0)
95
+ loofah (2.10.0)
90
96
  crass (~> 1.0.2)
91
97
  nokogiri (>= 1.5.9)
92
98
  mail (2.7.1)
93
99
  mini_mime (>= 0.1.1)
94
- marcel (0.3.3)
95
- mimemagic (~> 0.3.2)
100
+ marcel (1.0.1)
96
101
  method_source (1.0.0)
97
- mimemagic (0.3.5)
98
- mini_mime (1.0.2)
99
- mini_portile2 (2.4.0)
100
- minitest (5.14.2)
101
- nio4r (2.5.4)
102
- nokogiri (1.10.10)
103
- 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)
104
115
  public_suffix (4.0.6)
105
- puma (4.3.6)
116
+ puma (5.3.2)
106
117
  nio4r (~> 2.0)
118
+ racc (1.5.2)
107
119
  rack (2.2.3)
108
120
  rack-test (1.1.0)
109
121
  rack (>= 1.0, < 3)
110
- rails (6.0.3.4)
111
- actioncable (= 6.0.3.4)
112
- actionmailbox (= 6.0.3.4)
113
- actionmailer (= 6.0.3.4)
114
- actionpack (= 6.0.3.4)
115
- actiontext (= 6.0.3.4)
116
- actionview (= 6.0.3.4)
117
- activejob (= 6.0.3.4)
118
- activemodel (= 6.0.3.4)
119
- activerecord (= 6.0.3.4)
120
- activestorage (= 6.0.3.4)
121
- activesupport (= 6.0.3.4)
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)
122
134
  bundler (>= 1.3.0)
123
- railties (= 6.0.3.4)
135
+ railties (= 6.0.3.7)
124
136
  sprockets-rails (>= 2.0.0)
125
137
  rails-controller-testing (1.0.5)
126
138
  actionpack (>= 5.0.1.rc1)
@@ -131,40 +143,45 @@ GEM
131
143
  nokogiri (>= 1.6)
132
144
  rails-html-sanitizer (1.3.0)
133
145
  loofah (~> 2.3)
134
- railties (6.0.3.4)
135
- actionpack (= 6.0.3.4)
136
- activesupport (= 6.0.3.4)
146
+ railties (6.0.3.7)
147
+ actionpack (= 6.0.3.7)
148
+ activesupport (= 6.0.3.7)
137
149
  method_source
138
150
  rake (>= 0.8.7)
139
151
  thor (>= 0.20.3, < 2.0)
140
- rake (13.0.1)
141
- regexp_parser (1.8.2)
142
- rspec-core (3.9.3)
143
- rspec-support (~> 3.9.3)
144
- 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)
145
157
  diff-lcs (>= 1.2.0, < 2.0)
146
- rspec-support (~> 3.9.0)
147
- rspec-mocks (3.9.1)
158
+ rspec-support (~> 3.10.0)
159
+ rspec-mocks (3.10.2)
148
160
  diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.9.0)
150
- rspec-rails (4.0.1)
151
- actionpack (>= 4.2)
152
- activesupport (>= 4.2)
153
- railties (>= 4.2)
154
- rspec-core (~> 3.9)
155
- rspec-expectations (~> 3.9)
156
- rspec-mocks (~> 3.9)
157
- rspec-support (~> 3.9)
158
- 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)
159
171
  rubyzip (2.3.0)
160
172
  selenium-webdriver (3.142.7)
161
173
  childprocess (>= 0.5, < 4.0)
162
174
  rubyzip (>= 1.2.2)
163
- simplecov (0.19.0)
175
+ simple_form (5.1.0)
176
+ actionpack (>= 5.2)
177
+ activemodel (>= 5.2)
178
+ simplecov (0.21.2)
164
179
  docile (~> 1.1)
165
180
  simplecov-html (~> 0.11)
166
- simplecov-html (0.12.2)
181
+ simplecov_json_formatter (~> 0.1)
182
+ simplecov-html (0.12.3)
167
183
  simplecov-lcov (0.8.0)
184
+ simplecov_json_formatter (0.1.3)
168
185
  sprockets (4.0.2)
169
186
  concurrent-ruby (~> 1.0)
170
187
  rack (> 1, < 3)
@@ -173,20 +190,25 @@ GEM
173
190
  activesupport (>= 4.0)
174
191
  sprockets (>= 3.0.0)
175
192
  sqlite3 (1.4.2)
176
- thor (1.0.1)
193
+ thor (1.1.0)
177
194
  thread_safe (0.3.6)
178
- tzinfo (1.2.7)
195
+ tzinfo (1.2.9)
179
196
  thread_safe (~> 0.1)
180
- webdrivers (4.4.1)
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)
181
203
  nokogiri (~> 1.6)
182
204
  rubyzip (>= 1.3.0)
183
205
  selenium-webdriver (>= 3.0, < 4.0)
184
- websocket-driver (0.7.3)
206
+ websocket-driver (0.7.5)
185
207
  websocket-extensions (>= 0.1.0)
186
208
  websocket-extensions (0.1.5)
187
209
  xpath (3.2.0)
188
210
  nokogiri (~> 1.8)
189
- zeitwerk (2.4.0)
211
+ zeitwerk (2.4.2)
190
212
 
191
213
  PLATFORMS
192
214
  ruby
@@ -194,17 +216,22 @@ PLATFORMS
194
216
  DEPENDENCIES
195
217
  abyme!
196
218
  bundler (~> 2.0)
219
+ byebug
197
220
  capybara
198
221
  database_cleaner-active_record
222
+ generator_spec
223
+ pry-byebug
199
224
  puma
200
- rails
225
+ rails (~> 6.0.3.6)
201
226
  rails-controller-testing
202
227
  rake (~> 13.0)
203
228
  rspec-rails
229
+ simple_form
204
230
  simplecov
205
231
  simplecov-lcov
206
232
  sqlite3
233
+ web-console
207
234
  webdrivers
208
235
 
209
236
  BUNDLED WITH
210
- 2.1.4
237
+ 2.2.13