curly-templates 3.3.0 → 3.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +4 -8
- data/.github/workflows/test_against_rails_main.yml +27 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +1 -1
- data/curly-templates.gemspec +3 -6
- data/gemfiles/rails6.1.gemfile.lock +2 -3
- data/gemfiles/rails7.0.gemfile.lock +2 -3
- data/gemfiles/rails7.1.gemfile.lock +3 -6
- data/gemfiles/rails_main.gemfile +4 -0
- data/lib/curly/template_handler.rb +3 -11
- data/lib/curly/version.rb +1 -1
- metadata +9 -39
- data/gemfiles/rails5.1.gemfile +0 -4
- data/gemfiles/rails5.1.gemfile.lock +0 -187
- data/gemfiles/rails5.2.gemfile +0 -4
- data/gemfiles/rails5.2.gemfile.lock +0 -193
- data/gemfiles/rails6.0.gemfile +0 -4
- data/gemfiles/rails6.0.gemfile.lock +0 -215
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e5eb06d077da630f4906cd245364a5a41c4c15d832b33006ad5aa6c1306c20b
|
4
|
+
data.tar.gz: c60710995405ccd191fb30e315c09d3e22b64ecb3ff73ee6793ef419770a10ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09959baad351b76a11fb036f51a512bf6bb300b85ba5ce1c104aaa1fcc07e73569fa7004f1fc257b1eaee08133dc8ca36a211e78122ceafafd842b69eade0fe7'
|
7
|
+
data.tar.gz: 6d0ceb4389a05b517c3d935b0cfa4252f0fa843ebb9fbe5f8830f6a2d53cebb310867933ea9bba365c1c432b6243f96f36656f307f301abf6b911ba49f23ef42
|
data/.github/workflows/ci.yml
CHANGED
@@ -12,21 +12,17 @@ jobs:
|
|
12
12
|
fail-fast: false
|
13
13
|
matrix:
|
14
14
|
ruby:
|
15
|
-
- '2.7'
|
16
|
-
- '3.0'
|
17
15
|
- '3.1'
|
18
16
|
- '3.2'
|
17
|
+
- '3.3'
|
19
18
|
gemfile:
|
20
19
|
- rails6.1
|
21
20
|
- rails7.0
|
22
21
|
- rails7.1
|
23
|
-
|
24
|
-
- {ruby: '2.7', gemfile: rails5.1}
|
25
|
-
- {ruby: '2.7', gemfile: rails5.2}
|
26
|
-
- {ruby: '2.7', gemfile: rails6.0}
|
22
|
+
- rails_main
|
27
23
|
steps:
|
28
|
-
- uses:
|
29
|
-
- uses:
|
24
|
+
- uses: actions/checkout@v4
|
25
|
+
- uses: ruby/setup-ruby@v1
|
30
26
|
with:
|
31
27
|
ruby-version: ${{ matrix.ruby }}
|
32
28
|
bundler-cache: true
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Test against Rails main
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "0 0 * * *" # Run every day at 00:00 UTC
|
6
|
+
workflow_dispatch:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
specs:
|
10
|
+
name: Ruby ${{ matrix.ruby }} using ${{ matrix.gemfile }}
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
env:
|
13
|
+
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
14
|
+
strategy:
|
15
|
+
fail-fast: false
|
16
|
+
matrix:
|
17
|
+
ruby:
|
18
|
+
- '3.3'
|
19
|
+
gemfile:
|
20
|
+
- rails_main
|
21
|
+
steps:
|
22
|
+
- uses: zendesk/checkout@v4
|
23
|
+
- uses: zendesk/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: ${{ matrix.ruby }}
|
26
|
+
bundler-cache: true
|
27
|
+
- run: bundle exec rspec
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -1 +1 @@
|
|
1
|
-
eval_gemfile 'gemfiles/
|
1
|
+
eval_gemfile 'gemfiles/rails6.1.gemfile'
|
data/curly-templates.gemspec
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
require './lib/curly/version'
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.specification_version = 2 if s.respond_to? :specification_version=
|
5
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
6
|
-
s.rubygems_version = '1.3.5'
|
7
|
-
|
8
4
|
s.name = 'curly-templates'
|
9
5
|
s.version = Curly::VERSION
|
10
6
|
|
@@ -20,10 +16,11 @@ Gem::Specification.new do |s|
|
|
20
16
|
|
21
17
|
s.rdoc_options = ["--charset=UTF-8"]
|
22
18
|
|
23
|
-
s.
|
19
|
+
s.required_ruby_version = ">= 3.1"
|
20
|
+
|
21
|
+
s.add_dependency("actionpack", ">= 6.1")
|
24
22
|
s.add_dependency("sorted_set")
|
25
23
|
|
26
|
-
s.add_development_dependency("railties", [">= 5.1", "< 7.2"])
|
27
24
|
s.add_development_dependency("rake")
|
28
25
|
s.add_development_dependency("rspec", ">= 3")
|
29
26
|
|
@@ -10,8 +10,8 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: ..
|
12
12
|
specs:
|
13
|
-
curly-templates (3.
|
14
|
-
actionpack (>=
|
13
|
+
curly-templates (3.4.0)
|
14
|
+
actionpack (>= 6.1)
|
15
15
|
sorted_set
|
16
16
|
|
17
17
|
GEM
|
@@ -205,7 +205,6 @@ DEPENDENCIES
|
|
205
205
|
genspec!
|
206
206
|
github-markup
|
207
207
|
rails (~> 6.1.0)
|
208
|
-
railties (>= 5.1, < 7.2)
|
209
208
|
rake
|
210
209
|
redcarpet
|
211
210
|
rspec (>= 3)
|
@@ -10,8 +10,8 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: ..
|
12
12
|
specs:
|
13
|
-
curly-templates (3.
|
14
|
-
actionpack (>=
|
13
|
+
curly-templates (3.4.0)
|
14
|
+
actionpack (>= 6.1)
|
15
15
|
sorted_set
|
16
16
|
|
17
17
|
GEM
|
@@ -204,7 +204,6 @@ DEPENDENCIES
|
|
204
204
|
genspec!
|
205
205
|
github-markup
|
206
206
|
rails (~> 7.0.0)
|
207
|
-
railties (>= 5.1, < 7.2)
|
208
207
|
rake
|
209
208
|
redcarpet
|
210
209
|
rspec (>= 3)
|
@@ -10,8 +10,8 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: ..
|
12
12
|
specs:
|
13
|
-
curly-templates (3.
|
14
|
-
actionpack (>=
|
13
|
+
curly-templates (3.4.0)
|
14
|
+
actionpack (>= 6.1)
|
15
15
|
sorted_set
|
16
16
|
|
17
17
|
GEM
|
@@ -100,8 +100,7 @@ GEM
|
|
100
100
|
crass (1.0.6)
|
101
101
|
date (3.3.4)
|
102
102
|
diff-lcs (1.5.0)
|
103
|
-
drb (2.2.
|
104
|
-
ruby2_keywords
|
103
|
+
drb (2.2.1)
|
105
104
|
erubi (1.12.0)
|
106
105
|
github-markup (4.0.2)
|
107
106
|
globalid (1.2.1)
|
@@ -206,7 +205,6 @@ GEM
|
|
206
205
|
rspec-mocks (~> 3.12)
|
207
206
|
rspec-support (~> 3.12)
|
208
207
|
rspec-support (3.12.1)
|
209
|
-
ruby2_keywords (0.0.5)
|
210
208
|
set (1.0.3)
|
211
209
|
sorted_set (1.0.3)
|
212
210
|
rbtree
|
@@ -237,7 +235,6 @@ DEPENDENCIES
|
|
237
235
|
genspec!
|
238
236
|
github-markup
|
239
237
|
rails (~> 7.1.0)
|
240
|
-
railties (>= 5.1, < 7.2)
|
241
238
|
rake
|
242
239
|
redcarpet
|
243
240
|
rspec (>= 3)
|
@@ -13,17 +13,9 @@ class Curly::TemplateHandler
|
|
13
13
|
# template - The ActionView::Template template that should be compiled.
|
14
14
|
#
|
15
15
|
# Returns a String containing the Ruby code representing the template.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
compile_for_actionview5(template)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
else
|
23
|
-
def call(template, source)
|
24
|
-
instrument(template) do
|
25
|
-
compile(template, source)
|
26
|
-
end
|
16
|
+
def call(template, source)
|
17
|
+
instrument(template) do
|
18
|
+
compile(template, source)
|
27
19
|
end
|
28
20
|
end
|
29
21
|
|
data/lib/curly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: curly-templates
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Schierbeck
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -16,20 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '7.2'
|
19
|
+
version: '6.1'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '7.2'
|
26
|
+
version: '6.1'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: sorted_set
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,26 +38,6 @@ dependencies:
|
|
44
38
|
- - ">="
|
45
39
|
- !ruby/object:Gem::Version
|
46
40
|
version: '0'
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: railties
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - ">="
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '5.1'
|
54
|
-
- - "<"
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
version: '7.2'
|
57
|
-
type: :development
|
58
|
-
prerelease: false
|
59
|
-
version_requirements: !ruby/object:Gem::Requirement
|
60
|
-
requirements:
|
61
|
-
- - ">="
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: '5.1'
|
64
|
-
- - "<"
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version: '7.2'
|
67
41
|
- !ruby/object:Gem::Dependency
|
68
42
|
name: rake
|
69
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,6 +74,7 @@ extra_rdoc_files: []
|
|
100
74
|
files:
|
101
75
|
- ".github/workflows/ci.yml"
|
102
76
|
- ".github/workflows/publish.yml"
|
77
|
+
- ".github/workflows/test_against_rails_main.yml"
|
103
78
|
- ".gitignore"
|
104
79
|
- ".rspec"
|
105
80
|
- ".yardopts"
|
@@ -110,18 +85,13 @@ files:
|
|
110
85
|
- Rakefile
|
111
86
|
- curly-templates.gemspec
|
112
87
|
- gemfiles/common.rb
|
113
|
-
- gemfiles/rails5.1.gemfile
|
114
|
-
- gemfiles/rails5.1.gemfile.lock
|
115
|
-
- gemfiles/rails5.2.gemfile
|
116
|
-
- gemfiles/rails5.2.gemfile.lock
|
117
|
-
- gemfiles/rails6.0.gemfile
|
118
|
-
- gemfiles/rails6.0.gemfile.lock
|
119
88
|
- gemfiles/rails6.1.gemfile
|
120
89
|
- gemfiles/rails6.1.gemfile.lock
|
121
90
|
- gemfiles/rails7.0.gemfile
|
122
91
|
- gemfiles/rails7.0.gemfile.lock
|
123
92
|
- gemfiles/rails7.1.gemfile
|
124
93
|
- gemfiles/rails7.1.gemfile.lock
|
94
|
+
- gemfiles/rails_main.gemfile
|
125
95
|
- lib/curly-templates.rb
|
126
96
|
- lib/curly.rb
|
127
97
|
- lib/curly/attribute_scanner.rb
|
@@ -175,15 +145,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
175
145
|
requirements:
|
176
146
|
- - ">="
|
177
147
|
- !ruby/object:Gem::Version
|
178
|
-
version: '
|
148
|
+
version: '3.1'
|
179
149
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
180
150
|
requirements:
|
181
151
|
- - ">="
|
182
152
|
- !ruby/object:Gem::Version
|
183
153
|
version: '0'
|
184
154
|
requirements: []
|
185
|
-
rubygems_version: 3.
|
155
|
+
rubygems_version: 3.5.11
|
186
156
|
signing_key:
|
187
|
-
specification_version:
|
157
|
+
specification_version: 4
|
188
158
|
summary: Free your views!
|
189
159
|
test_files: []
|
data/gemfiles/rails5.1.gemfile
DELETED
@@ -1,187 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
curly-templates (3.3.0)
|
5
|
-
actionpack (>= 5.1, < 7.2)
|
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.12.0)
|
50
|
-
builder (3.2.4)
|
51
|
-
concurrent-ruby (1.2.2)
|
52
|
-
crass (1.0.6)
|
53
|
-
date (3.3.4)
|
54
|
-
diff-lcs (1.5.0)
|
55
|
-
erubi (1.12.0)
|
56
|
-
genspec (0.3.2)
|
57
|
-
rspec (>= 2, < 4)
|
58
|
-
thor
|
59
|
-
github-markup (4.0.2)
|
60
|
-
globalid (1.1.0)
|
61
|
-
activesupport (>= 5.0)
|
62
|
-
i18n (1.14.1)
|
63
|
-
concurrent-ruby (~> 1.0)
|
64
|
-
loofah (2.21.4)
|
65
|
-
crass (~> 1.0.2)
|
66
|
-
nokogiri (>= 1.12.0)
|
67
|
-
mail (2.8.1)
|
68
|
-
mini_mime (>= 0.1.1)
|
69
|
-
net-imap
|
70
|
-
net-pop
|
71
|
-
net-smtp
|
72
|
-
method_source (1.0.0)
|
73
|
-
mini_mime (1.1.5)
|
74
|
-
mini_portile2 (2.8.5)
|
75
|
-
minitest (5.20.0)
|
76
|
-
net-imap (0.4.5)
|
77
|
-
date
|
78
|
-
net-protocol
|
79
|
-
net-pop (0.1.2)
|
80
|
-
net-protocol
|
81
|
-
net-protocol (0.2.2)
|
82
|
-
timeout
|
83
|
-
net-smtp (0.4.0)
|
84
|
-
net-protocol
|
85
|
-
nio4r (2.5.9)
|
86
|
-
nokogiri (1.15.4)
|
87
|
-
mini_portile2 (~> 2.8.2)
|
88
|
-
racc (~> 1.4)
|
89
|
-
racc (1.7.3)
|
90
|
-
rack (2.2.8)
|
91
|
-
rack-test (2.1.0)
|
92
|
-
rack (>= 1.3)
|
93
|
-
rails (5.1.7)
|
94
|
-
actioncable (= 5.1.7)
|
95
|
-
actionmailer (= 5.1.7)
|
96
|
-
actionpack (= 5.1.7)
|
97
|
-
actionview (= 5.1.7)
|
98
|
-
activejob (= 5.1.7)
|
99
|
-
activemodel (= 5.1.7)
|
100
|
-
activerecord (= 5.1.7)
|
101
|
-
activesupport (= 5.1.7)
|
102
|
-
bundler (>= 1.3.0)
|
103
|
-
railties (= 5.1.7)
|
104
|
-
sprockets-rails (>= 2.0.0)
|
105
|
-
rails-dom-testing (2.2.0)
|
106
|
-
activesupport (>= 5.0.0)
|
107
|
-
minitest
|
108
|
-
nokogiri (>= 1.6)
|
109
|
-
rails-html-sanitizer (1.6.0)
|
110
|
-
loofah (~> 2.21)
|
111
|
-
nokogiri (~> 1.14)
|
112
|
-
railties (5.1.7)
|
113
|
-
actionpack (= 5.1.7)
|
114
|
-
activesupport (= 5.1.7)
|
115
|
-
method_source
|
116
|
-
rake (>= 0.8.7)
|
117
|
-
thor (>= 0.18.1, < 2.0)
|
118
|
-
rake (13.1.0)
|
119
|
-
rbtree (0.4.6)
|
120
|
-
redcarpet (3.6.0)
|
121
|
-
rspec (3.12.0)
|
122
|
-
rspec-core (~> 3.12.0)
|
123
|
-
rspec-expectations (~> 3.12.0)
|
124
|
-
rspec-mocks (~> 3.12.0)
|
125
|
-
rspec-core (3.12.2)
|
126
|
-
rspec-support (~> 3.12.0)
|
127
|
-
rspec-expectations (3.12.3)
|
128
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
-
rspec-support (~> 3.12.0)
|
130
|
-
rspec-mocks (3.12.6)
|
131
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
-
rspec-support (~> 3.12.0)
|
133
|
-
rspec-rails (4.1.2)
|
134
|
-
actionpack (>= 4.2)
|
135
|
-
activesupport (>= 4.2)
|
136
|
-
railties (>= 4.2)
|
137
|
-
rspec-core (~> 3.10)
|
138
|
-
rspec-expectations (~> 3.10)
|
139
|
-
rspec-mocks (~> 3.10)
|
140
|
-
rspec-support (~> 3.10)
|
141
|
-
rspec-support (3.12.1)
|
142
|
-
set (1.0.3)
|
143
|
-
sorted_set (1.0.3)
|
144
|
-
rbtree
|
145
|
-
set (~> 1.0)
|
146
|
-
sprockets (4.2.1)
|
147
|
-
concurrent-ruby (~> 1.0)
|
148
|
-
rack (>= 2.2.4, < 4)
|
149
|
-
sprockets-rails (3.2.2)
|
150
|
-
actionpack (>= 4.0)
|
151
|
-
activesupport (>= 4.0)
|
152
|
-
sprockets (>= 3.0.0)
|
153
|
-
stackprof (0.2.25)
|
154
|
-
thor (1.3.0)
|
155
|
-
thread_safe (0.3.6)
|
156
|
-
timeout (0.4.1)
|
157
|
-
tomparse (0.4.2)
|
158
|
-
tzinfo (1.2.11)
|
159
|
-
thread_safe (~> 0.1)
|
160
|
-
websocket-driver (0.6.5)
|
161
|
-
websocket-extensions (>= 0.1.0)
|
162
|
-
websocket-extensions (0.1.5)
|
163
|
-
yard (0.9.34)
|
164
|
-
yard-tomdoc (0.7.1)
|
165
|
-
tomparse (>= 0.4.0)
|
166
|
-
yard
|
167
|
-
|
168
|
-
PLATFORMS
|
169
|
-
ruby
|
170
|
-
|
171
|
-
DEPENDENCIES
|
172
|
-
benchmark-ips
|
173
|
-
curly-templates!
|
174
|
-
genspec (>= 0.3.0)
|
175
|
-
github-markup
|
176
|
-
rails (~> 5.1.0)
|
177
|
-
railties (>= 5.1, < 7.2)
|
178
|
-
rake
|
179
|
-
redcarpet
|
180
|
-
rspec (>= 3)
|
181
|
-
rspec-rails
|
182
|
-
stackprof
|
183
|
-
yard
|
184
|
-
yard-tomdoc
|
185
|
-
|
186
|
-
BUNDLED WITH
|
187
|
-
2.4.17
|
data/gemfiles/rails5.2.gemfile
DELETED
@@ -1,193 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
curly-templates (3.3.0)
|
5
|
-
actionpack (>= 5.1, < 7.2)
|
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.12.0)
|
54
|
-
builder (3.2.4)
|
55
|
-
concurrent-ruby (1.2.2)
|
56
|
-
crass (1.0.6)
|
57
|
-
date (3.3.4)
|
58
|
-
diff-lcs (1.5.0)
|
59
|
-
erubi (1.12.0)
|
60
|
-
genspec (0.3.2)
|
61
|
-
rspec (>= 2, < 4)
|
62
|
-
thor
|
63
|
-
github-markup (4.0.2)
|
64
|
-
globalid (1.1.0)
|
65
|
-
activesupport (>= 5.0)
|
66
|
-
i18n (1.14.1)
|
67
|
-
concurrent-ruby (~> 1.0)
|
68
|
-
loofah (2.21.4)
|
69
|
-
crass (~> 1.0.2)
|
70
|
-
nokogiri (>= 1.12.0)
|
71
|
-
mail (2.8.1)
|
72
|
-
mini_mime (>= 0.1.1)
|
73
|
-
net-imap
|
74
|
-
net-pop
|
75
|
-
net-smtp
|
76
|
-
marcel (1.0.2)
|
77
|
-
method_source (1.0.0)
|
78
|
-
mini_mime (1.1.5)
|
79
|
-
mini_portile2 (2.8.5)
|
80
|
-
minitest (5.20.0)
|
81
|
-
net-imap (0.4.5)
|
82
|
-
date
|
83
|
-
net-protocol
|
84
|
-
net-pop (0.1.2)
|
85
|
-
net-protocol
|
86
|
-
net-protocol (0.2.2)
|
87
|
-
timeout
|
88
|
-
net-smtp (0.4.0)
|
89
|
-
net-protocol
|
90
|
-
nio4r (2.5.9)
|
91
|
-
nokogiri (1.15.4)
|
92
|
-
mini_portile2 (~> 2.8.2)
|
93
|
-
racc (~> 1.4)
|
94
|
-
racc (1.7.3)
|
95
|
-
rack (2.2.8)
|
96
|
-
rack-test (2.1.0)
|
97
|
-
rack (>= 1.3)
|
98
|
-
rails (5.2.8.1)
|
99
|
-
actioncable (= 5.2.8.1)
|
100
|
-
actionmailer (= 5.2.8.1)
|
101
|
-
actionpack (= 5.2.8.1)
|
102
|
-
actionview (= 5.2.8.1)
|
103
|
-
activejob (= 5.2.8.1)
|
104
|
-
activemodel (= 5.2.8.1)
|
105
|
-
activerecord (= 5.2.8.1)
|
106
|
-
activestorage (= 5.2.8.1)
|
107
|
-
activesupport (= 5.2.8.1)
|
108
|
-
bundler (>= 1.3.0)
|
109
|
-
railties (= 5.2.8.1)
|
110
|
-
sprockets-rails (>= 2.0.0)
|
111
|
-
rails-dom-testing (2.2.0)
|
112
|
-
activesupport (>= 5.0.0)
|
113
|
-
minitest
|
114
|
-
nokogiri (>= 1.6)
|
115
|
-
rails-html-sanitizer (1.6.0)
|
116
|
-
loofah (~> 2.21)
|
117
|
-
nokogiri (~> 1.14)
|
118
|
-
railties (5.2.8.1)
|
119
|
-
actionpack (= 5.2.8.1)
|
120
|
-
activesupport (= 5.2.8.1)
|
121
|
-
method_source
|
122
|
-
rake (>= 0.8.7)
|
123
|
-
thor (>= 0.19.0, < 2.0)
|
124
|
-
rake (13.1.0)
|
125
|
-
rbtree (0.4.6)
|
126
|
-
redcarpet (3.6.0)
|
127
|
-
rspec (3.12.0)
|
128
|
-
rspec-core (~> 3.12.0)
|
129
|
-
rspec-expectations (~> 3.12.0)
|
130
|
-
rspec-mocks (~> 3.12.0)
|
131
|
-
rspec-core (3.12.2)
|
132
|
-
rspec-support (~> 3.12.0)
|
133
|
-
rspec-expectations (3.12.3)
|
134
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
135
|
-
rspec-support (~> 3.12.0)
|
136
|
-
rspec-mocks (3.12.6)
|
137
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
138
|
-
rspec-support (~> 3.12.0)
|
139
|
-
rspec-rails (5.1.2)
|
140
|
-
actionpack (>= 5.2)
|
141
|
-
activesupport (>= 5.2)
|
142
|
-
railties (>= 5.2)
|
143
|
-
rspec-core (~> 3.10)
|
144
|
-
rspec-expectations (~> 3.10)
|
145
|
-
rspec-mocks (~> 3.10)
|
146
|
-
rspec-support (~> 3.10)
|
147
|
-
rspec-support (3.12.1)
|
148
|
-
set (1.0.3)
|
149
|
-
sorted_set (1.0.3)
|
150
|
-
rbtree
|
151
|
-
set (~> 1.0)
|
152
|
-
sprockets (4.2.1)
|
153
|
-
concurrent-ruby (~> 1.0)
|
154
|
-
rack (>= 2.2.4, < 4)
|
155
|
-
sprockets-rails (3.4.2)
|
156
|
-
actionpack (>= 5.2)
|
157
|
-
activesupport (>= 5.2)
|
158
|
-
sprockets (>= 3.0.0)
|
159
|
-
stackprof (0.2.25)
|
160
|
-
thor (1.3.0)
|
161
|
-
thread_safe (0.3.6)
|
162
|
-
timeout (0.4.1)
|
163
|
-
tomparse (0.4.2)
|
164
|
-
tzinfo (1.2.11)
|
165
|
-
thread_safe (~> 0.1)
|
166
|
-
websocket-driver (0.7.6)
|
167
|
-
websocket-extensions (>= 0.1.0)
|
168
|
-
websocket-extensions (0.1.5)
|
169
|
-
yard (0.9.34)
|
170
|
-
yard-tomdoc (0.7.1)
|
171
|
-
tomparse (>= 0.4.0)
|
172
|
-
yard
|
173
|
-
|
174
|
-
PLATFORMS
|
175
|
-
ruby
|
176
|
-
|
177
|
-
DEPENDENCIES
|
178
|
-
benchmark-ips
|
179
|
-
curly-templates!
|
180
|
-
genspec (>= 0.3.0)
|
181
|
-
github-markup
|
182
|
-
rails (~> 5.2.0)
|
183
|
-
railties (>= 5.1, < 7.2)
|
184
|
-
rake
|
185
|
-
redcarpet
|
186
|
-
rspec (>= 3)
|
187
|
-
rspec-rails
|
188
|
-
stackprof
|
189
|
-
yard
|
190
|
-
yard-tomdoc
|
191
|
-
|
192
|
-
BUNDLED WITH
|
193
|
-
2.4.17
|
data/gemfiles/rails6.0.gemfile
DELETED
@@ -1,215 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/zendesk/genspec.git
|
3
|
-
revision: 76116991caf40ef940076f702f70a141ced84ce2
|
4
|
-
branch: rails-7
|
5
|
-
specs:
|
6
|
-
genspec (0.3.2)
|
7
|
-
rspec (>= 2, < 4)
|
8
|
-
thor
|
9
|
-
|
10
|
-
PATH
|
11
|
-
remote: ..
|
12
|
-
specs:
|
13
|
-
curly-templates (3.3.0)
|
14
|
-
actionpack (>= 5.1, < 7.2)
|
15
|
-
sorted_set
|
16
|
-
|
17
|
-
GEM
|
18
|
-
remote: https://rubygems.org/
|
19
|
-
specs:
|
20
|
-
actioncable (6.0.6.1)
|
21
|
-
actionpack (= 6.0.6.1)
|
22
|
-
nio4r (~> 2.0)
|
23
|
-
websocket-driver (>= 0.6.1)
|
24
|
-
actionmailbox (6.0.6.1)
|
25
|
-
actionpack (= 6.0.6.1)
|
26
|
-
activejob (= 6.0.6.1)
|
27
|
-
activerecord (= 6.0.6.1)
|
28
|
-
activestorage (= 6.0.6.1)
|
29
|
-
activesupport (= 6.0.6.1)
|
30
|
-
mail (>= 2.7.1)
|
31
|
-
actionmailer (6.0.6.1)
|
32
|
-
actionpack (= 6.0.6.1)
|
33
|
-
actionview (= 6.0.6.1)
|
34
|
-
activejob (= 6.0.6.1)
|
35
|
-
mail (~> 2.5, >= 2.5.4)
|
36
|
-
rails-dom-testing (~> 2.0)
|
37
|
-
actionpack (6.0.6.1)
|
38
|
-
actionview (= 6.0.6.1)
|
39
|
-
activesupport (= 6.0.6.1)
|
40
|
-
rack (~> 2.0, >= 2.0.8)
|
41
|
-
rack-test (>= 0.6.3)
|
42
|
-
rails-dom-testing (~> 2.0)
|
43
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
44
|
-
actiontext (6.0.6.1)
|
45
|
-
actionpack (= 6.0.6.1)
|
46
|
-
activerecord (= 6.0.6.1)
|
47
|
-
activestorage (= 6.0.6.1)
|
48
|
-
activesupport (= 6.0.6.1)
|
49
|
-
nokogiri (>= 1.8.5)
|
50
|
-
actionview (6.0.6.1)
|
51
|
-
activesupport (= 6.0.6.1)
|
52
|
-
builder (~> 3.1)
|
53
|
-
erubi (~> 1.4)
|
54
|
-
rails-dom-testing (~> 2.0)
|
55
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
-
activejob (6.0.6.1)
|
57
|
-
activesupport (= 6.0.6.1)
|
58
|
-
globalid (>= 0.3.6)
|
59
|
-
activemodel (6.0.6.1)
|
60
|
-
activesupport (= 6.0.6.1)
|
61
|
-
activerecord (6.0.6.1)
|
62
|
-
activemodel (= 6.0.6.1)
|
63
|
-
activesupport (= 6.0.6.1)
|
64
|
-
activestorage (6.0.6.1)
|
65
|
-
actionpack (= 6.0.6.1)
|
66
|
-
activejob (= 6.0.6.1)
|
67
|
-
activerecord (= 6.0.6.1)
|
68
|
-
marcel (~> 1.0)
|
69
|
-
activesupport (6.0.6.1)
|
70
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
|
-
i18n (>= 0.7, < 2)
|
72
|
-
minitest (~> 5.1)
|
73
|
-
tzinfo (~> 1.1)
|
74
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
75
|
-
benchmark-ips (2.12.0)
|
76
|
-
builder (3.2.4)
|
77
|
-
concurrent-ruby (1.2.2)
|
78
|
-
crass (1.0.6)
|
79
|
-
date (3.3.4)
|
80
|
-
diff-lcs (1.5.0)
|
81
|
-
erubi (1.12.0)
|
82
|
-
github-markup (4.0.2)
|
83
|
-
globalid (1.1.0)
|
84
|
-
activesupport (>= 5.0)
|
85
|
-
i18n (1.14.1)
|
86
|
-
concurrent-ruby (~> 1.0)
|
87
|
-
loofah (2.21.4)
|
88
|
-
crass (~> 1.0.2)
|
89
|
-
nokogiri (>= 1.12.0)
|
90
|
-
mail (2.8.1)
|
91
|
-
mini_mime (>= 0.1.1)
|
92
|
-
net-imap
|
93
|
-
net-pop
|
94
|
-
net-smtp
|
95
|
-
marcel (1.0.2)
|
96
|
-
method_source (1.0.0)
|
97
|
-
mini_mime (1.1.5)
|
98
|
-
mini_portile2 (2.8.5)
|
99
|
-
minitest (5.20.0)
|
100
|
-
net-imap (0.4.5)
|
101
|
-
date
|
102
|
-
net-protocol
|
103
|
-
net-pop (0.1.2)
|
104
|
-
net-protocol
|
105
|
-
net-protocol (0.2.2)
|
106
|
-
timeout
|
107
|
-
net-smtp (0.4.0)
|
108
|
-
net-protocol
|
109
|
-
nio4r (2.5.9)
|
110
|
-
nokogiri (1.15.4)
|
111
|
-
mini_portile2 (~> 2.8.2)
|
112
|
-
racc (~> 1.4)
|
113
|
-
racc (1.7.3)
|
114
|
-
rack (2.2.8)
|
115
|
-
rack-test (2.1.0)
|
116
|
-
rack (>= 1.3)
|
117
|
-
rails (6.0.6.1)
|
118
|
-
actioncable (= 6.0.6.1)
|
119
|
-
actionmailbox (= 6.0.6.1)
|
120
|
-
actionmailer (= 6.0.6.1)
|
121
|
-
actionpack (= 6.0.6.1)
|
122
|
-
actiontext (= 6.0.6.1)
|
123
|
-
actionview (= 6.0.6.1)
|
124
|
-
activejob (= 6.0.6.1)
|
125
|
-
activemodel (= 6.0.6.1)
|
126
|
-
activerecord (= 6.0.6.1)
|
127
|
-
activestorage (= 6.0.6.1)
|
128
|
-
activesupport (= 6.0.6.1)
|
129
|
-
bundler (>= 1.3.0)
|
130
|
-
railties (= 6.0.6.1)
|
131
|
-
sprockets-rails (>= 2.0.0)
|
132
|
-
rails-dom-testing (2.2.0)
|
133
|
-
activesupport (>= 5.0.0)
|
134
|
-
minitest
|
135
|
-
nokogiri (>= 1.6)
|
136
|
-
rails-html-sanitizer (1.6.0)
|
137
|
-
loofah (~> 2.21)
|
138
|
-
nokogiri (~> 1.14)
|
139
|
-
railties (6.0.6.1)
|
140
|
-
actionpack (= 6.0.6.1)
|
141
|
-
activesupport (= 6.0.6.1)
|
142
|
-
method_source
|
143
|
-
rake (>= 0.8.7)
|
144
|
-
thor (>= 0.20.3, < 2.0)
|
145
|
-
rake (13.1.0)
|
146
|
-
rbtree (0.4.6)
|
147
|
-
redcarpet (3.6.0)
|
148
|
-
rspec (3.12.0)
|
149
|
-
rspec-core (~> 3.12.0)
|
150
|
-
rspec-expectations (~> 3.12.0)
|
151
|
-
rspec-mocks (~> 3.12.0)
|
152
|
-
rspec-core (3.12.2)
|
153
|
-
rspec-support (~> 3.12.0)
|
154
|
-
rspec-expectations (3.12.3)
|
155
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
156
|
-
rspec-support (~> 3.12.0)
|
157
|
-
rspec-mocks (3.12.6)
|
158
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
159
|
-
rspec-support (~> 3.12.0)
|
160
|
-
rspec-rails (5.1.2)
|
161
|
-
actionpack (>= 5.2)
|
162
|
-
activesupport (>= 5.2)
|
163
|
-
railties (>= 5.2)
|
164
|
-
rspec-core (~> 3.10)
|
165
|
-
rspec-expectations (~> 3.10)
|
166
|
-
rspec-mocks (~> 3.10)
|
167
|
-
rspec-support (~> 3.10)
|
168
|
-
rspec-support (3.12.1)
|
169
|
-
set (1.0.3)
|
170
|
-
sorted_set (1.0.3)
|
171
|
-
rbtree
|
172
|
-
set (~> 1.0)
|
173
|
-
sprockets (4.2.1)
|
174
|
-
concurrent-ruby (~> 1.0)
|
175
|
-
rack (>= 2.2.4, < 4)
|
176
|
-
sprockets-rails (3.4.2)
|
177
|
-
actionpack (>= 5.2)
|
178
|
-
activesupport (>= 5.2)
|
179
|
-
sprockets (>= 3.0.0)
|
180
|
-
stackprof (0.2.25)
|
181
|
-
thor (1.3.0)
|
182
|
-
thread_safe (0.3.6)
|
183
|
-
timeout (0.4.1)
|
184
|
-
tomparse (0.4.2)
|
185
|
-
tzinfo (1.2.11)
|
186
|
-
thread_safe (~> 0.1)
|
187
|
-
websocket-driver (0.7.6)
|
188
|
-
websocket-extensions (>= 0.1.0)
|
189
|
-
websocket-extensions (0.1.5)
|
190
|
-
yard (0.9.34)
|
191
|
-
yard-tomdoc (0.7.1)
|
192
|
-
tomparse (>= 0.4.0)
|
193
|
-
yard
|
194
|
-
zeitwerk (2.6.12)
|
195
|
-
|
196
|
-
PLATFORMS
|
197
|
-
ruby
|
198
|
-
|
199
|
-
DEPENDENCIES
|
200
|
-
benchmark-ips
|
201
|
-
curly-templates!
|
202
|
-
genspec!
|
203
|
-
github-markup
|
204
|
-
rails (~> 6.0.0)
|
205
|
-
railties (>= 5.1, < 7.2)
|
206
|
-
rake
|
207
|
-
redcarpet
|
208
|
-
rspec (>= 3)
|
209
|
-
rspec-rails
|
210
|
-
stackprof
|
211
|
-
yard
|
212
|
-
yard-tomdoc
|
213
|
-
|
214
|
-
BUNDLED WITH
|
215
|
-
2.4.17
|