curly-templates 2.6.5 → 3.1.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
2
  SHA256:
3
- metadata.gz: 548e059783b44b0ad9938e20cb5cd1578b3ec0bc18251b60df09fd2edac9a0d4
4
- data.tar.gz: 49b8beba4341b43ab4f0c7f06802ef2978ffa7d8d196cf2951a16e0ae34b2708
3
+ metadata.gz: c66a7386e2cf94f19a47f42cf45921da5d6f1718d6ce96c1b8c827fec94adc2d
4
+ data.tar.gz: 228a56a02717629dcf4e1ed02aebc52d6c173130a8c1fe4b04ed593659fc3f07
5
5
  SHA512:
6
- metadata.gz: 0a4658de021b4ef984ed2be68f73723fb8dfe878b2ac6c935f9e5a5b2be63fed9a39bd8ab4d84266d39fd43c2b5c9a588d6dde208d20a3313a73a751e22558ba
7
- data.tar.gz: 7c77e535bb23d2397ae318cb54bcc5b4a322f14cd3422ccf89d9fc8df206a13f6d730025444381c1ab30a6fd1f437e5e9bb186455dcdf89d4943876899fcd183
6
+ metadata.gz: fc9d9de77feaaa8955c8a0afcaed37e7c33cc9f2791ef4b9d5e61a087705ecd7700374f8675939fee87a3f00fbebce486d5f4fec8898f38a0aac8867a4e4fc63
7
+ data.tar.gz: 6f9a8420265bf7ff3601a4a573d7eac0b48b18635e8ebf9930307e868e0512448f18f167e526138c2bde89c4706a2a046f03fca209e3c652822d66b6d7dfcd52
@@ -0,0 +1,58 @@
1
+ name: CI
2
+
3
+ on: push
4
+
5
+ jobs:
6
+ specs:
7
+ name: Ruby ${{ matrix.ruby }} using ${{ matrix.gemfile }}
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby:
15
+ - '2.6'
16
+ - '2.7'
17
+ - '3.0'
18
+ - '3.1'
19
+ gemfile:
20
+ - rails4.2
21
+ - rails5.1
22
+ - rails5.2
23
+ - rails6.0
24
+ - rails6.1
25
+ - rails7.0
26
+ exclude:
27
+ - {ruby: '2.6', gemfile: rails7.0}
28
+ - {ruby: '2.7', gemfile: rails4.2}
29
+ - {ruby: '3.0', gemfile: rails4.2}
30
+ - {ruby: '3.0', gemfile: rails5.1}
31
+ - {ruby: '3.0', gemfile: rails5.2}
32
+ - {ruby: '3.0', gemfile: rails6.0}
33
+ - {ruby: '3.1', gemfile: rails4.2}
34
+ - {ruby: '3.1', gemfile: rails5.1}
35
+ - {ruby: '3.1', gemfile: rails5.2}
36
+ - {ruby: '3.1', gemfile: rails6.0}
37
+ steps:
38
+ - uses: zendesk/checkout@v3
39
+ - uses: zendesk/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby }}
42
+ bundler-cache: true
43
+ - run: bundle exec rspec
44
+
45
+ specs_successful:
46
+ name: Specs passing?
47
+ needs: specs
48
+ if: always()
49
+ runs-on: ubuntu-latest
50
+ steps:
51
+ - run: |
52
+ if ${{ needs.specs.result == 'success' }}
53
+ then
54
+ echo "All specs pass"
55
+ else
56
+ echo "Some specs failed"
57
+ false
58
+ fi
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ### Unreleased
2
2
 
3
+ ### Curly 3.1.0 (November, 21, 2022)
4
+
5
+ * Add support for Ruby 3.0 & 3.1
6
+ * Add support for Rails 7.0
7
+
8
+ ### Curly 3.0.0 (January 19, 2021)
9
+
10
+ * Add support for Rails 6.0 and 6.1.
11
+ * Remove support for Rails versions below 4.2.
12
+
3
13
  ### Curly 2.6.5 (May 23, 2018)
4
14
 
5
15
  * Add support for Rails 5.2.
