precompiled_assets 0.3.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fdfd14612574dda758b2f305ac00d5557d241ede6b8eefd1c7055f4f12225b1
4
- data.tar.gz: 8497d12d1f5c7e1cb025f46e5bf16c81562cf37c98a4ef5d1c6822b086c386c1
3
+ metadata.gz: 6f20e53669ae032b458f8b28b22bfdec528acfb064a238794f6ae0688d695d62
4
+ data.tar.gz: 54a972bccd935285e82bb2f10f9be81b2a10690a49fcae8e13c8032dc7015b0f
5
5
  SHA512:
6
- metadata.gz: 9f40e81ebfdc9c068c4849cf1539329713cf696ce0b8abbc1da7ecd0231816968905ce5b8774fa922ef9a45bfe0689f4121f4d029086eb7353a76c1c54cadc44
7
- data.tar.gz: 105792548691c0163179caac86d133934cf640ad6e9f5249528193844d78d7d36de923eba9b04ebd139e1c147b6abfc828e47b24875c626c96030ee3862edb7e
6
+ metadata.gz: a0319b36e0b80035c6af5595673e3d064544449e9d53f6ef498f94cefcf1fba9cb477e046fb516432490b2b05131a5ee0e2f7cf0ef6dcfef0fc0c92a77bbd67e
7
+ data.tar.gz: b4710953bd95a59687ef84a9a684d2a160decfcf7c63e8601b11dfc53165ff2175f3f7c999460b3db11114b1307138b603f9008cd0a33dae31882de000bb17ce
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml CHANGED
@@ -4,5 +4,9 @@ inherit_gem:
4
4
  - config/ext/rails.yml
5
5
  - config/ext/rspec.yml
6
6
 
7
+ plugins:
8
+ - rubocop-rspec
9
+ - rubocop-rake
10
+
7
11
  AllCops:
8
12
  TargetRubyVersion: 2.6
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.4.6
1
+ 4.0.2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ -
4
+
5
+ ## [1.0.0] - 2026-04-20
6
+
7
+ - Add tests to this gem
8
+ - Add CI test matrix for various Rails and Ruby versions
9
+ - Add CI job rubocop linting
10
+
3
11
  ## [0.3.0] - 2025-09-22
4
12
 
5
13
  - Support for ViewComponent 4. (ViewComponent 3 support was implicit due to its `ActionView::Base` dependency.)
