formie 1.1.2 → 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 +9 -4
- data/.gitignore +4 -7
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/Appraisals +14 -10
- data/Gemfile +2 -1
- data/Gemfile.lock +169 -125
- data/MIT-LICENSE +1 -3
- data/README.md +4 -2
- data/formie.gemspec +0 -1
- data/gemfiles/rails_7.1.gemfile +2 -1
- data/gemfiles/{rails_6.1.gemfile → rails_7.2.gemfile} +3 -3
- data/lib/formie/version.rb +2 -1
- data/test/test_helper.rb +2 -2
- metadata +7 -22
- data/gemfiles/rails_7.0.gemfile +0 -18
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,20 +8,25 @@ jobs:
|
|
8
8
|
strategy:
|
9
9
|
fail-fast: false
|
10
10
|
matrix:
|
11
|
-
ruby_version: ["3.
|
11
|
+
ruby_version: ["3.2", "3.3"]
|
12
12
|
gemfile:
|
13
13
|
- Gemfile
|
14
|
+
- gemfiles/Gemfile.rails-7.2
|
14
15
|
- gemfiles/Gemfile.rails-7.1
|
15
|
-
- gemfiles/Gemfile.rails-7.0
|
16
|
-
- gemfiles/Gemfile.rails-6.1
|
17
16
|
runs-on: ubuntu-latest
|
18
17
|
|
19
18
|
steps:
|
20
|
-
- uses: actions/checkout@
|
19
|
+
- uses: actions/checkout@v4
|
21
20
|
- name: Set up Ruby
|
22
21
|
uses: ruby/setup-ruby@v1
|
23
22
|
with:
|
24
23
|
ruby-version: ${{ matrix.ruby_version }}
|
25
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
|
26
31
|
- name: Build and test with Rake
|
27
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,17 +1,21 @@
|
|
1
|
-
appraise "rails-7.
|
2
|
-
gem "rails", "~> 7.
|
1
|
+
appraise "rails-7.2" do
|
2
|
+
gem "rails", "~> 7.2"
|
3
3
|
end
|
4
4
|
|
5
|
-
appraise "rails-7.
|
6
|
-
gem "rails", "~> 7.
|
7
|
-
gem "dryer-config", "~> 7.0"
|
8
|
-
end
|
9
|
-
|
10
|
-
appraise "rails-6.1" do
|
11
|
-
gem "rails", "~> 6.1"
|
12
|
-
gem "dryer-config", "~> 6.0"
|
5
|
+
appraise "rails-7.1" do
|
6
|
+
gem "rails", "~> 7.1"
|
13
7
|
end
|
14
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
|
+
#
|
15
19
|
# appraise "rails-6.0" do
|
16
20
|
# gem "rails", "~> 6.0"
|
17
21
|
# end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,126 +1,138 @@
|
|
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.1.
|
10
|
-
actionpack (= 7.1.
|
11
|
-
activesupport (= 7.1.
|
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
14
|
zeitwerk (~> 2.6)
|
15
|
-
actionmailbox (7.1.
|
16
|
-
actionpack (= 7.1.
|
17
|
-
activejob (= 7.1.
|
18
|
-
activerecord (= 7.1.
|
19
|
-
activestorage (= 7.1.
|
20
|
-
activesupport (= 7.1.
|
21
|
-
mail (>= 2.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
activejob (= 7.1.2)
|
29
|
-
activesupport (= 7.1.2)
|
30
|
-
mail (~> 2.5, >= 2.5.4)
|
31
|
-
net-imap
|
32
|
-
net-pop
|
33
|
-
net-smtp
|
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)
|
34
28
|
rails-dom-testing (~> 2.2)
|
35
|
-
actionpack (7.1.
|
36
|
-
actionview (= 7.1.
|
37
|
-
activesupport (= 7.1.
|
29
|
+
actionpack (7.2.1.1)
|
30
|
+
actionview (= 7.2.1.1)
|
31
|
+
activesupport (= 7.2.1.1)
|
38
32
|
nokogiri (>= 1.8.5)
|
39
33
|
racc
|
40
|
-
rack (>= 2.2.4)
|
34
|
+
rack (>= 2.2.4, < 3.2)
|
41
35
|
rack-session (>= 1.0.1)
|
42
36
|
rack-test (>= 0.6.3)
|
43
37
|
rails-dom-testing (~> 2.2)
|
44
38
|
rails-html-sanitizer (~> 1.6)
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
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)
|
50
45
|
globalid (>= 0.6.0)
|
51
46
|
nokogiri (>= 1.8.5)
|
52
|
-
actionview (7.1.
|
53
|
-
activesupport (= 7.1.
|
47
|
+
actionview (7.2.1.1)
|
48
|
+
activesupport (= 7.2.1.1)
|
54
49
|
builder (~> 3.1)
|
55
50
|
erubi (~> 1.11)
|
56
51
|
rails-dom-testing (~> 2.2)
|
57
52
|
rails-html-sanitizer (~> 1.6)
|
58
|
-
activejob (7.1.
|
59
|
-
activesupport (= 7.1.
|
53
|
+
activejob (7.2.1.1)
|
54
|
+
activesupport (= 7.2.1.1)
|
60
55
|
globalid (>= 0.3.6)
|
61
|
-
activemodel (7.1.
|
62
|
-
activesupport (= 7.1.
|
63
|
-
activerecord (7.1.
|
64
|
-
activemodel (= 7.1.
|
65
|
-
activesupport (= 7.1.
|
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)
|
66
61
|
timeout (>= 0.4.0)
|
67
|
-
activestorage (7.1.
|
68
|
-
actionpack (= 7.1.
|
69
|
-
activejob (= 7.1.
|
70
|
-
activerecord (= 7.1.
|
71
|
-
activesupport (= 7.1.
|
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)
|
72
67
|
marcel (~> 1.0)
|
73
|
-
activesupport (7.1.
|
68
|
+
activesupport (7.2.1.1)
|
74
69
|
base64
|
75
70
|
bigdecimal
|
76
|
-
concurrent-ruby (~> 1.0, >= 1.
|
71
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
77
72
|
connection_pool (>= 2.2.5)
|
78
73
|
drb
|
79
74
|
i18n (>= 1.6, < 2)
|
75
|
+
logger (>= 1.4.2)
|
80
76
|
minitest (>= 5.1)
|
81
|
-
|
82
|
-
tzinfo (~> 2.0)
|
83
|
-
addressable (2.8.
|
84
|
-
public_suffix (>= 2.0.2, <
|
77
|
+
securerandom (>= 0.3)
|
78
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
79
|
+
addressable (2.8.7)
|
80
|
+
public_suffix (>= 2.0.2, < 7.0)
|
85
81
|
appraisal (2.5.0)
|
86
82
|
bundler
|
87
83
|
rake
|
88
84
|
thor (>= 0.14.0)
|
89
85
|
ast (2.4.2)
|
90
86
|
base64 (0.2.0)
|
91
|
-
bigdecimal (3.1.
|
92
|
-
builder (3.
|
93
|
-
capybara (3.
|
87
|
+
bigdecimal (3.1.8)
|
88
|
+
builder (3.3.0)
|
89
|
+
capybara (3.40.0)
|
94
90
|
addressable
|
95
91
|
matrix
|
96
92
|
mini_mime (>= 0.1.3)
|
97
|
-
nokogiri (~> 1.
|
93
|
+
nokogiri (~> 1.11)
|
98
94
|
rack (>= 1.6.0)
|
99
95
|
rack-test (>= 0.6.3)
|
100
96
|
regexp_parser (>= 1.5, < 3.0)
|
101
97
|
xpath (~> 3.2)
|
102
|
-
combustion (1.
|
98
|
+
combustion (1.5.0)
|
103
99
|
activesupport (>= 3.0.0)
|
104
100
|
railties (>= 3.0.0)
|
105
101
|
thor (>= 0.14.6)
|
106
|
-
concurrent-ruby (1.
|
102
|
+
concurrent-ruby (1.3.4)
|
107
103
|
connection_pool (2.4.1)
|
108
104
|
crass (1.0.6)
|
105
|
+
cuco (0.1.2)
|
106
|
+
listen
|
107
|
+
micro-optparse
|
109
108
|
date (3.3.4)
|
110
|
-
docile (1.4.
|
111
|
-
drb (2.2.
|
112
|
-
|
113
|
-
|
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)
|
114
122
|
globalid (1.2.1)
|
115
123
|
activesupport (>= 6.1)
|
116
|
-
i18n (1.14.
|
124
|
+
i18n (1.14.6)
|
117
125
|
concurrent-ruby (~> 1.0)
|
118
|
-
io-console (0.
|
119
|
-
irb (1.
|
120
|
-
rdoc
|
121
|
-
reline (>= 0.
|
122
|
-
json (2.7.
|
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)
|
123
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)
|
124
136
|
loofah (2.22.0)
|
125
137
|
crass (~> 1.0.2)
|
126
138
|
nokogiri (>= 1.12.0)
|
@@ -129,33 +141,42 @@ GEM
|
|
129
141
|
net-imap
|
130
142
|
net-pop
|
131
143
|
net-smtp
|
132
|
-
marcel (1.0.
|
144
|
+
marcel (1.0.4)
|
133
145
|
matrix (0.4.2)
|
146
|
+
micro-optparse (1.2.1)
|
134
147
|
mini_mime (1.1.5)
|
135
|
-
minitest (5.
|
136
|
-
|
137
|
-
net-imap (0.4.7)
|
148
|
+
minitest (5.25.1)
|
149
|
+
net-imap (0.5.0)
|
138
150
|
date
|
139
151
|
net-protocol
|
140
152
|
net-pop (0.1.2)
|
141
153
|
net-protocol
|
142
154
|
net-protocol (0.2.2)
|
143
155
|
timeout
|
144
|
-
net-smtp (0.
|
156
|
+
net-smtp (0.5.0)
|
145
157
|
net-protocol
|
146
|
-
nio4r (2.7.
|
147
|
-
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)
|
148
170
|
racc (~> 1.4)
|
149
|
-
|
150
|
-
|
151
|
-
parser (3.2.2.4)
|
171
|
+
parallel (1.26.3)
|
172
|
+
parser (3.3.5.0)
|
152
173
|
ast (~> 2.4.1)
|
153
174
|
racc
|
154
|
-
psych (5.1.
|
175
|
+
psych (5.1.2)
|
155
176
|
stringio
|
156
|
-
public_suffix (
|
157
|
-
racc (1.
|
158
|
-
rack (3.
|
177
|
+
public_suffix (6.0.1)
|
178
|
+
racc (1.8.1)
|
179
|
+
rack (3.1.8)
|
159
180
|
rack-session (2.0.0)
|
160
181
|
rack (>= 3.0.0)
|
161
182
|
rack-test (2.1.0)
|
@@ -163,20 +184,20 @@ GEM
|
|
163
184
|
rackup (2.1.0)
|
164
185
|
rack (>= 3)
|
165
186
|
webrick (~> 1.8)
|
166
|
-
rails (7.1.
|
167
|
-
actioncable (= 7.1.
|
168
|
-
actionmailbox (= 7.1.
|
169
|
-
actionmailer (= 7.1.
|
170
|
-
actionpack (= 7.1.
|
171
|
-
actiontext (= 7.1.
|
172
|
-
actionview (= 7.1.
|
173
|
-
activejob (= 7.1.
|
174
|
-
activemodel (= 7.1.
|
175
|
-
activerecord (= 7.1.
|
176
|
-
activestorage (= 7.1.
|
177
|
-
activesupport (= 7.1.
|
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)
|
178
199
|
bundler (>= 1.15.0)
|
179
|
-
railties (= 7.1.
|
200
|
+
railties (= 7.2.1.1)
|
180
201
|
rails-dom-testing (2.2.0)
|
181
202
|
activesupport (>= 5.0.0)
|
182
203
|
minitest
|
@@ -184,75 +205,98 @@ GEM
|
|
184
205
|
rails-html-sanitizer (1.6.0)
|
185
206
|
loofah (~> 2.21)
|
186
207
|
nokogiri (~> 1.14)
|
187
|
-
railties (7.1.
|
188
|
-
actionpack (= 7.1.
|
189
|
-
activesupport (= 7.1.
|
190
|
-
irb
|
208
|
+
railties (7.2.1.1)
|
209
|
+
actionpack (= 7.2.1.1)
|
210
|
+
activesupport (= 7.2.1.1)
|
211
|
+
irb (~> 1.13)
|
191
212
|
rackup (>= 1.0.0)
|
192
213
|
rake (>= 12.2)
|
193
214
|
thor (~> 1.0, >= 1.2.2)
|
194
215
|
zeitwerk (~> 2.6)
|
195
216
|
rainbow (3.1.1)
|
196
|
-
rake (13.1
|
197
|
-
|
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)
|
198
222
|
psych (>= 4.0.0)
|
199
|
-
regexp_parser (2.
|
200
|
-
reline (0.
|
223
|
+
regexp_parser (2.9.2)
|
224
|
+
reline (0.5.10)
|
201
225
|
io-console (~> 0.5)
|
202
|
-
rexml (3.2.6)
|
203
226
|
ricecream (0.2.1)
|
204
|
-
rubocop (1.
|
227
|
+
rubocop (1.67.0)
|
205
228
|
json (~> 2.3)
|
206
229
|
language_server-protocol (>= 3.17.0)
|
207
230
|
parallel (~> 1.10)
|
208
|
-
parser (>= 3.
|
231
|
+
parser (>= 3.3.0.2)
|
209
232
|
rainbow (>= 2.2.2, < 4.0)
|
210
|
-
regexp_parser (>=
|
211
|
-
|
212
|
-
rubocop-ast (>= 1.30.0, < 2.0)
|
233
|
+
regexp_parser (>= 2.4, < 3.0)
|
234
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
213
235
|
ruby-progressbar (~> 1.7)
|
214
236
|
unicode-display_width (>= 2.4.0, < 3.0)
|
215
|
-
rubocop-ast (1.
|
216
|
-
parser (>= 3.
|
237
|
+
rubocop-ast (1.32.3)
|
238
|
+
parser (>= 3.3.1.0)
|
217
239
|
ruby-progressbar (1.13.0)
|
218
|
-
|
240
|
+
securerandom (0.3.1)
|
219
241
|
simplecov (0.22.0)
|
220
242
|
docile (~> 1.1)
|
221
243
|
simplecov-html (~> 0.11)
|
222
244
|
simplecov_json_formatter (~> 0.1)
|
223
|
-
simplecov-html (0.
|
245
|
+
simplecov-html (0.13.1)
|
224
246
|
simplecov_json_formatter (0.1.4)
|
225
|
-
slim (5.2.
|
247
|
+
slim (5.2.1)
|
226
248
|
temple (~> 0.10.0)
|
227
249
|
tilt (>= 2.1.0)
|
228
|
-
spring (4.1
|
229
|
-
sqlite3 (1.
|
230
|
-
|
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)
|
231
262
|
temple (0.10.3)
|
232
|
-
thor (1.3.
|
233
|
-
tilt (2.
|
263
|
+
thor (1.3.2)
|
264
|
+
tilt (2.4.0)
|
234
265
|
timeout (0.4.1)
|
235
266
|
tzinfo (2.0.6)
|
236
267
|
concurrent-ruby (~> 1.0)
|
237
|
-
unicode-display_width (2.
|
238
|
-
|
268
|
+
unicode-display_width (2.6.0)
|
269
|
+
useragent (0.16.10)
|
270
|
+
webrick (1.8.2)
|
239
271
|
websocket-driver (0.7.6)
|
240
272
|
websocket-extensions (>= 0.1.0)
|
241
273
|
websocket-extensions (0.1.5)
|
242
274
|
xpath (3.2.0)
|
243
275
|
nokogiri (~> 1.8)
|
244
|
-
zeitwerk (2.
|
276
|
+
zeitwerk (2.7.1)
|
245
277
|
|
246
278
|
PLATFORMS
|
247
|
-
|
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
|
248
292
|
|
249
293
|
DEPENDENCIES
|
250
294
|
appraisal
|
251
295
|
capybara
|
252
296
|
combustion
|
297
|
+
cuco
|
253
298
|
formie!
|
254
299
|
minitest
|
255
|
-
observr
|
256
300
|
rails
|
257
301
|
ricecream
|
258
302
|
rubocop
|
@@ -262,4 +306,4 @@ DEPENDENCIES
|
|
262
306
|
sqlite3
|
263
307
|
|
264
308
|
BUNDLED WITH
|
265
|
-
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
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/formie.svg)](https://badge.fury.io/rb/formie)
|
4
4
|
[![GEM Downloads](https://img.shields.io/gem/dt/formie?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/formie)
|
5
|
-
|
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/)
|
6
8
|
|
7
9
|
Tired of programming each HTML tag?
|
8
10
|
Are you in search of DRYness for Rails views?
|
@@ -104,5 +106,5 @@ span Hello Slim
|
|
104
106
|
|
105
107
|
## Miscellaneous
|
106
108
|
|
107
|
-
Copyright (c) 2009-
|
109
|
+
Copyright (c) 2009-2024 Dittmar Krall (www.matiq.com),
|
108
110
|
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/formie.gemspec
CHANGED
data/gemfiles/rails_7.1.gemfile
CHANGED
@@ -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.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
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,9 +75,8 @@ files:
|
|
89
75
|
- Rakefile
|
90
76
|
- config/initializers/formie.rb
|
91
77
|
- formie.gemspec
|
92
|
-
- gemfiles/rails_6.1.gemfile
|
93
|
-
- gemfiles/rails_7.0.gemfile
|
94
78
|
- gemfiles/rails_7.1.gemfile
|
79
|
+
- gemfiles/rails_7.2.gemfile
|
95
80
|
- lib/formie.rb
|
96
81
|
- lib/formie/engine.rb
|
97
82
|
- lib/formie/version.rb
|
@@ -130,7 +115,7 @@ homepage: https://github.com/matique/formie
|
|
130
115
|
licenses:
|
131
116
|
- MIT
|
132
117
|
metadata: {}
|
133
|
-
post_install_message:
|
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: []
|
data/gemfiles/rails_7.0.gemfile
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "rails", "~> 7.0"
|
6
|
-
gem "dryer-config", "~> 7.0"
|
7
|
-
|
8
|
-
group :test do
|
9
|
-
gem "capybara"
|
10
|
-
gem "observr"
|
11
|
-
gem "ricecream"
|
12
|
-
gem "rubocop", require: false
|
13
|
-
gem "simplecov", require: false
|
14
|
-
gem "slim"
|
15
|
-
gem "spring"
|
16
|
-
end
|
17
|
-
|
18
|
-
gemspec path: "../"
|