formie 1.1.1 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +20 -14
- data/.gitignore +5 -7
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/Appraisals +14 -6
- data/Gemfile +2 -1
- data/Gemfile.lock +218 -136
- data/MIT-LICENSE +1 -3
- data/README.md +6 -4
- data/formie.gemspec +2 -5
- data/gemfiles/{rails_6.1.gemfile → rails_7.1.gemfile} +3 -3
- data/gemfiles/{rails_7.0.gemfile → rails_7.2.gemfile} +3 -3
- data/lib/formie/version.rb +3 -1
- data/test/test_helper.rb +2 -2
- metadata +10 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e2eef32eec46cf7e38268d997fa885bb43218f82e251ecaaccedc488520087c
|
4
|
+
data.tar.gz: 89e3e1417f98a32c14fe6ae1e65ed9585c75f3c914dbd99ccc423b0d1f36e440
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c15abacbe2f905eca2ecda520a94a1465f97299ecdf441ecbb8b294ccc71d2981bf95741727cdc0387e3e95b04a14e346f3fd6200fd2432186ce0e11930763dd
|
7
|
+
data.tar.gz: 94b0da27bbb002355379eb9d2a9010119cf46839339a29d8bdfb1b3a7cb835aeceb44ef16bcbbf2c444804f8216bc5a14bd1f0d7385041cea698923c4cd8b442
|
data/.github/workflows/rake.yml
CHANGED
@@ -8,19 +8,25 @@ jobs:
|
|
8
8
|
strategy:
|
9
9
|
fail-fast: false
|
10
10
|
matrix:
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
ruby_version: ["3.2", "3.3"]
|
12
|
+
gemfile:
|
13
|
+
- Gemfile
|
14
|
+
- gemfiles/Gemfile.rails-7.2
|
15
|
+
- gemfiles/Gemfile.rails-7.1
|
16
|
+
runs-on: ubuntu-latest
|
15
17
|
|
16
18
|
steps:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
19
|
+
- uses: actions/checkout@v4
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby_version }}
|
24
|
+
bundler-cache: true
|
25
|
+
- name: Bundle install
|
26
|
+
run: |
|
27
|
+
bundle config set frozen false
|
28
|
+
bundle config path /home/runner/bundle
|
29
|
+
bundle install
|
30
|
+
bundle update
|
31
|
+
- name: Build and test with Rake
|
32
|
+
run: bundle exec rake
|
data/.gitignore
CHANGED
data/.ruby-gemset
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rails-7.
|
1
|
+
rails-7.2
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby-3.
|
1
|
+
ruby-3.3.5
|
data/Appraisals
CHANGED
@@ -1,13 +1,21 @@
|
|
1
|
-
appraise "rails-7.
|
2
|
-
gem "rails", "~> 7.
|
3
|
-
gem "dryer-config", "~> 7.0"
|
1
|
+
appraise "rails-7.2" do
|
2
|
+
gem "rails", "~> 7.2"
|
4
3
|
end
|
5
4
|
|
6
|
-
appraise "rails-
|
7
|
-
gem "rails", "~>
|
8
|
-
gem "dryer-config", "~> 6.0"
|
5
|
+
appraise "rails-7.1" do
|
6
|
+
gem "rails", "~> 7.1"
|
9
7
|
end
|
10
8
|
|
9
|
+
# appraise "rails-7.0" do
|
10
|
+
# gem "rails", "~> 7.0"
|
11
|
+
# gem "dryer-config", "~> 7.0"
|
12
|
+
# end
|
13
|
+
#
|
14
|
+
# appraise "rails-6.1" do
|
15
|
+
# gem "rails", "~> 6.1"
|
16
|
+
# gem "dryer-config", "~> 6.0"
|
17
|
+
# end
|
18
|
+
#
|
11
19
|
# appraise "rails-6.0" do
|
12
20
|
# gem "rails", "~> 6.0"
|
13
21
|
# end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,220 +1,302 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
formie (1.1.
|
4
|
+
formie (1.1.3)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
actioncable (7.
|
10
|
-
actionpack (= 7.
|
11
|
-
activesupport (= 7.
|
9
|
+
actioncable (7.2.1.1)
|
10
|
+
actionpack (= 7.2.1.1)
|
11
|
+
activesupport (= 7.2.1.1)
|
12
12
|
nio4r (~> 2.0)
|
13
13
|
websocket-driver (>= 0.6.1)
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
activesupport (= 7.0.4.3)
|
37
|
-
rack (~> 2.0, >= 2.2.0)
|
14
|
+
zeitwerk (~> 2.6)
|
15
|
+
actionmailbox (7.2.1.1)
|
16
|
+
actionpack (= 7.2.1.1)
|
17
|
+
activejob (= 7.2.1.1)
|
18
|
+
activerecord (= 7.2.1.1)
|
19
|
+
activestorage (= 7.2.1.1)
|
20
|
+
activesupport (= 7.2.1.1)
|
21
|
+
mail (>= 2.8.0)
|
22
|
+
actionmailer (7.2.1.1)
|
23
|
+
actionpack (= 7.2.1.1)
|
24
|
+
actionview (= 7.2.1.1)
|
25
|
+
activejob (= 7.2.1.1)
|
26
|
+
activesupport (= 7.2.1.1)
|
27
|
+
mail (>= 2.8.0)
|
28
|
+
rails-dom-testing (~> 2.2)
|
29
|
+
actionpack (7.2.1.1)
|
30
|
+
actionview (= 7.2.1.1)
|
31
|
+
activesupport (= 7.2.1.1)
|
32
|
+
nokogiri (>= 1.8.5)
|
33
|
+
racc
|
34
|
+
rack (>= 2.2.4, < 3.2)
|
35
|
+
rack-session (>= 1.0.1)
|
38
36
|
rack-test (>= 0.6.3)
|
39
|
-
rails-dom-testing (~> 2.
|
40
|
-
rails-html-sanitizer (~> 1.
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
37
|
+
rails-dom-testing (~> 2.2)
|
38
|
+
rails-html-sanitizer (~> 1.6)
|
39
|
+
useragent (~> 0.16)
|
40
|
+
actiontext (7.2.1.1)
|
41
|
+
actionpack (= 7.2.1.1)
|
42
|
+
activerecord (= 7.2.1.1)
|
43
|
+
activestorage (= 7.2.1.1)
|
44
|
+
activesupport (= 7.2.1.1)
|
46
45
|
globalid (>= 0.6.0)
|
47
46
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (7.
|
49
|
-
activesupport (= 7.
|
47
|
+
actionview (7.2.1.1)
|
48
|
+
activesupport (= 7.2.1.1)
|
50
49
|
builder (~> 3.1)
|
51
|
-
erubi (~> 1.
|
52
|
-
rails-dom-testing (~> 2.
|
53
|
-
rails-html-sanitizer (~> 1.
|
54
|
-
activejob (7.
|
55
|
-
activesupport (= 7.
|
50
|
+
erubi (~> 1.11)
|
51
|
+
rails-dom-testing (~> 2.2)
|
52
|
+
rails-html-sanitizer (~> 1.6)
|
53
|
+
activejob (7.2.1.1)
|
54
|
+
activesupport (= 7.2.1.1)
|
56
55
|
globalid (>= 0.3.6)
|
57
|
-
activemodel (7.
|
58
|
-
activesupport (= 7.
|
59
|
-
activerecord (7.
|
60
|
-
activemodel (= 7.
|
61
|
-
activesupport (= 7.
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
56
|
+
activemodel (7.2.1.1)
|
57
|
+
activesupport (= 7.2.1.1)
|
58
|
+
activerecord (7.2.1.1)
|
59
|
+
activemodel (= 7.2.1.1)
|
60
|
+
activesupport (= 7.2.1.1)
|
61
|
+
timeout (>= 0.4.0)
|
62
|
+
activestorage (7.2.1.1)
|
63
|
+
actionpack (= 7.2.1.1)
|
64
|
+
activejob (= 7.2.1.1)
|
65
|
+
activerecord (= 7.2.1.1)
|
66
|
+
activesupport (= 7.2.1.1)
|
67
67
|
marcel (~> 1.0)
|
68
|
-
|
69
|
-
|
70
|
-
|
68
|
+
activesupport (7.2.1.1)
|
69
|
+
base64
|
70
|
+
bigdecimal
|
71
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
72
|
+
connection_pool (>= 2.2.5)
|
73
|
+
drb
|
71
74
|
i18n (>= 1.6, < 2)
|
75
|
+
logger (>= 1.4.2)
|
72
76
|
minitest (>= 5.1)
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
+
securerandom (>= 0.3)
|
78
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
79
|
+
addressable (2.8.7)
|
80
|
+
public_suffix (>= 2.0.2, < 7.0)
|
81
|
+
appraisal (2.5.0)
|
77
82
|
bundler
|
78
83
|
rake
|
79
84
|
thor (>= 0.14.0)
|
80
85
|
ast (2.4.2)
|
81
|
-
|
82
|
-
|
86
|
+
base64 (0.2.0)
|
87
|
+
bigdecimal (3.1.8)
|
88
|
+
builder (3.3.0)
|
89
|
+
capybara (3.40.0)
|
83
90
|
addressable
|
84
91
|
matrix
|
85
92
|
mini_mime (>= 0.1.3)
|
86
|
-
nokogiri (~> 1.
|
93
|
+
nokogiri (~> 1.11)
|
87
94
|
rack (>= 1.6.0)
|
88
95
|
rack-test (>= 0.6.3)
|
89
96
|
regexp_parser (>= 1.5, < 3.0)
|
90
97
|
xpath (~> 3.2)
|
91
|
-
combustion (1.
|
98
|
+
combustion (1.5.0)
|
92
99
|
activesupport (>= 3.0.0)
|
93
100
|
railties (>= 3.0.0)
|
94
101
|
thor (>= 0.14.6)
|
95
|
-
concurrent-ruby (1.
|
102
|
+
concurrent-ruby (1.3.4)
|
103
|
+
connection_pool (2.4.1)
|
96
104
|
crass (1.0.6)
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
105
|
+
cuco (0.1.2)
|
106
|
+
listen
|
107
|
+
micro-optparse
|
108
|
+
date (3.3.4)
|
109
|
+
docile (1.4.1)
|
110
|
+
drb (2.2.1)
|
111
|
+
erubi (1.13.0)
|
112
|
+
ffi (1.17.0-aarch64-linux-gnu)
|
113
|
+
ffi (1.17.0-aarch64-linux-musl)
|
114
|
+
ffi (1.17.0-arm-linux-gnu)
|
115
|
+
ffi (1.17.0-arm-linux-musl)
|
116
|
+
ffi (1.17.0-arm64-darwin)
|
117
|
+
ffi (1.17.0-x86-linux-gnu)
|
118
|
+
ffi (1.17.0-x86-linux-musl)
|
119
|
+
ffi (1.17.0-x86_64-darwin)
|
120
|
+
ffi (1.17.0-x86_64-linux-gnu)
|
121
|
+
ffi (1.17.0-x86_64-linux-musl)
|
122
|
+
globalid (1.2.1)
|
123
|
+
activesupport (>= 6.1)
|
124
|
+
i18n (1.14.6)
|
103
125
|
concurrent-ruby (~> 1.0)
|
104
|
-
|
105
|
-
|
126
|
+
io-console (0.7.2)
|
127
|
+
irb (1.14.1)
|
128
|
+
rdoc (>= 4.0.0)
|
129
|
+
reline (>= 0.4.2)
|
130
|
+
json (2.7.2)
|
131
|
+
language_server-protocol (3.17.0.3)
|
132
|
+
listen (3.9.0)
|
133
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
134
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
135
|
+
logger (1.6.1)
|
136
|
+
loofah (2.22.0)
|
106
137
|
crass (~> 1.0.2)
|
107
|
-
nokogiri (>= 1.
|
138
|
+
nokogiri (>= 1.12.0)
|
108
139
|
mail (2.8.1)
|
109
140
|
mini_mime (>= 0.1.1)
|
110
141
|
net-imap
|
111
142
|
net-pop
|
112
143
|
net-smtp
|
113
|
-
marcel (1.0.
|
144
|
+
marcel (1.0.4)
|
114
145
|
matrix (0.4.2)
|
115
|
-
|
116
|
-
mini_mime (1.1.
|
117
|
-
minitest (5.
|
118
|
-
net-imap (0.
|
146
|
+
micro-optparse (1.2.1)
|
147
|
+
mini_mime (1.1.5)
|
148
|
+
minitest (5.25.1)
|
149
|
+
net-imap (0.5.0)
|
119
150
|
date
|
120
151
|
net-protocol
|
121
152
|
net-pop (0.1.2)
|
122
153
|
net-protocol
|
123
|
-
net-protocol (0.2.
|
154
|
+
net-protocol (0.2.2)
|
124
155
|
timeout
|
125
|
-
net-smtp (0.
|
156
|
+
net-smtp (0.5.0)
|
126
157
|
net-protocol
|
127
|
-
nio4r (2.
|
128
|
-
nokogiri (1.
|
158
|
+
nio4r (2.7.3)
|
159
|
+
nokogiri (1.16.7-aarch64-linux)
|
160
|
+
racc (~> 1.4)
|
161
|
+
nokogiri (1.16.7-arm-linux)
|
162
|
+
racc (~> 1.4)
|
163
|
+
nokogiri (1.16.7-arm64-darwin)
|
164
|
+
racc (~> 1.4)
|
165
|
+
nokogiri (1.16.7-x86-linux)
|
166
|
+
racc (~> 1.4)
|
167
|
+
nokogiri (1.16.7-x86_64-darwin)
|
168
|
+
racc (~> 1.4)
|
169
|
+
nokogiri (1.16.7-x86_64-linux)
|
129
170
|
racc (~> 1.4)
|
130
|
-
|
131
|
-
|
132
|
-
parser (3.2.2.0)
|
171
|
+
parallel (1.26.3)
|
172
|
+
parser (3.3.5.0)
|
133
173
|
ast (~> 2.4.1)
|
134
|
-
|
135
|
-
|
136
|
-
|
174
|
+
racc
|
175
|
+
psych (5.1.2)
|
176
|
+
stringio
|
177
|
+
public_suffix (6.0.1)
|
178
|
+
racc (1.8.1)
|
179
|
+
rack (3.1.8)
|
180
|
+
rack-session (2.0.0)
|
181
|
+
rack (>= 3.0.0)
|
137
182
|
rack-test (2.1.0)
|
138
183
|
rack (>= 1.3)
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
184
|
+
rackup (2.1.0)
|
185
|
+
rack (>= 3)
|
186
|
+
webrick (~> 1.8)
|
187
|
+
rails (7.2.1.1)
|
188
|
+
actioncable (= 7.2.1.1)
|
189
|
+
actionmailbox (= 7.2.1.1)
|
190
|
+
actionmailer (= 7.2.1.1)
|
191
|
+
actionpack (= 7.2.1.1)
|
192
|
+
actiontext (= 7.2.1.1)
|
193
|
+
actionview (= 7.2.1.1)
|
194
|
+
activejob (= 7.2.1.1)
|
195
|
+
activemodel (= 7.2.1.1)
|
196
|
+
activerecord (= 7.2.1.1)
|
197
|
+
activestorage (= 7.2.1.1)
|
198
|
+
activesupport (= 7.2.1.1)
|
151
199
|
bundler (>= 1.15.0)
|
152
|
-
railties (= 7.
|
153
|
-
rails-dom-testing (2.0
|
154
|
-
activesupport (>=
|
200
|
+
railties (= 7.2.1.1)
|
201
|
+
rails-dom-testing (2.2.0)
|
202
|
+
activesupport (>= 5.0.0)
|
203
|
+
minitest
|
155
204
|
nokogiri (>= 1.6)
|
156
|
-
rails-html-sanitizer (1.
|
157
|
-
loofah (~> 2.
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
205
|
+
rails-html-sanitizer (1.6.0)
|
206
|
+
loofah (~> 2.21)
|
207
|
+
nokogiri (~> 1.14)
|
208
|
+
railties (7.2.1.1)
|
209
|
+
actionpack (= 7.2.1.1)
|
210
|
+
activesupport (= 7.2.1.1)
|
211
|
+
irb (~> 1.13)
|
212
|
+
rackup (>= 1.0.0)
|
162
213
|
rake (>= 12.2)
|
163
|
-
thor (~> 1.0)
|
164
|
-
zeitwerk (~> 2.
|
214
|
+
thor (~> 1.0, >= 1.2.2)
|
215
|
+
zeitwerk (~> 2.6)
|
165
216
|
rainbow (3.1.1)
|
166
|
-
rake (13.
|
167
|
-
|
168
|
-
|
217
|
+
rake (13.2.1)
|
218
|
+
rb-fsevent (0.11.2)
|
219
|
+
rb-inotify (0.11.1)
|
220
|
+
ffi (~> 1.0)
|
221
|
+
rdoc (6.7.0)
|
222
|
+
psych (>= 4.0.0)
|
223
|
+
regexp_parser (2.9.2)
|
224
|
+
reline (0.5.10)
|
225
|
+
io-console (~> 0.5)
|
169
226
|
ricecream (0.2.1)
|
170
|
-
rubocop (1.
|
227
|
+
rubocop (1.67.0)
|
171
228
|
json (~> 2.3)
|
229
|
+
language_server-protocol (>= 3.17.0)
|
172
230
|
parallel (~> 1.10)
|
173
|
-
parser (>= 3.
|
231
|
+
parser (>= 3.3.0.2)
|
174
232
|
rainbow (>= 2.2.2, < 4.0)
|
175
|
-
regexp_parser (>=
|
176
|
-
|
177
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
233
|
+
regexp_parser (>= 2.4, < 3.0)
|
234
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
178
235
|
ruby-progressbar (~> 1.7)
|
179
236
|
unicode-display_width (>= 2.4.0, < 3.0)
|
180
|
-
rubocop-ast (1.
|
181
|
-
parser (>= 3.
|
237
|
+
rubocop-ast (1.32.3)
|
238
|
+
parser (>= 3.3.1.0)
|
182
239
|
ruby-progressbar (1.13.0)
|
240
|
+
securerandom (0.3.1)
|
183
241
|
simplecov (0.22.0)
|
184
242
|
docile (~> 1.1)
|
185
243
|
simplecov-html (~> 0.11)
|
186
244
|
simplecov_json_formatter (~> 0.1)
|
187
|
-
simplecov-html (0.
|
245
|
+
simplecov-html (0.13.1)
|
188
246
|
simplecov_json_formatter (0.1.4)
|
189
|
-
slim (5.1
|
247
|
+
slim (5.2.1)
|
190
248
|
temple (~> 0.10.0)
|
191
|
-
tilt (>= 2.0
|
192
|
-
spring (4.
|
193
|
-
sqlite3 (1.
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
249
|
+
tilt (>= 2.1.0)
|
250
|
+
spring (4.2.1)
|
251
|
+
sqlite3 (2.1.0-aarch64-linux-gnu)
|
252
|
+
sqlite3 (2.1.0-aarch64-linux-musl)
|
253
|
+
sqlite3 (2.1.0-arm-linux-gnu)
|
254
|
+
sqlite3 (2.1.0-arm-linux-musl)
|
255
|
+
sqlite3 (2.1.0-arm64-darwin)
|
256
|
+
sqlite3 (2.1.0-x86-linux-gnu)
|
257
|
+
sqlite3 (2.1.0-x86-linux-musl)
|
258
|
+
sqlite3 (2.1.0-x86_64-darwin)
|
259
|
+
sqlite3 (2.1.0-x86_64-linux-gnu)
|
260
|
+
sqlite3 (2.1.0-x86_64-linux-musl)
|
261
|
+
stringio (3.1.1)
|
262
|
+
temple (0.10.3)
|
263
|
+
thor (1.3.2)
|
264
|
+
tilt (2.4.0)
|
265
|
+
timeout (0.4.1)
|
198
266
|
tzinfo (2.0.6)
|
199
267
|
concurrent-ruby (~> 1.0)
|
200
|
-
unicode-display_width (2.
|
201
|
-
|
268
|
+
unicode-display_width (2.6.0)
|
269
|
+
useragent (0.16.10)
|
270
|
+
webrick (1.8.2)
|
271
|
+
websocket-driver (0.7.6)
|
202
272
|
websocket-extensions (>= 0.1.0)
|
203
273
|
websocket-extensions (0.1.5)
|
204
274
|
xpath (3.2.0)
|
205
275
|
nokogiri (~> 1.8)
|
206
|
-
zeitwerk (2.
|
276
|
+
zeitwerk (2.7.1)
|
207
277
|
|
208
278
|
PLATFORMS
|
209
|
-
|
279
|
+
aarch64-linux
|
280
|
+
aarch64-linux-gnu
|
281
|
+
aarch64-linux-musl
|
282
|
+
arm-linux
|
283
|
+
arm-linux-gnu
|
284
|
+
arm-linux-musl
|
285
|
+
arm64-darwin
|
286
|
+
x86-linux
|
287
|
+
x86-linux-gnu
|
288
|
+
x86-linux-musl
|
289
|
+
x86_64-darwin
|
290
|
+
x86_64-linux-gnu
|
291
|
+
x86_64-linux-musl
|
210
292
|
|
211
293
|
DEPENDENCIES
|
212
294
|
appraisal
|
213
295
|
capybara
|
214
296
|
combustion
|
297
|
+
cuco
|
215
298
|
formie!
|
216
299
|
minitest
|
217
|
-
observr
|
218
300
|
rails
|
219
301
|
ricecream
|
220
302
|
rubocop
|
@@ -224,4 +306,4 @@ DEPENDENCIES
|
|
224
306
|
sqlite3
|
225
307
|
|
226
308
|
BUNDLED WITH
|
227
|
-
2.
|
309
|
+
2.5.22
|
data/MIT-LICENSE
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Copyright (c) 2011-2023 Dittmar Krall (www.matiq.com)
|
1
|
+
Copyright (c) 2011-2024 Dittmar Krall (www.matiq.com)
|
4
2
|
|
5
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
6
4
|
a copy of this software and associated documentation files (the
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Formie
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/formie.svg)](https://badge.fury.io/rb/formie)
|
4
|
+
[![GEM Downloads](https://img.shields.io/gem/dt/formie?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/formie)
|
5
|
+
[![rake](https://github.com/matique/formie/actions/workflows/rake.yml/badge.svg)](https://github.com/matique/formie/actions/workflows/rake.yml)
|
6
|
+
[![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/standardrb/standard)
|
7
|
+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)
|
4
8
|
|
5
9
|
Tired of programming each HTML tag?
|
6
10
|
Are you in search of DRYness for Rails views?
|
@@ -102,7 +106,5 @@ span Hello Slim
|
|
102
106
|
|
103
107
|
## Miscellaneous
|
104
108
|
|
105
|
-
Copyright (c) 2009-
|
106
|
-
released under the MIT license
|
107
|
-
|
108
|
-
* https://opensource.org/licenses/MIT
|
109
|
+
Copyright (c) 2009-2024 Dittmar Krall (www.matiq.com),
|
110
|
+
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/formie.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.name = "formie"
|
7
7
|
s.version = Formie::VERSION
|
8
8
|
s.summary = "Formie is like a Rails helper, but uses the notation of a partial."
|
9
|
-
s.description = <<-
|
9
|
+
s.description = <<-END
|
10
10
|
Formie implements low level template-based Rails helpers. It injects
|
11
11
|
the formies into the ActionView module. The form-bounded as well as
|
12
12
|
the unbounded templates are supported. Still, the ActionView
|
@@ -14,17 +14,14 @@ Gem::Specification.new do |s|
|
|
14
14
|
END
|
15
15
|
s.authors = ["Dittmar Krall"]
|
16
16
|
s.email = ["dittmar.krall@matiq.com"]
|
17
|
-
s.homepage = "
|
17
|
+
s.homepage = "https://github.com/matique/formie"
|
18
18
|
s.license = "MIT"
|
19
19
|
s.platform = Gem::Platform::RUBY
|
20
20
|
|
21
|
-
s.metadata["source_code_uri"] = "https://github.com/matique/formie"
|
22
|
-
|
23
21
|
s.files = `git ls-files -z`.split("\x0")
|
24
22
|
s.require_paths = ["lib"]
|
25
23
|
|
26
24
|
s.add_development_dependency "appraisal"
|
27
25
|
s.add_development_dependency "combustion"
|
28
26
|
s.add_development_dependency "minitest"
|
29
|
-
s.add_development_dependency "sqlite3"
|
30
27
|
end
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "rails", "~>
|
6
|
-
gem "dryer-config", "~> 6.0"
|
5
|
+
gem "rails", "~> 7.1"
|
7
6
|
|
8
7
|
group :test do
|
9
8
|
gem "capybara"
|
10
|
-
gem "
|
9
|
+
gem "cuco"
|
11
10
|
gem "ricecream"
|
12
11
|
gem "rubocop", require: false
|
12
|
+
gem "sqlite3"
|
13
13
|
gem "simplecov", require: false
|
14
14
|
gem "slim"
|
15
15
|
gem "spring"
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "rails", "~> 7.
|
6
|
-
gem "dryer-config", "~> 7.0"
|
5
|
+
gem "rails", "~> 7.2"
|
7
6
|
|
8
7
|
group :test do
|
9
8
|
gem "capybara"
|
10
|
-
gem "
|
9
|
+
gem "cuco"
|
11
10
|
gem "ricecream"
|
12
11
|
gem "rubocop", require: false
|
12
|
+
gem "sqlite3"
|
13
13
|
gem "simplecov", require: false
|
14
14
|
gem "slim"
|
15
15
|
gem "spring"
|
data/lib/formie/version.rb
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
# rubocop: disable all
|
2
2
|
|
3
3
|
module Formie
|
4
|
-
VERSION = "1.1.
|
4
|
+
VERSION = "1.1.3" # 2024-10-20
|
5
|
+
# VERSION = "1.1.2" # 2023-12-10
|
6
|
+
# VERSION = "1.1.1" # 2023-04-17
|
5
7
|
# VERSION = "1.1.0" # 2022-12-18
|
6
8
|
# VERSION = "1.0.4" # 2021-06-20
|
7
9
|
# VERSION = "1.0.3" # 2020-07-23
|
data/test/test_helper.rb
CHANGED
@@ -9,7 +9,7 @@ require "combustion"
|
|
9
9
|
Combustion.path = "test/internal"
|
10
10
|
Combustion.initialize! :active_record
|
11
11
|
|
12
|
-
require "rails
|
12
|
+
require "capybara/rails"
|
13
13
|
require "minitest/autorun"
|
14
14
|
require "minitest/benchmark"
|
15
|
-
require "
|
15
|
+
require "rails/test_help"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: formie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dittmar Krall
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
@@ -52,20 +52,6 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: sqlite3
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
55
|
description: |2
|
70
56
|
Formie implements low level template-based Rails helpers. It injects
|
71
57
|
the formies into the ActionView module. The form-bounded as well as
|
@@ -89,8 +75,8 @@ files:
|
|
89
75
|
- Rakefile
|
90
76
|
- config/initializers/formie.rb
|
91
77
|
- formie.gemspec
|
92
|
-
- gemfiles/
|
93
|
-
- gemfiles/rails_7.
|
78
|
+
- gemfiles/rails_7.1.gemfile
|
79
|
+
- gemfiles/rails_7.2.gemfile
|
94
80
|
- lib/formie.rb
|
95
81
|
- lib/formie/engine.rb
|
96
82
|
- lib/formie/version.rb
|
@@ -125,12 +111,11 @@ files:
|
|
125
111
|
- test/internal/db/migrate/20141016161801_create_orders.rb
|
126
112
|
- test/internal/db/schema.rb
|
127
113
|
- test/test_helper.rb
|
128
|
-
homepage:
|
114
|
+
homepage: https://github.com/matique/formie
|
129
115
|
licenses:
|
130
116
|
- MIT
|
131
|
-
metadata:
|
132
|
-
|
133
|
-
post_install_message:
|
117
|
+
metadata: {}
|
118
|
+
post_install_message:
|
134
119
|
rdoc_options: []
|
135
120
|
require_paths:
|
136
121
|
- lib
|
@@ -145,8 +130,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
130
|
- !ruby/object:Gem::Version
|
146
131
|
version: '0'
|
147
132
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
149
|
-
signing_key:
|
133
|
+
rubygems_version: 3.5.20
|
134
|
+
signing_key:
|
150
135
|
specification_version: 4
|
151
136
|
summary: Formie is like a Rails helper, but uses the notation of a partial.
|
152
137
|
test_files: []
|