data/Gemfile CHANGED
@@ -1,14 +1 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- platform :ruby do
6
- gem 'yard'
7
- gem 'yard-tomdoc'
8
- gem 'redcarpet'
9
- gem 'github-markup'
10
- gem 'rails', '~> 5.2.0', require: false
11
- gem 'rspec-rails', require: false
12
- gem 'benchmark-ips', require: false
13
- gem 'stackprof', require: false
14
- end
1
+ eval_gemfile 'gemfiles/rails5.2.gemfile'
data/README.md CHANGED
@@ -565,7 +565,7 @@ Gemfile. Given the following presenter:
565
565
  # app/presenters/posts/show_presenter.rb
566
566
  class Posts::ShowPresenter < Curly::Presenter
567
567
  presents :post
568
-
568
+
569
569
  def body
570
570
  Markdown.render(@post.body)
571
571
  end
@@ -788,8 +788,7 @@ Thanks to [Zendesk](http://zendesk.com/) for sponsoring the work on Curly.
788
788
  Build Status
789
789
  ------------
790
790
 
791
- [![Build Status](https://circleci.com/gh/zendesk/curly.png?circle-token=:circle-tok)](https://circleci.com/gh/zendesk/curly.png)
792
-
791
+ [![Build Status](https://github.com/zendesk/curly/workflows/CI/badge.svg)](https://github.com/zendesk/curly/actions?query=workflow%3ACI)
793
792
 
794
793
  Copyright and License
795
794
  ---------------------
@@ -20,13 +20,12 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.rdoc_options = ["--charset=UTF-8"]
22
22
 
23
- s.add_dependency("actionpack", [">= 3.1", "< 6.0"])
23
+ s.add_dependency("actionpack", [">= 4.2", "< 7.1"])
24
+ s.add_dependency("sorted_set")
24
25
 
25
- s.add_development_dependency("railties", [">= 3.1", "< 6.0"])
26
+ s.add_development_dependency("railties", [">= 4.2", "< 7.1"])
26
27
  s.add_development_dependency("rake")
27
28
  s.add_development_dependency("rspec", ">= 3")
28
- s.add_development_dependency("rspec_junit_formatter")
29
- s.add_development_dependency("genspec", ">= 0.3.0")
30
29
 
31
30
  s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(perf|spec)/}) }
32
31
  s.test_files = s.files.select { |path| path =~ /^spec\/.*_spec\.rb/ }
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ platform :ruby do
6
+ gem 'yard'
7
+ gem 'yard-tomdoc'
8
+ gem 'redcarpet'
9
+ gem 'github-markup'
10
+ gem 'rspec-rails', require: false
11
+ gem 'benchmark-ips', require: false
12
+ gem 'stackprof', require: false
13
+ end
@@ -0,0 +1,4 @@
1
+ eval_gemfile 'common.rb'
2
+
3
+ gem 'rails', '~> 4.2.0'
4
+ gem 'genspec', '>= 0.3.0'
@@ -0,0 +1,172 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ curly-templates (3.1.0)
5
+ actionpack (>= 4.2, < 7.1)
6
+ sorted_set
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.11.3)
12
+ actionpack (= 4.2.11.3)
13
+ actionview (= 4.2.11.3)
14
+ activejob (= 4.2.11.3)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.11.3)
18
+ actionview (= 4.2.11.3)
19
+ activesupport (= 4.2.11.3)
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.11.3)
25
+ activesupport (= 4.2.11.3)
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.3)
30
+ activejob (4.2.11.3)
31
+ activesupport (= 4.2.11.3)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.11.3)
34
+ activesupport (= 4.2.11.3)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.11.3)
37
+ activemodel (= 4.2.11.3)
38
+ activesupport (= 4.2.11.3)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.11.3)
41
+ i18n (~> 0.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ arel (6.0.4)
46
+ benchmark-ips (2.10.0)
47
+ builder (3.2.4)
48
+ concurrent-ruby (1.1.10)
49
+ crass (1.0.6)
50
+ diff-lcs (1.5.0)
51
+ erubis (2.7.0)
52
+ genspec (0.3.2)
53
+ rspec (>= 2, < 4)
54
+ thor
55
+ github-markup (4.0.1)
56
+ globalid (0.4.2)
57
+ activesupport (>= 4.2.0)
58
+ i18n (0.9.5)
59
+ concurrent-ruby (~> 1.0)
60
+ loofah (2.19.0)
61
+ crass (~> 1.0.2)
62
+ nokogiri (>= 1.5.9)
63
+ mail (2.7.1)
64
+ mini_mime (>= 0.1.1)
65
+ mini_mime (1.1.2)
66
+ mini_portile2 (2.8.0)
67
+ minitest (5.16.3)
68
+ nokogiri (1.13.9)
69
+ mini_portile2 (~> 2.8.0)
70
+ racc (~> 1.4)
71
+ nokogiri (1.13.9-x86_64-darwin)
72
+ racc (~> 1.4)
73
+ nokogiri (1.13.9-x86_64-linux)
74
+ racc (~> 1.4)
75
+ racc (1.6.0)
76
+ rack (1.6.13)
77
+ rack-test (0.6.3)
78
+ rack (>= 1.0)
79
+ rails (4.2.11.3)
80
+ actionmailer (= 4.2.11.3)
81
+ actionpack (= 4.2.11.3)
82
+ actionview (= 4.2.11.3)
83
+ activejob (= 4.2.11.3)
84
+ activemodel (= 4.2.11.3)
85
+ activerecord (= 4.2.11.3)
86
+ activesupport (= 4.2.11.3)
87
+ bundler (>= 1.3.0, < 2.0)
88
+ railties (= 4.2.11.3)
89
+ sprockets-rails
90
+ rails-deprecated_sanitizer (1.0.4)
91
+ activesupport (>= 4.2.0.alpha)
92
+ rails-dom-testing (1.0.9)
93
+ activesupport (>= 4.2.0, < 5.0)
94
+ nokogiri (~> 1.6)
95
+ rails-deprecated_sanitizer (>= 1.0.1)
96
+ rails-html-sanitizer (1.4.3)
97
+ loofah (~> 2.3)
98
+ railties (4.2.11.3)
99
+ actionpack (= 4.2.11.3)
100
+ activesupport (= 4.2.11.3)
101
+ rake (>= 0.8.7)
102
+ thor (>= 0.18.1, < 2.0)
103
+ rake (13.0.6)
104
+ rbtree (0.4.5)
105
+ redcarpet (3.5.1)
106
+ rspec (3.12.0)
107
+ rspec-core (~> 3.12.0)
108
+ rspec-expectations (~> 3.12.0)
109
+ rspec-mocks (~> 3.12.0)
110
+ rspec-core (3.12.0)
111
+ rspec-support (~> 3.12.0)
112
+ rspec-expectations (3.12.0)
113
+ diff-lcs (>= 1.2.0, < 2.0)
114
+ rspec-support (~> 3.12.0)
115
+ rspec-mocks (3.12.0)
116
+ diff-lcs (>= 1.2.0, < 2.0)
117
+ rspec-support (~> 3.12.0)
118
+ rspec-rails (4.1.2)
119
+ actionpack (>= 4.2)
120
+ activesupport (>= 4.2)
121
+ railties (>= 4.2)
122
+ rspec-core (~> 3.10)
123
+ rspec-expectations (~> 3.10)
124
+ rspec-mocks (~> 3.10)
125
+ rspec-support (~> 3.10)
126
+ rspec-support (3.12.0)
127
+ set (1.0.3)
128
+ sorted_set (1.0.3)
129
+ rbtree
130
+ set (~> 1.0)
131
+ sprockets (4.1.1)
132
+ concurrent-ruby (~> 1.0)
133
+ rack (> 1, < 3)
134
+ sprockets-rails (3.2.2)
135
+ actionpack (>= 4.0)
136
+ activesupport (>= 4.0)
137
+ sprockets (>= 3.0.0)
138
+ stackprof (0.2.22)
139
+ thor (1.2.1)
140
+ thread_safe (0.3.6)
141
+ tomparse (0.4.2)
142
+ tzinfo (1.2.10)
143
+ thread_safe (~> 0.1)
144
+ webrick (1.7.0)
145
+ yard (0.9.28)
146
+ webrick (~> 1.7.0)
147
+ yard-tomdoc (0.7.1)
148
+ tomparse (>= 0.4.0)
149
+ yard
150
+
151
+ PLATFORMS
152
+ ruby
153
+ x86_64-darwin
154
+ x86_64-linux
155
+
156
+ DEPENDENCIES
157
+ benchmark-ips
158
+ curly-templates!
159
+ genspec (>= 0.3.0)
160
+ github-markup
161
+ rails (~> 4.2.0)
162
+ railties (>= 4.2, < 7.1)
163
+ rake
164
+ redcarpet
165
+ rspec (>= 3)
166
+ rspec-rails
167
+ stackprof
168
+ yard
169
+ yard-tomdoc
170
+
171
+ BUNDLED WITH
172
+ 1.17.3
@@ -0,0 +1,4 @@
1
+ eval_gemfile 'common.rb'
2
+
3
+ gem 'rails', '~> 5.1.0'
4
+ gem 'genspec', '>= 0.3.0'
@@ -0,0 +1,179 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ curly-templates (3.1.0)
5
+ actionpack (>= 4.2, < 7.1)
6
+ sorted_set
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.7)
12
+ actionpack (= 5.1.7)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.7)
16
+ actionpack (= 5.1.7)
17
+ actionview (= 5.1.7)
18
+ activejob (= 5.1.7)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.7)
22
+ actionview (= 5.1.7)
23
+ activesupport (= 5.1.7)
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.1.7)
29
+ activesupport (= 5.1.7)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.7)
35
+ activesupport (= 5.1.7)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.7)
38
+ activesupport (= 5.1.7)
39
+ activerecord (5.1.7)
40
+ activemodel (= 5.1.7)
41
+ activesupport (= 5.1.7)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.7)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (>= 0.7, < 2)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ arel (8.0.0)
49
+ benchmark-ips (2.10.0)
50
+ builder (3.2.4)
51
+ concurrent-ruby (1.1.10)
52
+ crass (1.0.6)
53
+ diff-lcs (1.5.0)
54
+ erubi (1.11.0)
55
+ genspec (0.3.2)
56
+ rspec (>= 2, < 4)
57
+ thor
58
+ github-markup (4.0.1)
59
+ globalid (1.0.0)
60
+ activesupport (>= 5.0)
61
+ i18n (1.12.0)
62
+ concurrent-ruby (~> 1.0)
63
+ loofah (2.19.0)
64
+ crass (~> 1.0.2)
65
+ nokogiri (>= 1.5.9)
66
+ mail (2.7.1)
67
+ mini_mime (>= 0.1.1)
68
+ method_source (1.0.0)
69
+ mini_mime (1.1.2)
70
+ mini_portile2 (2.8.0)
71
+ minitest (5.16.3)
72
+ nio4r (2.5.8)
73
+ nokogiri (1.13.9)
74
+ mini_portile2 (~> 2.8.0)
75
+ racc (~> 1.4)
76
+ nokogiri (1.13.9-x86_64-darwin)
77
+ racc (~> 1.4)
78
+ nokogiri (1.13.9-x86_64-linux)
79
+ racc (~> 1.4)
80
+ racc (1.6.0)
81
+ rack (2.2.4)
82
+ rack-test (2.0.2)
83
+ rack (>= 1.3)
84
+ rails (5.1.7)
85
+ actioncable (= 5.1.7)
86
+ actionmailer (= 5.1.7)
87
+ actionpack (= 5.1.7)
88
+ actionview (= 5.1.7)
89
+ activejob (= 5.1.7)
90
+ activemodel (= 5.1.7)
91
+ activerecord (= 5.1.7)
92
+ activesupport (= 5.1.7)
93
+ bundler (>= 1.3.0)
94
+ railties (= 5.1.7)
95
+ sprockets-rails (>= 2.0.0)
96
+ rails-dom-testing (2.0.3)
97
+ activesupport (>= 4.2.0)
98
+ nokogiri (>= 1.6)
99
+ rails-html-sanitizer (1.4.3)
100
+ loofah (~> 2.3)
101
+ railties (5.1.7)
102
+ actionpack (= 5.1.7)
103
+ activesupport (= 5.1.7)
104
+ method_source
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.18.1, < 2.0)
107
+ rake (13.0.6)
108
+ rbtree (0.4.5)
109
+ redcarpet (3.5.1)
110
+ rspec (3.12.0)
111
+ rspec-core (~> 3.12.0)
112
+ rspec-expectations (~> 3.12.0)
113
+ rspec-mocks (~> 3.12.0)
114
+ rspec-core (3.12.0)
115
+ rspec-support (~> 3.12.0)
116
+ rspec-expectations (3.12.0)
117
+ diff-lcs (>= 1.2.0, < 2.0)
118
+ rspec-support (~> 3.12.0)
119
+ rspec-mocks (3.12.0)
120
+ diff-lcs (>= 1.2.0, < 2.0)
121
+ rspec-support (~> 3.12.0)
122
+ rspec-rails (4.1.2)
123
+ actionpack (>= 4.2)
124
+ activesupport (>= 4.2)
125
+ railties (>= 4.2)
126
+ rspec-core (~> 3.10)
127
+ rspec-expectations (~> 3.10)
128
+ rspec-mocks (~> 3.10)
129
+ rspec-support (~> 3.10)
130
+ rspec-support (3.12.0)
131
+ set (1.0.3)
132
+ sorted_set (1.0.3)
133
+ rbtree
134
+ set (~> 1.0)
135
+ sprockets (4.1.1)
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.22)
143
+ thor (1.2.1)
144
+ thread_safe (0.3.6)
145
+ tomparse (0.4.2)
146
+ tzinfo (1.2.10)
147
+ thread_safe (~> 0.1)
148
+ webrick (1.7.0)
149
+ websocket-driver (0.6.5)
150
+ websocket-extensions (>= 0.1.0)
151
+ websocket-extensions (0.1.5)
152
+ yard (0.9.28)
153
+ webrick (~> 1.7.0)
154
+ yard-tomdoc (0.7.1)
155
+ tomparse (>= 0.4.0)
156
+ yard
157
+
158
+ PLATFORMS
159
+ ruby
160
+ x86_64-darwin
161
+ x86_64-linux
162
+
163
+ DEPENDENCIES
164
+ benchmark-ips
165
+ curly-templates!
166
+ genspec (>= 0.3.0)
167
+ github-markup
168
+ rails (~> 5.1.0)
169
+ railties (>= 4.2, < 7.1)
170
+ rake
171
+ redcarpet
172
+ rspec (>= 3)
173
+ rspec-rails
174
+ stackprof
175
+ yard
176
+ yard-tomdoc
177
+
178
+ BUNDLED WITH
179
+ 2.3.25
@@ -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,185 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ curly-templates (3.1.0)
5
+ actionpack (>= 4.2, < 7.1)
6
+ sorted_set
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.8.1)
12
+ actionpack (= 5.2.8.1)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.8.1)
16
+ actionpack (= 5.2.8.1)
17
+ actionview (= 5.2.8.1)
18
+ activejob (= 5.2.8.1)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.8.1)
22
+ actionview (= 5.2.8.1)
23
+ activesupport (= 5.2.8.1)
24
+ rack (~> 2.0, >= 2.0.8)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.8.1)
29
+ activesupport (= 5.2.8.1)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.2.8.1)
35
+ activesupport (= 5.2.8.1)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.8.1)
38
+ activesupport (= 5.2.8.1)
39
+ activerecord (5.2.8.1)
40
+ activemodel (= 5.2.8.1)
41
+ activesupport (= 5.2.8.1)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.8.1)
44
+ actionpack (= 5.2.8.1)
45
+ activerecord (= 5.2.8.1)
46
+ marcel (~> 1.0.0)
47
+ activesupport (5.2.8.1)
48
+ concurrent-ruby (~> 1.0, >= 1.0.2)
49
+ i18n (>= 0.7, < 2)
50
+ minitest (~> 5.1)
51
+ tzinfo (~> 1.1)
52
+ arel (9.0.0)
53
+ benchmark-ips (2.10.0)
54
+ builder (3.2.4)
55
+ concurrent-ruby (1.1.10)
56
+ crass (1.0.6)
57
+ diff-lcs (1.5.0)
58
+ erubi (1.11.0)
59
+ genspec (0.3.2)
60
+ rspec (>= 2, < 4)
61
+ thor
62
+ github-markup (4.0.1)
63
+ globalid (1.0.0)
64
+ activesupport (>= 5.0)
65
+ i18n (1.12.0)
66
+ concurrent-ruby (~> 1.0)
67
+ loofah (2.19.0)
68
+ crass (~> 1.0.2)
69
+ nokogiri (>= 1.5.9)
70
+ mail (2.7.1)
71
+ mini_mime (>= 0.1.1)
72
+ marcel (1.0.2)
73
+ method_source (1.0.0)
74
+ mini_mime (1.1.2)
75
+ mini_portile2 (2.8.0)
76
+ minitest (5.16.3)
77
+ nio4r (2.5.8)
78
+ nokogiri (1.13.9)
79
+ mini_portile2 (~> 2.8.0)
80
+ racc (~> 1.4)
81
+ nokogiri (1.13.9-x86_64-darwin)
82
+ racc (~> 1.4)
83
+ nokogiri (1.13.9-x86_64-linux)
84
+ racc (~> 1.4)
85
+ racc (1.6.0)
86
+ rack (2.2.4)
87
+ rack-test (2.0.2)
88
+ rack (>= 1.3)
89
+ rails (5.2.8.1)
90
+ actioncable (= 5.2.8.1)
91
+ actionmailer (= 5.2.8.1)
92
+ actionpack (= 5.2.8.1)
93
+ actionview (= 5.2.8.1)
94
+ activejob (= 5.2.8.1)
95
+ activemodel (= 5.2.8.1)
96
+ activerecord (= 5.2.8.1)
97
+ activestorage (= 5.2.8.1)
98
+ activesupport (= 5.2.8.1)
99
+ bundler (>= 1.3.0)
100
+ railties (= 5.2.8.1)
101
+ sprockets-rails (>= 2.0.0)
102
+ rails-dom-testing (2.0.3)
103
+ activesupport (>= 4.2.0)
104
+ nokogiri (>= 1.6)
105
+ rails-html-sanitizer (1.4.3)
106
+ loofah (~> 2.3)
107
+ railties (5.2.8.1)
108
+ actionpack (= 5.2.8.1)
109
+ activesupport (= 5.2.8.1)
110
+ method_source
111
+ rake (>= 0.8.7)
112
+ thor (>= 0.19.0, < 2.0)
113
+ rake (13.0.6)
114
+ rbtree (0.4.5)
115
+ redcarpet (3.5.1)
116
+ rspec (3.12.0)
117
+ rspec-core (~> 3.12.0)
118
+ rspec-expectations (~> 3.12.0)
119
+ rspec-mocks (~> 3.12.0)
120
+ rspec-core (3.12.0)
121
+ rspec-support (~> 3.12.0)
122
+ rspec-expectations (3.12.0)
123
+ diff-lcs (>= 1.2.0, < 2.0)
124
+ rspec-support (~> 3.12.0)
125
+ rspec-mocks (3.12.0)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.12.0)
128
+ rspec-rails (5.1.2)
129
+ actionpack (>= 5.2)
130
+ activesupport (>= 5.2)
131
+ railties (>= 5.2)
132
+ rspec-core (~> 3.10)
133
+ rspec-expectations (~> 3.10)
134
+ rspec-mocks (~> 3.10)
135
+ rspec-support (~> 3.10)
136
+ rspec-support (3.12.0)
137
+ set (1.0.3)
138
+ sorted_set (1.0.3)
139
+ rbtree
140
+ set (~> 1.0)
141
+ sprockets (4.1.1)
142
+ concurrent-ruby (~> 1.0)
143
+ rack (> 1, < 3)
144
+ sprockets-rails (3.4.2)
145
+ actionpack (>= 5.2)
146
+ activesupport (>= 5.2)
147
+ sprockets (>= 3.0.0)
148
+ stackprof (0.2.22)
149
+ thor (1.2.1)
150
+ thread_safe (0.3.6)
151
+ tomparse (0.4.2)
152
+ tzinfo (1.2.10)
153
+ thread_safe (~> 0.1)
154
+ webrick (1.7.0)
155
+ websocket-driver (0.7.5)
156
+ websocket-extensions (>= 0.1.0)
157
+ websocket-extensions (0.1.5)
158
+ yard (0.9.28)
159
+ webrick (~> 1.7.0)
160
+ yard-tomdoc (0.7.1)
161
+ tomparse (>= 0.4.0)
162
+ yard
163
+
164
+ PLATFORMS
165
+ ruby
166
+ x86_64-darwin
167
+ x86_64-linux
168
+
169
+ DEPENDENCIES
170
+ benchmark-ips
171
+ curly-templates!
172
+ genspec (>= 0.3.0)
173
+ github-markup
174
+ rails (~> 5.2.0)
175
+ railties (>= 4.2, < 7.1)
176
+ rake
177
+ redcarpet
178
+ rspec (>= 3)
179
+ rspec-rails
180
+ stackprof
181
+ yard
182
+ yard-tomdoc
183
+
184
+ BUNDLED WITH
185
+ 2.3.25