curly-templates 2.6.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +27 -0
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +31 -1
  5. data/Gemfile +1 -14
  6. data/README.md +9 -3
  7. data/curly-templates.gemspec +3 -3
  8. data/gemfiles/common.rb +13 -0
  9. data/gemfiles/rails4.2.gemfile +4 -0
  10. data/gemfiles/rails4.2.gemfile.lock +161 -0
  11. data/gemfiles/rails5.1.gemfile +4 -0
  12. data/gemfiles/rails5.1.gemfile.lock +169 -0
  13. data/gemfiles/rails5.2.gemfile +4 -0
  14. data/gemfiles/rails5.2.gemfile.lock +177 -0
  15. data/gemfiles/rails6.0.gemfile +4 -0
  16. data/gemfiles/rails6.0.gemfile.lock +199 -0
  17. data/gemfiles/rails6.1.gemfile +4 -0
  18. data/gemfiles/rails6.1.gemfile.lock +202 -0
  19. data/lib/curly/dependency_tracker.rb +1 -1
  20. data/lib/curly/template_handler.rb +20 -8
  21. data/lib/curly/version.rb +1 -1
  22. data/lib/generators/curly.rb +17 -0
  23. data/lib/generators/curly/install/install_generator.rb +21 -0
  24. data/lib/generators/curly/install/templates/layout.html.curly.erb +14 -0
  25. data/lib/generators/curly/install/templates/layout_presenter.rb.erb +25 -0
  26. data/lib/generators/curly/scaffold/scaffold_generator.rb +43 -0
  27. data/lib/generators/curly/scaffold/templates/_form.html.curly.erb +30 -0
  28. data/lib/generators/curly/scaffold/templates/edit.html.curly.erb +5 -0
  29. data/lib/generators/curly/scaffold/templates/edit_presenter.rb.erb +24 -0
  30. data/lib/generators/curly/scaffold/templates/form_presenter.rb.erb +66 -0
  31. data/lib/generators/curly/scaffold/templates/index.html.curly.erb +31 -0
  32. data/lib/generators/curly/scaffold/templates/index_presenter.rb.erb +46 -0
  33. data/lib/generators/curly/scaffold/templates/new.html.curly.erb +5 -0
  34. data/lib/generators/curly/scaffold/templates/new_presenter.rb.erb +20 -0
  35. data/lib/generators/curly/scaffold/templates/show.html.curly.erb +12 -0
  36. data/lib/generators/curly/scaffold/templates/show_presenter.rb.erb +46 -0
  37. metadata +44 -19
  38. data/circle.yml +0 -9