data/Gemfile ADDED
@@ -0,0 +1 @@
1
+ Gemfile.8.1
data/Gemfile.6.1 ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '~> 6.1.0'
4
+ gem 'rspec', '~> 3.12'
5
+ gem 'rake'
6
+ gem 'gemika', '>= 0.8.1'
7
+
8
+ gem 'precompiled_assets', path: '.'
data/Gemfile.6.1.lock ADDED
@@ -0,0 +1,182 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ precompiled_assets (1.0.0)
5
+ railties (>= 6.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.7.10)
11
+ actionpack (= 6.1.7.10)
12
+ activesupport (= 6.1.7.10)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.7.10)
16
+ actionpack (= 6.1.7.10)
17
+ activejob (= 6.1.7.10)
18
+ activerecord (= 6.1.7.10)
19
+ activestorage (= 6.1.7.10)
20
+ activesupport (= 6.1.7.10)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.7.10)
23
+ actionpack (= 6.1.7.10)
24
+ actionview (= 6.1.7.10)
25
+ activejob (= 6.1.7.10)
26
+ activesupport (= 6.1.7.10)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.7.10)
30
+ actionview (= 6.1.7.10)
31
+ activesupport (= 6.1.7.10)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.7.10)
37
+ actionpack (= 6.1.7.10)
38
+ activerecord (= 6.1.7.10)
39
+ activestorage (= 6.1.7.10)
40
+ activesupport (= 6.1.7.10)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.7.10)
43
+ activesupport (= 6.1.7.10)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.7.10)
49
+ activesupport (= 6.1.7.10)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.7.10)
52
+ activesupport (= 6.1.7.10)
53
+ activerecord (6.1.7.10)
54
+ activemodel (= 6.1.7.10)
55
+ activesupport (= 6.1.7.10)
56
+ activestorage (6.1.7.10)
57
+ actionpack (= 6.1.7.10)
58
+ activejob (= 6.1.7.10)
59
+ activerecord (= 6.1.7.10)
60
+ activesupport (= 6.1.7.10)
61
+ marcel (~> 1.0)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.7.10)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ base64 (0.3.0)
70
+ builder (3.3.0)
71
+ concurrent-ruby (1.3.6)
72
+ crass (1.0.6)
73
+ date (3.5.1)
74
+ diff-lcs (1.6.2)
75
+ erubi (1.13.1)
76
+ gemika (1.0.0)
77
+ globalid (1.3.0)
78
+ activesupport (>= 6.1)
79
+ i18n (1.14.8)
80
+ concurrent-ruby (~> 1.0)
81
+ logger (1.7.0)
82
+ loofah (2.25.1)
83
+ crass (~> 1.0.2)
84
+ nokogiri (>= 1.12.0)
85
+ mail (2.9.0)
86
+ logger
87
+ mini_mime (>= 0.1.1)
88
+ net-imap
89
+ net-pop
90
+ net-smtp
91
+ marcel (1.1.0)
92
+ method_source (1.1.0)
93
+ mini_mime (1.1.5)
94
+ minitest (5.26.1)
95
+ net-imap (0.4.23)
96
+ date
97
+ net-protocol
98
+ net-pop (0.1.2)
99
+ net-protocol
100
+ net-protocol (0.2.2)
101
+ timeout
102
+ net-smtp (0.5.1)
103
+ net-protocol
104
+ nio4r (2.7.5)
105
+ nokogiri (1.15.7-x86_64-linux)
106
+ racc (~> 1.4)
107
+ racc (1.8.1)
108
+ rack (2.2.23)
109
+ rack-test (2.2.0)
110
+ rack (>= 1.3)
111
+ rails (6.1.7.10)
112
+ actioncable (= 6.1.7.10)
113
+ actionmailbox (= 6.1.7.10)
114
+ actionmailer (= 6.1.7.10)
115
+ actionpack (= 6.1.7.10)
116
+ actiontext (= 6.1.7.10)
117
+ actionview (= 6.1.7.10)
118
+ activejob (= 6.1.7.10)
119
+ activemodel (= 6.1.7.10)
120
+ activerecord (= 6.1.7.10)
121
+ activestorage (= 6.1.7.10)
122
+ activesupport (= 6.1.7.10)
123
+ bundler (>= 1.15.0)
124
+ railties (= 6.1.7.10)
125
+ sprockets-rails (>= 2.0.0)
126
+ rails-dom-testing (2.3.0)
127
+ activesupport (>= 5.0.0)
128
+ minitest
129
+ nokogiri (>= 1.6)
130
+ rails-html-sanitizer (1.7.0)
131
+ loofah (~> 2.25)
132
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
133
+ railties (6.1.7.10)
134
+ actionpack (= 6.1.7.10)
135
+ activesupport (= 6.1.7.10)
136
+ method_source
137
+ rake (>= 12.2)
138
+ thor (~> 1.0)
139
+ rake (13.4.2)
140
+ rspec (3.13.2)
141
+ rspec-core (~> 3.13.0)
142
+ rspec-expectations (~> 3.13.0)
143
+ rspec-mocks (~> 3.13.0)
144
+ rspec-core (3.13.6)
145
+ rspec-support (~> 3.13.0)
146
+ rspec-expectations (3.13.5)
147
+ diff-lcs (>= 1.2.0, < 2.0)
148
+ rspec-support (~> 3.13.0)
149
+ rspec-mocks (3.13.8)
150
+ diff-lcs (>= 1.2.0, < 2.0)
151
+ rspec-support (~> 3.13.0)
152
+ rspec-support (3.13.7)
153
+ sprockets (4.2.2)
154
+ concurrent-ruby (~> 1.0)
155
+ logger
156
+ rack (>= 2.2.4, < 4)
157
+ sprockets-rails (3.5.2)
158
+ actionpack (>= 6.1)
159
+ activesupport (>= 6.1)
160
+ sprockets (>= 3.0.0)
161
+ thor (1.5.0)
162
+ timeout (0.6.1)
163
+ tzinfo (2.0.6)
164
+ concurrent-ruby (~> 1.0)
165
+ websocket-driver (0.8.0)
166
+ base64
167
+ websocket-extensions (>= 0.1.0)
168
+ websocket-extensions (0.1.5)
169
+ zeitwerk (2.6.18)
170
+
171
+ PLATFORMS
172
+ x86_64-linux
173
+
174
+ DEPENDENCIES
175
+ gemika (>= 0.8.1)
176
+ precompiled_assets!
177
+ rails (~> 6.1.0)
178
+ rake
179
+ rspec (~> 3.12)
180
+
181
+ BUNDLED WITH
182
+ 2.4.22
data/Gemfile.7.0 ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '~> 7.0.0'
4
+ gem 'rspec', '~> 3.12'
5
+ gem 'rake'
6
+ gem 'gemika', '>= 0.8.1'
7
+
8
+ gem 'precompiled_assets', path: '.'
data/Gemfile.7.0.lock ADDED
@@ -0,0 +1,214 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ precompiled_assets (1.0.0)
5
+ railties (>= 6.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.0.10)
11
+ actionpack (= 7.0.10)
12
+ activesupport (= 7.0.10)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (7.0.10)
16
+ actionpack (= 7.0.10)
17
+ activejob (= 7.0.10)
18
+ activerecord (= 7.0.10)
19
+ activestorage (= 7.0.10)
20
+ activesupport (= 7.0.10)
21
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
25
+ actionmailer (7.0.10)
26
+ actionpack (= 7.0.10)
27
+ actionview (= 7.0.10)
28
+ activejob (= 7.0.10)
29
+ activesupport (= 7.0.10)
30
+ mail (~> 2.5, >= 2.5.4)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ rails-dom-testing (~> 2.0)
35
+ actionpack (7.0.10)
36
+ actionview (= 7.0.10)
37
+ activesupport (= 7.0.10)
38
+ racc
39
+ rack (~> 2.0, >= 2.2.4)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.0)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (7.0.10)
44
+ actionpack (= 7.0.10)
45
+ activerecord (= 7.0.10)
46
+ activestorage (= 7.0.10)
47
+ activesupport (= 7.0.10)
48
+ globalid (>= 0.6.0)
49
+ nokogiri (>= 1.8.5)
50
+ actionview (7.0.10)
51
+ activesupport (= 7.0.10)
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 (7.0.10)
57
+ activesupport (= 7.0.10)
58
+ globalid (>= 0.3.6)
59
+ activemodel (7.0.10)
60
+ activesupport (= 7.0.10)
61
+ activerecord (7.0.10)
62
+ activemodel (= 7.0.10)
63
+ activesupport (= 7.0.10)
64
+ activestorage (7.0.10)
65
+ actionpack (= 7.0.10)
66
+ activejob (= 7.0.10)
67
+ activerecord (= 7.0.10)
68
+ activesupport (= 7.0.10)
69
+ marcel (~> 1.0)
70
+ mini_mime (>= 1.1.0)
71
+ activesupport (7.0.10)
72
+ base64
73
+ benchmark (>= 0.3)
74
+ bigdecimal
75
+ concurrent-ruby (~> 1.0, >= 1.0.2)
76
+ drb
77
+ i18n (>= 1.6, < 2)
78
+ logger (>= 1.4.2)
79
+ minitest (>= 5.1)
80
+ mutex_m
81
+ securerandom (>= 0.3)
82
+ tzinfo (~> 2.0)
83
+ base64 (0.3.0)
84
+ benchmark (0.5.0)
85
+ bigdecimal (4.1.1)
86
+ builder (3.3.0)
87
+ concurrent-ruby (1.3.6)
88
+ crass (1.0.6)
89
+ date (3.5.1)
90
+ diff-lcs (1.6.2)
91
+ drb (2.2.3)
92
+ erubi (1.13.1)
93
+ gemika (2.0.0)
94
+ globalid (1.3.0)
95
+ activesupport (>= 6.1)
96
+ i18n (1.14.8)
97
+ concurrent-ruby (~> 1.0)
98
+ logger (1.7.0)
99
+ loofah (2.25.1)
100
+ crass (~> 1.0.2)
101
+ nokogiri (>= 1.12.0)
102
+ mail (2.9.0)
103
+ logger
104
+ mini_mime (>= 0.1.1)
105
+ net-imap
106
+ net-pop
107
+ net-smtp
108
+ marcel (1.1.0)
109
+ method_source (1.1.0)
110
+ mini_mime (1.1.5)
111
+ minitest (5.27.0)
112
+ mutex_m (0.3.0)
113
+ net-imap (0.5.13)
114
+ date
115
+ net-protocol
116
+ net-pop (0.1.2)
117
+ net-protocol
118
+ net-protocol (0.2.2)
119
+ timeout
120
+ net-smtp (0.5.1)
121
+ net-protocol
122
+ nio4r (2.7.5)
123
+ nokogiri (1.18.10-aarch64-linux-gnu)
124
+ racc (~> 1.4)
125
+ nokogiri (1.18.10-aarch64-linux-musl)
126
+ racc (~> 1.4)
127
+ nokogiri (1.18.10-arm-linux-gnu)
128
+ racc (~> 1.4)
129
+ nokogiri (1.18.10-arm-linux-musl)
130
+ racc (~> 1.4)
131
+ nokogiri (1.18.10-arm64-darwin)
132
+ racc (~> 1.4)
133
+ nokogiri (1.18.10-x86_64-darwin)
134
+ racc (~> 1.4)
135
+ nokogiri (1.18.10-x86_64-linux-gnu)
136
+ racc (~> 1.4)
137
+ nokogiri (1.18.10-x86_64-linux-musl)
138
+ racc (~> 1.4)
139
+ racc (1.8.1)
140
+ rack (2.2.23)
141
+ rack-test (2.2.0)
142
+ rack (>= 1.3)
143
+ rails (7.0.10)
144
+ actioncable (= 7.0.10)
145
+ actionmailbox (= 7.0.10)
146
+ actionmailer (= 7.0.10)
147
+ actionpack (= 7.0.10)
148
+ actiontext (= 7.0.10)
149
+ actionview (= 7.0.10)
150
+ activejob (= 7.0.10)
151
+ activemodel (= 7.0.10)
152
+ activerecord (= 7.0.10)
153
+ activestorage (= 7.0.10)
154
+ activesupport (= 7.0.10)
155
+ bundler (>= 1.15.0)
156
+ railties (= 7.0.10)
157
+ rails-dom-testing (2.3.0)
158
+ activesupport (>= 5.0.0)
159
+ minitest
160
+ nokogiri (>= 1.6)
161
+ rails-html-sanitizer (1.7.0)
162
+ loofah (~> 2.25)
163
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
164
+ railties (7.0.10)
165
+ actionpack (= 7.0.10)
166
+ activesupport (= 7.0.10)
167
+ method_source
168
+ rake (>= 12.2)
169
+ thor (~> 1.0)
170
+ zeitwerk (~> 2.5)
171
+ rake (13.4.2)
172
+ rspec (3.13.2)
173
+ rspec-core (~> 3.13.0)
174
+ rspec-expectations (~> 3.13.0)
175
+ rspec-mocks (~> 3.13.0)
176
+ rspec-core (3.13.6)
177
+ rspec-support (~> 3.13.0)
178
+ rspec-expectations (3.13.5)
179
+ diff-lcs (>= 1.2.0, < 2.0)
180
+ rspec-support (~> 3.13.0)
181
+ rspec-mocks (3.13.8)
182
+ diff-lcs (>= 1.2.0, < 2.0)
183
+ rspec-support (~> 3.13.0)
184
+ rspec-support (3.13.7)
185
+ securerandom (0.4.1)
186
+ thor (1.5.0)
187
+ timeout (0.6.1)
188
+ tzinfo (2.0.6)
189
+ concurrent-ruby (~> 1.0)
190
+ websocket-driver (0.8.0)
191
+ base64
192
+ websocket-extensions (>= 0.1.0)
193
+ websocket-extensions (0.1.5)
194
+ zeitwerk (2.6.18)
195
+
196
+ PLATFORMS
197
+ aarch64-linux-gnu
198
+ aarch64-linux-musl
199
+ arm-linux-gnu
200
+ arm-linux-musl
201
+ arm64-darwin
202
+ x86_64-darwin
203
+ x86_64-linux-gnu
204
+ x86_64-linux-musl
205
+
206
+ DEPENDENCIES
207
+ gemika (>= 0.8.1)
208
+ precompiled_assets!
209
+ rails (~> 7.0.0)
210
+ rake
211
+ rspec (~> 3.12)
212
+
213
+ BUNDLED WITH
214
+ 2.5.21
data/Gemfile.7.1 ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '~> 7.1.0'
4
+ gem 'rspec', '~> 3.12'
5
+ gem 'rake'
6
+ gem 'gemika', '>= 0.8.1'
7
+
8
+ gem 'precompiled_assets', path: '.'