@@ -0,0 +1,4 @@
1
+ eval_gemfile 'common.rb'
2
+
3
+ gem 'rails', '~> 5.2.0'
4
+ gem 'genspec', '>= 0.3.0'
@@ -0,0 +1,177 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ curly-templates (3.0.0)
5
+ actionpack (>= 4.2, < 6.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.2.4.4)
11
+ actionpack (= 5.2.4.4)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ actionmailer (5.2.4.4)
15
+ actionpack (= 5.2.4.4)
16
+ actionview (= 5.2.4.4)
17
+ activejob (= 5.2.4.4)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.2.4.4)
21
+ actionview (= 5.2.4.4)
22
+ activesupport (= 5.2.4.4)
23
+ rack (~> 2.0, >= 2.0.8)
24
+ rack-test (>= 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.2.4.4)
28
+ activesupport (= 5.2.4.4)
29
+ builder (~> 3.1)
30
+ erubi (~> 1.4)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
+ activejob (5.2.4.4)
34
+ activesupport (= 5.2.4.4)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.2.4.4)
37
+ activesupport (= 5.2.4.4)
38
+ activerecord (5.2.4.4)
39
+ activemodel (= 5.2.4.4)
40
+ activesupport (= 5.2.4.4)
41
+ arel (>= 9.0)
42
+ activestorage (5.2.4.4)
43
+ actionpack (= 5.2.4.4)
44
+ activerecord (= 5.2.4.4)
45
+ marcel (~> 0.3.1)
46
+ activesupport (5.2.4.4)
47
+ concurrent-ruby (~> 1.0, >= 1.0.2)
48
+ i18n (>= 0.7, < 2)
49
+ minitest (~> 5.1)
50
+ tzinfo (~> 1.1)
51
+ arel (9.0.0)
52
+ benchmark-ips (2.8.4)
53
+ builder (3.2.4)
54
+ concurrent-ruby (1.1.7)
55
+ crass (1.0.6)
56
+ diff-lcs (1.4.4)
57
+ erubi (1.10.0)
58
+ genspec (0.3.2)
59
+ rspec (>= 2, < 4)
60
+ thor
61
+ github-markup (3.0.5)
62
+ globalid (0.4.2)
63
+ activesupport (>= 4.2.0)
64
+ i18n (1.8.7)
65
+ concurrent-ruby (~> 1.0)
66
+ loofah (2.9.0)
67
+ crass (~> 1.0.2)
68
+ nokogiri (>= 1.5.9)
69
+ mail (2.7.1)
70
+ mini_mime (>= 0.1.1)
71
+ marcel (0.3.3)
72
+ mimemagic (~> 0.3.2)
73
+ method_source (1.0.0)
74
+ mimemagic (0.3.5)
75
+ mini_mime (1.0.2)
76
+ minitest (5.14.3)
77
+ nio4r (2.5.4)
78
+ nokogiri (1.11.1-x86_64-darwin)
79
+ racc (~> 1.4)
80
+ nokogiri (1.11.1-x86_64-linux)
81
+ racc (~> 1.4)
82
+ racc (1.5.2)
83
+ rack (2.2.3)
84
+ rack-test (1.1.0)
85
+ rack (>= 1.0, < 3)
86
+ rails (5.2.4.4)
87
+ actioncable (= 5.2.4.4)
88
+ actionmailer (= 5.2.4.4)
89
+ actionpack (= 5.2.4.4)
90
+ actionview (= 5.2.4.4)
91
+ activejob (= 5.2.4.4)
92
+ activemodel (= 5.2.4.4)
93
+ activerecord (= 5.2.4.4)
94
+ activestorage (= 5.2.4.4)
95
+ activesupport (= 5.2.4.4)
96
+ bundler (>= 1.3.0)
97
+ railties (= 5.2.4.4)
98
+ sprockets-rails (>= 2.0.0)
99
+ rails-dom-testing (2.0.3)
100
+ activesupport (>= 4.2.0)
101
+ nokogiri (>= 1.6)
102
+ rails-html-sanitizer (1.3.0)
103
+ loofah (~> 2.3)
104
+ railties (5.2.4.4)
105
+ actionpack (= 5.2.4.4)
106
+ activesupport (= 5.2.4.4)
107
+ method_source
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.19.0, < 2.0)
110
+ rake (13.0.3)
111
+ redcarpet (3.5.1)
112
+ rspec (3.10.0)
113
+ rspec-core (~> 3.10.0)
114
+ rspec-expectations (~> 3.10.0)
115
+ rspec-mocks (~> 3.10.0)
116
+ rspec-core (3.10.1)
117
+ rspec-support (~> 3.10.0)
118
+ rspec-expectations (3.10.1)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.10.0)
121
+ rspec-mocks (3.10.1)
122
+ diff-lcs (>= 1.2.0, < 2.0)
123
+ rspec-support (~> 3.10.0)
124
+ rspec-rails (4.0.2)
125
+ actionpack (>= 4.2)
126
+ activesupport (>= 4.2)
127
+ railties (>= 4.2)
128
+ rspec-core (~> 3.10)
129
+ rspec-expectations (~> 3.10)
130
+ rspec-mocks (~> 3.10)
131
+ rspec-support (~> 3.10)
132
+ rspec-support (3.10.1)
133
+ rspec_junit_formatter (0.4.1)
134
+ rspec-core (>= 2, < 4, != 2.12.0)
135
+ sprockets (4.0.2)
136
+ concurrent-ruby (~> 1.0)
137
+ rack (> 1, < 3)
138
+ sprockets-rails (3.2.2)
139
+ actionpack (>= 4.0)
140
+ activesupport (>= 4.0)
141
+ sprockets (>= 3.0.0)
142
+ stackprof (0.2.16)
143
+ thor (1.0.1)
144
+ thread_safe (0.3.6)
145
+ tomparse (0.4.2)
146
+ tzinfo (1.2.9)
147
+ thread_safe (~> 0.1)
148
+ websocket-driver (0.7.3)
149
+ websocket-extensions (>= 0.1.0)
150
+ websocket-extensions (0.1.5)
151
+ yard (0.9.26)
152
+ yard-tomdoc (0.7.1)
153
+ tomparse (>= 0.4.0)
154
+ yard
155
+
156
+ PLATFORMS
157
+ x86_64-darwin-19
158
+ x86_64-linux
159
+
160
+ DEPENDENCIES
161
+ benchmark-ips
162
+ curly-templates!
163
+ genspec (>= 0.3.0)
164
+ github-markup
165
+ rails (~> 5.2.0)
166
+ railties (>= 4.2, < 6.2)
167
+ rake
168
+ redcarpet
169
+ rspec (>= 3)
170
+ rspec-rails
171
+ rspec_junit_formatter
172
+ stackprof
173
+ yard
174
+ yard-tomdoc
175
+
176
+ BUNDLED WITH
177
+ 2.2.5
@@ -0,0 +1,4 @@
1
+ eval_gemfile 'common.rb'
2
+
3
+ gem 'rails', '~> 6.0.0'
4
+ gem 'genspec', github: 'bquorning/genspec', branch: 'rails-6'
@@ -0,0 +1,199 @@
1
+ GIT
2
+ remote: https://github.com/bquorning/genspec.git
3
+ revision: ff33bec9df252a6340582676a471c574153abd71
4
+ branch: rails-6
5
+ specs:
6
+ genspec (0.3.2)
7
+ rspec (>= 2, < 4)
8
+ thor
9
+
10
+ PATH
11
+ remote: ..
12
+ specs:
13
+ curly-templates (3.0.0)
14
+ actionpack (>= 4.2, < 6.2)
15
+
16
+ GEM
17
+ remote: https://rubygems.org/
18
+ specs:
19
+ actioncable (6.0.3.4)
20
+ actionpack (= 6.0.3.4)
21
+ nio4r (~> 2.0)
22
+ websocket-driver (>= 0.6.1)
23
+ actionmailbox (6.0.3.4)
24
+ actionpack (= 6.0.3.4)
25
+ activejob (= 6.0.3.4)
26
+ activerecord (= 6.0.3.4)
27
+ activestorage (= 6.0.3.4)
28
+ activesupport (= 6.0.3.4)
29
+ mail (>= 2.7.1)
30
+ actionmailer (6.0.3.4)
31
+ actionpack (= 6.0.3.4)
32
+ actionview (= 6.0.3.4)
33
+ activejob (= 6.0.3.4)
34
+ mail (~> 2.5, >= 2.5.4)
35
+ rails-dom-testing (~> 2.0)
36
+ actionpack (6.0.3.4)
37
+ actionview (= 6.0.3.4)
38
+ activesupport (= 6.0.3.4)
39
+ rack (~> 2.0, >= 2.0.8)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.0)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (6.0.3.4)
44
+ actionpack (= 6.0.3.4)
45
+ activerecord (= 6.0.3.4)
46
+ activestorage (= 6.0.3.4)
47
+ activesupport (= 6.0.3.4)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (6.0.3.4)
50
+ activesupport (= 6.0.3.4)
51
+ builder (~> 3.1)
52
+ erubi (~> 1.4)
53
+ rails-dom-testing (~> 2.0)
54
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
55
+ activejob (6.0.3.4)
56
+ activesupport (= 6.0.3.4)
57
+ globalid (>= 0.3.6)
58
+ activemodel (6.0.3.4)
59
+ activesupport (= 6.0.3.4)
60
+ activerecord (6.0.3.4)
61
+ activemodel (= 6.0.3.4)
62
+ activesupport (= 6.0.3.4)
63
+ activestorage (6.0.3.4)
64
+ actionpack (= 6.0.3.4)
65
+ activejob (= 6.0.3.4)
66
+ activerecord (= 6.0.3.4)
67
+ marcel (~> 0.3.1)
68
+ activesupport (6.0.3.4)
69
+ concurrent-ruby (~> 1.0, >= 1.0.2)
70
+ i18n (>= 0.7, < 2)
71
+ minitest (~> 5.1)
72
+ tzinfo (~> 1.1)
73
+ zeitwerk (~> 2.2, >= 2.2.2)
74
+ benchmark-ips (2.8.4)
75
+ builder (3.2.4)
76
+ concurrent-ruby (1.1.7)
77
+ crass (1.0.6)
78
+ diff-lcs (1.4.4)
79
+ erubi (1.10.0)
80
+ github-markup (3.0.5)
81
+ globalid (0.4.2)
82
+ activesupport (>= 4.2.0)
83
+ i18n (1.8.7)
84
+ concurrent-ruby (~> 1.0)
85
+ loofah (2.9.0)
86
+ crass (~> 1.0.2)
87
+ nokogiri (>= 1.5.9)
88
+ mail (2.7.1)
89
+ mini_mime (>= 0.1.1)
90
+ marcel (0.3.3)
91
+ mimemagic (~> 0.3.2)
92
+ method_source (1.0.0)
93
+ mimemagic (0.3.5)
94
+ mini_mime (1.0.2)
95
+ minitest (5.14.3)
96
+ nio4r (2.5.4)
97
+ nokogiri (1.11.1-x86_64-darwin)
98
+ racc (~> 1.4)
99
+ nokogiri (1.11.1-x86_64-linux)
100
+ racc (~> 1.4)
101
+ racc (1.5.2)
102
+ rack (2.2.3)
103
+ rack-test (1.1.0)
104
+ rack (>= 1.0, < 3)
105
+ rails (6.0.3.4)
106
+ actioncable (= 6.0.3.4)
107
+ actionmailbox (= 6.0.3.4)
108
+ actionmailer (= 6.0.3.4)
109
+ actionpack (= 6.0.3.4)
110
+ actiontext (= 6.0.3.4)
111
+ actionview (= 6.0.3.4)
112
+ activejob (= 6.0.3.4)
113
+ activemodel (= 6.0.3.4)
114
+ activerecord (= 6.0.3.4)
115
+ activestorage (= 6.0.3.4)
116
+ activesupport (= 6.0.3.4)
117
+ bundler (>= 1.3.0)
118
+ railties (= 6.0.3.4)
119
+ sprockets-rails (>= 2.0.0)
120
+ rails-dom-testing (2.0.3)
121
+ activesupport (>= 4.2.0)
122
+ nokogiri (>= 1.6)
123
+ rails-html-sanitizer (1.3.0)
124
+ loofah (~> 2.3)
125
+ railties (6.0.3.4)
126
+ actionpack (= 6.0.3.4)
127
+ activesupport (= 6.0.3.4)
128
+ method_source
129
+ rake (>= 0.8.7)
130
+ thor (>= 0.20.3, < 2.0)
131
+ rake (13.0.3)
132
+ redcarpet (3.5.1)
133
+ rspec (3.10.0)
134
+ rspec-core (~> 3.10.0)
135
+ rspec-expectations (~> 3.10.0)
136
+ rspec-mocks (~> 3.10.0)
137
+ rspec-core (3.10.1)
138
+ rspec-support (~> 3.10.0)
139
+ rspec-expectations (3.10.1)
140
+ diff-lcs (>= 1.2.0, < 2.0)
141
+ rspec-support (~> 3.10.0)
142
+ rspec-mocks (3.10.1)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.10.0)
145
+ rspec-rails (4.0.2)
146
+ actionpack (>= 4.2)
147
+ activesupport (>= 4.2)
148
+ railties (>= 4.2)
149
+ rspec-core (~> 3.10)
150
+ rspec-expectations (~> 3.10)
151
+ rspec-mocks (~> 3.10)
152
+ rspec-support (~> 3.10)
153
+ rspec-support (3.10.1)
154
+ rspec_junit_formatter (0.4.1)
155
+ rspec-core (>= 2, < 4, != 2.12.0)
156
+ sprockets (4.0.2)
157
+ concurrent-ruby (~> 1.0)
158
+ rack (> 1, < 3)
159
+ sprockets-rails (3.2.2)
160
+ actionpack (>= 4.0)
161
+ activesupport (>= 4.0)
162
+ sprockets (>= 3.0.0)
163
+ stackprof (0.2.16)
164
+ thor (1.0.1)
165
+ thread_safe (0.3.6)
166
+ tomparse (0.4.2)
167
+ tzinfo (1.2.9)
168
+ thread_safe (~> 0.1)
169
+ websocket-driver (0.7.3)
170
+ websocket-extensions (>= 0.1.0)
171
+ websocket-extensions (0.1.5)
172
+ yard (0.9.26)
173
+ yard-tomdoc (0.7.1)
174
+ tomparse (>= 0.4.0)
175
+ yard
176
+ zeitwerk (2.4.2)
177
+
178
+ PLATFORMS
179
+ x86_64-darwin-19
180
+ x86_64-linux
181
+
182
+ DEPENDENCIES
183
+ benchmark-ips
184
+ curly-templates!
185
+ genspec!
186
+ github-markup
187
+ rails (~> 6.0.0)
188
+ railties (>= 4.2, < 6.2)
189
+ rake
190
+ redcarpet
191
+ rspec (>= 3)
192
+ rspec-rails
193
+ rspec_junit_formatter
194
+ stackprof
195
+ yard
196
+ yard-tomdoc
197
+
198
+ BUNDLED WITH
199
+ 2.2.5
@@ -0,0 +1,4 @@
1
+ eval_gemfile 'common.rb'
2
+
3
+ gem 'rails', '~> 6.1.0'
4
+ gem 'genspec', github: 'bquorning/genspec', branch: 'rails-6'
@@ -0,0 +1,202 @@
1
+ GIT
2
+ remote: https://github.com/bquorning/genspec.git
3
+ revision: ff33bec9df252a6340582676a471c574153abd71
4
+ branch: rails-6
5
+ specs:
6
+ genspec (0.3.2)
7
+ rspec (>= 2, < 4)
8
+ thor
9
+
10
+ PATH
11
+ remote: ..
12
+ specs:
13
+ curly-templates (3.0.0)
14
+ actionpack (>= 4.2, < 6.2)
15
+
16
+ GEM
17
+ remote: https://rubygems.org/
18
+ specs:
19
+ actioncable (6.1.1)
20
+ actionpack (= 6.1.1)
21
+ activesupport (= 6.1.1)
22
+ nio4r (~> 2.0)
23
+ websocket-driver (>= 0.6.1)
24
+ actionmailbox (6.1.1)
25
+ actionpack (= 6.1.1)
26
+ activejob (= 6.1.1)
27
+ activerecord (= 6.1.1)
28
+ activestorage (= 6.1.1)
29
+ activesupport (= 6.1.1)
30
+ mail (>= 2.7.1)
31
+ actionmailer (6.1.1)
32
+ actionpack (= 6.1.1)
33
+ actionview (= 6.1.1)
34
+ activejob (= 6.1.1)
35
+ activesupport (= 6.1.1)
36
+ mail (~> 2.5, >= 2.5.4)
37
+ rails-dom-testing (~> 2.0)
38
+ actionpack (6.1.1)
39
+ actionview (= 6.1.1)
40
+ activesupport (= 6.1.1)
41
+ rack (~> 2.0, >= 2.0.9)
42
+ rack-test (>= 0.6.3)
43
+ rails-dom-testing (~> 2.0)
44
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
45
+ actiontext (6.1.1)
46
+ actionpack (= 6.1.1)
47
+ activerecord (= 6.1.1)
48
+ activestorage (= 6.1.1)
49
+ activesupport (= 6.1.1)
50
+ nokogiri (>= 1.8.5)
51
+ actionview (6.1.1)
52
+ activesupport (= 6.1.1)
53
+ builder (~> 3.1)
54
+ erubi (~> 1.4)
55
+ rails-dom-testing (~> 2.0)
56
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
57
+ activejob (6.1.1)
58
+ activesupport (= 6.1.1)
59
+ globalid (>= 0.3.6)
60
+ activemodel (6.1.1)
61
+ activesupport (= 6.1.1)
62
+ activerecord (6.1.1)
63
+ activemodel (= 6.1.1)
64
+ activesupport (= 6.1.1)
65
+ activestorage (6.1.1)
66
+ actionpack (= 6.1.1)
67
+ activejob (= 6.1.1)
68
+ activerecord (= 6.1.1)
69
+ activesupport (= 6.1.1)
70
+ marcel (~> 0.3.1)
71
+ mimemagic (~> 0.3.2)
72
+ activesupport (6.1.1)
73
+ concurrent-ruby (~> 1.0, >= 1.0.2)
74
+ i18n (>= 1.6, < 2)
75
+ minitest (>= 5.1)
76
+ tzinfo (~> 2.0)
77
+ zeitwerk (~> 2.3)
78
+ benchmark-ips (2.8.4)
79
+ builder (3.2.4)
80
+ concurrent-ruby (1.1.7)
81
+ crass (1.0.6)
82
+ diff-lcs (1.4.4)
83
+ erubi (1.10.0)
84
+ github-markup (3.0.5)
85
+ globalid (0.4.2)
86
+ activesupport (>= 4.2.0)
87
+ i18n (1.8.7)
88
+ concurrent-ruby (~> 1.0)
89
+ loofah (2.9.0)
90
+ crass (~> 1.0.2)
91
+ nokogiri (>= 1.5.9)
92
+ mail (2.7.1)
93
+ mini_mime (>= 0.1.1)
94
+ marcel (0.3.3)
95
+ mimemagic (~> 0.3.2)
96
+ method_source (1.0.0)
97
+ mimemagic (0.3.5)
98
+ mini_mime (1.0.2)
99
+ minitest (5.14.3)
100
+ nio4r (2.5.4)
101
+ nokogiri (1.11.1-x86_64-darwin)
102
+ racc (~> 1.4)
103
+ nokogiri (1.11.1-x86_64-linux)
104
+ racc (~> 1.4)
105
+ racc (1.5.2)
106
+ rack (2.2.3)
107
+ rack-test (1.1.0)
108
+ rack (>= 1.0, < 3)
109
+ rails (6.1.1)
110
+ actioncable (= 6.1.1)
111
+ actionmailbox (= 6.1.1)
112
+ actionmailer (= 6.1.1)
113
+ actionpack (= 6.1.1)
114
+ actiontext (= 6.1.1)
115
+ actionview (= 6.1.1)
116
+ activejob (= 6.1.1)
117
+ activemodel (= 6.1.1)
118
+ activerecord (= 6.1.1)
119
+ activestorage (= 6.1.1)
120
+ activesupport (= 6.1.1)
121
+ bundler (>= 1.15.0)
122
+ railties (= 6.1.1)
123
+ sprockets-rails (>= 2.0.0)
124
+ rails-dom-testing (2.0.3)
125
+ activesupport (>= 4.2.0)
126
+ nokogiri (>= 1.6)
127
+ rails-html-sanitizer (1.3.0)
128
+ loofah (~> 2.3)
129
+ railties (6.1.1)
130
+ actionpack (= 6.1.1)
131
+ activesupport (= 6.1.1)
132
+ method_source
133
+ rake (>= 0.8.7)
134
+ thor (~> 1.0)
135
+ rake (13.0.3)
136
+ redcarpet (3.5.1)
137
+ rspec (3.10.0)
138
+ rspec-core (~> 3.10.0)
139
+ rspec-expectations (~> 3.10.0)
140
+ rspec-mocks (~> 3.10.0)
141
+ rspec-core (3.10.1)
142
+ rspec-support (~> 3.10.0)
143
+ rspec-expectations (3.10.1)
144
+ diff-lcs (>= 1.2.0, < 2.0)
145
+ rspec-support (~> 3.10.0)
146
+ rspec-mocks (3.10.1)
147
+ diff-lcs (>= 1.2.0, < 2.0)
148
+ rspec-support (~> 3.10.0)
149
+ rspec-rails (4.0.2)
150
+ actionpack (>= 4.2)
151
+ activesupport (>= 4.2)
152
+ railties (>= 4.2)
153
+ rspec-core (~> 3.10)
154
+ rspec-expectations (~> 3.10)
155
+ rspec-mocks (~> 3.10)
156
+ rspec-support (~> 3.10)
157
+ rspec-support (3.10.1)
158
+ rspec_junit_formatter (0.4.1)
159
+ rspec-core (>= 2, < 4, != 2.12.0)
160
+ sprockets (4.0.2)
161
+ concurrent-ruby (~> 1.0)
162
+ rack (> 1, < 3)
163
+ sprockets-rails (3.2.2)
164
+ actionpack (>= 4.0)
165
+ activesupport (>= 4.0)
166
+ sprockets (>= 3.0.0)
167
+ stackprof (0.2.16)
168
+ thor (1.0.1)
169
+ tomparse (0.4.2)
170
+ tzinfo (2.0.4)
171
+ concurrent-ruby (~> 1.0)
172
+ websocket-driver (0.7.3)
173
+ websocket-extensions (>= 0.1.0)
174
+ websocket-extensions (0.1.5)
175
+ yard (0.9.26)
176
+ yard-tomdoc (0.7.1)
177
+ tomparse (>= 0.4.0)
178
+ yard
179
+ zeitwerk (2.4.2)
180
+
181
+ PLATFORMS
182
+ x86_64-darwin-19
183
+ x86_64-linux
184
+
185
+ DEPENDENCIES
186
+ benchmark-ips
187
+ curly-templates!
188
+ genspec!
189
+ github-markup
190
+ rails (~> 6.1.0)
191
+ railties (>= 4.2, < 6.2)
192
+ rake
193
+ redcarpet
194
+ rspec (>= 3)
195
+ rspec-rails
196
+ rspec_junit_formatter
197
+ stackprof
198
+ yard
199
+ yard-tomdoc
200
+
201
+ BUNDLED WITH
202
+ 2.2.5