act_with_flags 3.1.3 → 3.1.5

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: 85f31137d2c12e55c9831fb363e297c245af79cd196a9f1990a8cd1047ba9503
4
- data.tar.gz: 9a6e2f01fea005bf6e8677ea15cde979cdd0c10d9c067f47eff4a586015c4b50
3
+ metadata.gz: 22069f8b924b4cd321f0a8ca787ba6eaa661257b8ec9c8a3859f3a848b767335
4
+ data.tar.gz: d9fbc47cef0cb86f8782e13f1226df772de341002232b3f001f3eb2ffee6ba51
5
5
  SHA512:
6
- metadata.gz: 400c97f67d917b0e9416846853122a5008240fe38b8837380af9b9284f09c7c68fade3e754acdd7ce988929c01aad49325502f90b0df3cb9fc05e4cc81774afd
7
- data.tar.gz: 3a9a277ca14297b86ec41da731e9b76141fcf69c1950b0d72e34054decedd357b3daa86e9ebfd6ab5b6a67db7af83e2a95350c3c5b8f61bb4b67f4f1fc0ad4da
6
+ metadata.gz: e29284f509644be72e617102d29e0c2343b062038a4fa0424531f6207d05bc55ece8b2b9a15dc57763a8d32feeacf0199d8f914caa2edb96c1d9487c293ab983
7
+ data.tar.gz: a08900cc6e946ef122a27d07bd51a7c12c8294cc7e4c8b13911ec7b5fe8f9ec9f49c4e4d000f753e8ee803fda5bcb196ea9dda631699947bbe02652be16e53fd
@@ -8,19 +8,20 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- os: [ubuntu-latest]
12
- ruby: ["2.7", "3.0", "3.2", head]
13
- test_command: ["bundle exec rake test"]
14
- runs-on: ${{ matrix.os }}
11
+ ruby_version: [3.2]
12
+ gemfile:
13
+ - Gemfile
14
+ - gemfiles/Gemfile.rails-7.1
15
+ - gemfiles/Gemfile.rails-7.0
16
+ - gemfiles/Gemfile.rails-6.1
17
+ runs-on: ubuntu-latest
15
18
 
16
19
  steps:
17
- - uses: actions/checkout@v3
18
- - uses: ruby/setup-ruby@v1
19
- with:
20
- ruby-version: ${{ matrix.ruby }}
21
- - name: Bundle install
22
- run: |
23
- bundle config path /home/runner/bundle
24
- bundle install
25
- bundle update
26
- - run: ${{ matrix.test_command }}
20
+ - uses: actions/checkout@v3
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby_version }}
25
+ bundler-cache: true
26
+ - name: Build and test with Rake
27
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -1,7 +1,14 @@
1
1
  .bundle/
2
2
  coverage/
3
+ .watchr
3
4
 
4
5
  *.gem
5
6
  *.log
6
7
  *.lock
7
8
  *.sqlite3
9
+ **/*.gem
10
+ **/*.log
11
+ **/*.lock
12
+ **/test.sqlite3*
13
+
14
+ test/internal/tmp/
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-7.0
1
+ rails-7.1
data/Appraisals CHANGED
@@ -1,15 +1,19 @@
1
+ appraise "rails-7.1" do
2
+ gem "rails", "~> 7.1"
3
+ end
4
+
1
5
  appraise "rails-7.0" do
2
6
  gem "rails", "~> 7.0"
3
7
  end
4
8
 
5
- # appraise "rails-6.1" do
6
- # gem "rails", "~> 6.0"
7
- # end
8
-
9
- appraise "rails-6.0" do
10
- gem "rails", "~> 6.0.0"
9
+ appraise "rails-6.1" do
10
+ gem "rails", "~> 6.0"
11
11
  end
12
12
 
13
+ # appraise "rails-6.0" do
14
+ # gem "rails", "~> 6.0.0"
15
+ # end
16
+
13
17
  # appraise 'rails-5.2' do
14
18
  # gem 'rails', '~> 5.2.0'
15
19
  # end
data/Gemfile.lock CHANGED
@@ -1,197 +1,243 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- act_with_flags (3.1.3)
4
+ act_with_flags (3.1.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actioncable (7.0.4.3)
10
- actionpack (= 7.0.4.3)
11
- activesupport (= 7.0.4.3)
9
+ actioncable (7.1.2)
10
+ actionpack (= 7.1.2)
11
+ activesupport (= 7.1.2)
12
12
  nio4r (~> 2.0)
13
13
  websocket-driver (>= 0.6.1)
14
- actionmailbox (7.0.4.3)
15
- actionpack (= 7.0.4.3)
16
- activejob (= 7.0.4.3)
17
- activerecord (= 7.0.4.3)
18
- activestorage (= 7.0.4.3)
19
- activesupport (= 7.0.4.3)
14
+ zeitwerk (~> 2.6)
15
+ actionmailbox (7.1.2)
16
+ actionpack (= 7.1.2)
17
+ activejob (= 7.1.2)
18
+ activerecord (= 7.1.2)
19
+ activestorage (= 7.1.2)
20
+ activesupport (= 7.1.2)
20
21
  mail (>= 2.7.1)
21
22
  net-imap
22
23
  net-pop
23
24
  net-smtp
24
- actionmailer (7.0.4.3)
25
- actionpack (= 7.0.4.3)
26
- actionview (= 7.0.4.3)
27
- activejob (= 7.0.4.3)
28
- activesupport (= 7.0.4.3)
25
+ actionmailer (7.1.2)
26
+ actionpack (= 7.1.2)
27
+ actionview (= 7.1.2)
28
+ activejob (= 7.1.2)
29
+ activesupport (= 7.1.2)
29
30
  mail (~> 2.5, >= 2.5.4)
30
31
  net-imap
31
32
  net-pop
32
33
  net-smtp
33
- rails-dom-testing (~> 2.0)
34
- actionpack (7.0.4.3)
35
- actionview (= 7.0.4.3)
36
- activesupport (= 7.0.4.3)
37
- rack (~> 2.0, >= 2.2.0)
34
+ rails-dom-testing (~> 2.2)
35
+ actionpack (7.1.2)
36
+ actionview (= 7.1.2)
37
+ activesupport (= 7.1.2)
38
+ nokogiri (>= 1.8.5)
39
+ racc
40
+ rack (>= 2.2.4)
41
+ rack-session (>= 1.0.1)
38
42
  rack-test (>= 0.6.3)
39
- rails-dom-testing (~> 2.0)
40
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
41
- actiontext (7.0.4.3)
42
- actionpack (= 7.0.4.3)
43
- activerecord (= 7.0.4.3)
44
- activestorage (= 7.0.4.3)
45
- activesupport (= 7.0.4.3)
43
+ rails-dom-testing (~> 2.2)
44
+ rails-html-sanitizer (~> 1.6)
45
+ actiontext (7.1.2)
46
+ actionpack (= 7.1.2)
47
+ activerecord (= 7.1.2)
48
+ activestorage (= 7.1.2)
49
+ activesupport (= 7.1.2)
46
50
  globalid (>= 0.6.0)
47
51
  nokogiri (>= 1.8.5)
48
- actionview (7.0.4.3)
49
- activesupport (= 7.0.4.3)
52
+ actionview (7.1.2)
53
+ activesupport (= 7.1.2)
50
54
  builder (~> 3.1)
51
- erubi (~> 1.4)
52
- rails-dom-testing (~> 2.0)
53
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (7.0.4.3)
55
- activesupport (= 7.0.4.3)
55
+ erubi (~> 1.11)
56
+ rails-dom-testing (~> 2.2)
57
+ rails-html-sanitizer (~> 1.6)
58
+ activejob (7.1.2)
59
+ activesupport (= 7.1.2)
56
60
  globalid (>= 0.3.6)
57
- activemodel (7.0.4.3)
58
- activesupport (= 7.0.4.3)
59
- activerecord (7.0.4.3)
60
- activemodel (= 7.0.4.3)
61
- activesupport (= 7.0.4.3)
62
- activestorage (7.0.4.3)
63
- actionpack (= 7.0.4.3)
64
- activejob (= 7.0.4.3)
65
- activerecord (= 7.0.4.3)
66
- activesupport (= 7.0.4.3)
61
+ activemodel (7.1.2)
62
+ activesupport (= 7.1.2)
63
+ activerecord (7.1.2)
64
+ activemodel (= 7.1.2)
65
+ activesupport (= 7.1.2)
66
+ timeout (>= 0.4.0)
67
+ activestorage (7.1.2)
68
+ actionpack (= 7.1.2)
69
+ activejob (= 7.1.2)
70
+ activerecord (= 7.1.2)
71
+ activesupport (= 7.1.2)
67
72
  marcel (~> 1.0)
68
- mini_mime (>= 1.1.0)
69
- activesupport (7.0.4.3)
73
+ activesupport (7.1.2)
74
+ base64
75
+ bigdecimal
70
76
  concurrent-ruby (~> 1.0, >= 1.0.2)
77
+ connection_pool (>= 2.2.5)
78
+ drb
71
79
  i18n (>= 1.6, < 2)
72
80
  minitest (>= 5.1)
81
+ mutex_m
73
82
  tzinfo (~> 2.0)
74
- appraisal (2.4.1)
83
+ appraisal (2.5.0)
75
84
  bundler
76
85
  rake
77
86
  thor (>= 0.14.0)
78
87
  ast (2.4.2)
88
+ base64 (0.2.0)
79
89
  benchmark-ips (2.12.0)
90
+ bigdecimal (3.1.4)
80
91
  builder (3.2.4)
81
92
  combustion (1.3.7)
82
93
  activesupport (>= 3.0.0)
83
94
  railties (>= 3.0.0)
84
95
  thor (>= 0.14.6)
85
96
  concurrent-ruby (1.2.2)
97
+ connection_pool (2.4.1)
86
98
  crass (1.0.6)
87
- date (3.3.3)
99
+ date (3.3.4)
88
100
  docile (1.4.0)
101
+ drb (2.2.0)
102
+ ruby2_keywords
89
103
  erubi (1.12.0)
90
- globalid (1.1.0)
91
- activesupport (>= 5.0)
92
- i18n (1.12.0)
104
+ globalid (1.2.1)
105
+ activesupport (>= 6.1)
106
+ i18n (1.14.1)
93
107
  concurrent-ruby (~> 1.0)
94
- json (2.6.3)
108
+ io-console (0.6.0)
109
+ irb (1.10.1)
110
+ rdoc
111
+ reline (>= 0.3.8)
112
+ json (2.7.1)
95
113
  language_server-protocol (3.17.0.3)
96
- loofah (2.20.0)
114
+ lint_roller (1.1.0)
115
+ loofah (2.22.0)
97
116
  crass (~> 1.0.2)
98
- nokogiri (>= 1.5.9)
117
+ nokogiri (>= 1.12.0)
99
118
  mail (2.8.1)
100
119
  mini_mime (>= 0.1.1)
101
120
  net-imap
102
121
  net-pop
103
122
  net-smtp
104
123
  marcel (1.0.2)
105
- method_source (1.0.0)
106
- mini_mime (1.1.2)
107
- minitest (5.18.0)
108
- net-imap (0.3.4)
124
+ mini_mime (1.1.5)
125
+ minitest (5.20.0)
126
+ mutex_m (0.2.0)
127
+ net-imap (0.4.7)
109
128
  date
110
129
  net-protocol
111
130
  net-pop (0.1.2)
112
131
  net-protocol
113
- net-protocol (0.2.1)
132
+ net-protocol (0.2.2)
114
133
  timeout
115
- net-smtp (0.3.3)
134
+ net-smtp (0.4.0)
116
135
  net-protocol
117
- nio4r (2.5.9)
118
- nokogiri (1.14.3-x86_64-linux)
136
+ nio4r (2.7.0)
137
+ nokogiri (1.15.5-x86_64-linux)
119
138
  racc (~> 1.4)
120
139
  observr (1.0.5)
121
- parallel (1.22.1)
122
- parser (3.2.2.0)
140
+ parallel (1.23.0)
141
+ parser (3.2.2.4)
123
142
  ast (~> 2.4.1)
124
- racc (1.6.2)
125
- rack (2.2.6.4)
143
+ racc
144
+ psych (5.1.1.1)
145
+ stringio
146
+ racc (1.7.3)
147
+ rack (3.0.8)
148
+ rack-session (2.0.0)
149
+ rack (>= 3.0.0)
126
150
  rack-test (2.1.0)
127
151
  rack (>= 1.3)
128
- rails (7.0.4.3)
129
- actioncable (= 7.0.4.3)
130
- actionmailbox (= 7.0.4.3)
131
- actionmailer (= 7.0.4.3)
132
- actionpack (= 7.0.4.3)
133
- actiontext (= 7.0.4.3)
134
- actionview (= 7.0.4.3)
135
- activejob (= 7.0.4.3)
136
- activemodel (= 7.0.4.3)
137
- activerecord (= 7.0.4.3)
138
- activestorage (= 7.0.4.3)
139
- activesupport (= 7.0.4.3)
152
+ rackup (2.1.0)
153
+ rack (>= 3)
154
+ webrick (~> 1.8)
155
+ rails (7.1.2)
156
+ actioncable (= 7.1.2)
157
+ actionmailbox (= 7.1.2)
158
+ actionmailer (= 7.1.2)
159
+ actionpack (= 7.1.2)
160
+ actiontext (= 7.1.2)
161
+ actionview (= 7.1.2)
162
+ activejob (= 7.1.2)
163
+ activemodel (= 7.1.2)
164
+ activerecord (= 7.1.2)
165
+ activestorage (= 7.1.2)
166
+ activesupport (= 7.1.2)
140
167
  bundler (>= 1.15.0)
141
- railties (= 7.0.4.3)
142
- rails-dom-testing (2.0.3)
143
- activesupport (>= 4.2.0)
168
+ railties (= 7.1.2)
169
+ rails-dom-testing (2.2.0)
170
+ activesupport (>= 5.0.0)
171
+ minitest
144
172
  nokogiri (>= 1.6)
145
- rails-html-sanitizer (1.5.0)
146
- loofah (~> 2.19, >= 2.19.1)
147
- railties (7.0.4.3)
148
- actionpack (= 7.0.4.3)
149
- activesupport (= 7.0.4.3)
150
- method_source
173
+ rails-html-sanitizer (1.6.0)
174
+ loofah (~> 2.21)
175
+ nokogiri (~> 1.14)
176
+ railties (7.1.2)
177
+ actionpack (= 7.1.2)
178
+ activesupport (= 7.1.2)
179
+ irb
180
+ rackup (>= 1.0.0)
151
181
  rake (>= 12.2)
152
- thor (~> 1.0)
153
- zeitwerk (~> 2.5)
182
+ thor (~> 1.0, >= 1.2.2)
183
+ zeitwerk (~> 2.6)
154
184
  rainbow (3.1.1)
155
- rake (13.0.6)
156
- regexp_parser (2.8.0)
157
- rexml (3.2.5)
185
+ rake (13.1.0)
186
+ rdoc (6.6.1)
187
+ psych (>= 4.0.0)
188
+ regexp_parser (2.8.3)
189
+ reline (0.4.1)
190
+ io-console (~> 0.5)
191
+ rexml (3.2.6)
158
192
  ricecream (0.2.1)
159
- rubocop (1.48.1)
193
+ rubocop (1.57.2)
160
194
  json (~> 2.3)
195
+ language_server-protocol (>= 3.17.0)
161
196
  parallel (~> 1.10)
162
- parser (>= 3.2.0.0)
197
+ parser (>= 3.2.2.4)
163
198
  rainbow (>= 2.2.2, < 4.0)
164
199
  regexp_parser (>= 1.8, < 3.0)
165
200
  rexml (>= 3.2.5, < 4.0)
166
- rubocop-ast (>= 1.26.0, < 2.0)
201
+ rubocop-ast (>= 1.28.1, < 2.0)
167
202
  ruby-progressbar (~> 1.7)
168
203
  unicode-display_width (>= 2.4.0, < 3.0)
169
- rubocop-ast (1.28.0)
204
+ rubocop-ast (1.30.0)
170
205
  parser (>= 3.2.1.0)
171
- rubocop-performance (1.16.0)
206
+ rubocop-performance (1.19.1)
172
207
  rubocop (>= 1.7.0, < 2.0)
173
208
  rubocop-ast (>= 0.4.0)
174
209
  ruby-progressbar (1.13.0)
210
+ ruby2_keywords (0.0.5)
175
211
  simplecov (0.22.0)
176
212
  docile (~> 1.1)
177
213
  simplecov-html (~> 0.11)
178
214
  simplecov_json_formatter (~> 0.1)
179
215
  simplecov-html (0.12.3)
180
216
  simplecov_json_formatter (0.1.4)
181
- sqlite3 (1.6.2-x86_64-linux)
182
- standard (1.26.0)
217
+ sqlite3 (1.6.9-x86_64-linux)
218
+ standard (1.32.1)
183
219
  language_server-protocol (~> 3.17.0.2)
184
- rubocop (~> 1.48.1)
185
- rubocop-performance (~> 1.16.0)
186
- thor (1.2.1)
187
- timeout (0.3.2)
220
+ lint_roller (~> 1.0)
221
+ rubocop (~> 1.57.2)
222
+ standard-custom (~> 1.0.0)
223
+ standard-performance (~> 1.2)
224
+ standard-custom (1.0.2)
225
+ lint_roller (~> 1.0)
226
+ rubocop (~> 1.50)
227
+ standard-performance (1.2.1)
228
+ lint_roller (~> 1.1)
229
+ rubocop-performance (~> 1.19.1)
230
+ stringio (3.1.0)
231
+ thor (1.3.0)
232
+ timeout (0.4.1)
188
233
  tzinfo (2.0.6)
189
234
  concurrent-ruby (~> 1.0)
190
- unicode-display_width (2.4.2)
191
- websocket-driver (0.7.5)
235
+ unicode-display_width (2.5.0)
236
+ webrick (1.8.1)
237
+ websocket-driver (0.7.6)
192
238
  websocket-extensions (>= 0.1.0)
193
239
  websocket-extensions (0.1.5)
194
- zeitwerk (2.6.7)
240
+ zeitwerk (2.6.12)
195
241
 
196
242
  PLATFORMS
197
243
  x86_64-linux
@@ -210,4 +256,4 @@ DEPENDENCIES
210
256
  standard
211
257
 
212
258
  BUNDLED WITH
213
- 2.4.10
259
+ 2.4.22
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # ActWithFlags
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/act_with_flags.png)](http://badge.fury.io/rb/act_with_flags)
4
+ [![GEM Downloads](https://img.shields.io/gem/dt/act_with_flags?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/act_with_flags)
4
5
 
5
6
  A Rails gem required by key.matiq.
6
7
 
@@ -124,6 +125,4 @@ Further reading:
124
125
  ## Miscellaneous
125
126
 
126
127
  Copyright (c) 2019-2023 Dittmar Krall (www.matiq.com),
127
- released under the MIT license:
128
-
129
- * https://opensource.org/licenses/MIT
128
+ released under the [MIT license](https://opensource.org/licenses/MIT).
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.description = %(Handles flags/booleans in a Rails model instance)
10
10
  s.authors = ["Dittmar Krall"]
11
11
  s.email = ["dittmar.krall@matiq.com"]
12
- s.homepage = "http://matiq.com"
12
+ s.homepage = "https://github.com/matique/act_with_flags"
13
13
 
14
14
  s.license = "MIT"
15
15
  s.platform = Gem::Platform::RUBY
@@ -18,8 +18,8 @@ Gem::Specification.new do |s|
18
18
  s.files = `git ls-files -z`.split("\x0")
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_development_dependency "appraisal"
22
- s.add_development_dependency "combustion"
23
- s.add_development_dependency "minitest"
24
- s.add_development_dependency "sqlite3"
21
+ s.add_development_dependency "appraisal", ">= 0"
22
+ s.add_development_dependency "combustion", ">= 0"
23
+ s.add_development_dependency "minitest", ">= 0"
24
+ s.add_development_dependency "sqlite3", ">= 0"
25
25
  end
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 6.0"
6
+
7
+ group :test do
8
+ gem "benchmark-ips"
9
+ gem "observr"
10
+ gem "ricecream"
11
+ gem "simplecov", require: false
12
+ gem "standard", require: false
13
+ end
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.0"
6
+
7
+ group :test do
8
+ gem "benchmark-ips"
9
+ gem "observr"
10
+ gem "ricecream"
11
+ gem "simplecov", require: false
12
+ gem "standard", require: false
13
+ end
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.1"
6
+
7
+ group :test do
8
+ gem "benchmark-ips"
9
+ gem "observr"
10
+ gem "ricecream"
11
+ gem "simplecov", require: false
12
+ gem "standard", require: false
13
+ end
14
+
15
+ gemspec path: "../"
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActWithFlags
4
- VERSION = "3.1.3" # 2023-04-18
4
+ VERSION = "3.1.5" # 2023-12-11
5
+ # VERSION = "3.1.3" # 2023-04-18
5
6
  # VERSION = "3.1.2" # 2022-12-12
6
7
  # VERSION = "3.1.1" # 2022-09-01
7
8
  # VERSION = "3.1.0" # 2022-08-29
@@ -27,8 +27,8 @@ module ActWithFlags
27
27
  flags.each { |name| @act_with_flags.remove_accessor(name) }
28
28
  end
29
29
 
30
- def clear_flags_at_save(*flags)
31
- @act_with_flags.clear_at_save(*flags)
30
+ def clear_flags_at_save(*)
31
+ @act_with_flags.clear_at_save(*)
32
32
  end
33
33
 
34
34
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: act_with_flags
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.3
4
+ version: 3.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-18 00:00:00.000000000 Z
11
+ date: 2023-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appraisal
@@ -73,7 +73,6 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".github/workflows/lint.yml"
77
76
  - ".github/workflows/rake.yml"
78
77
  - ".gitignore"
79
78
  - ".ruby-gemset"
@@ -85,6 +84,9 @@ files:
85
84
  - README.md
86
85
  - Rakefile
87
86
  - act_with_flags.gemspec
87
+ - gemfiles/rails_6.1.gemfile
88
+ - gemfiles/rails_7.0.gemfile
89
+ - gemfiles/rails_7.1.gemfile
88
90
  - lib/act_with_flags.rb
89
91
  - lib/act_with_flags/admin.rb
90
92
  - lib/act_with_flags/clear.rb
@@ -126,7 +128,7 @@ files:
126
128
  - test/remove_from_test.rb
127
129
  - test/string_test.rb
128
130
  - test/test_helper.rb
129
- homepage: http://matiq.com
131
+ homepage: https://github.com/matique/act_with_flags
130
132
  licenses:
131
133
  - MIT
132
134
  metadata:
@@ -146,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
148
  - !ruby/object:Gem::Version
147
149
  version: '0'
148
150
  requirements: []
149
- rubygems_version: 3.4.10
151
+ rubygems_version: 3.4.20
150
152
  signing_key:
151
153
  specification_version: 4
152
154
  summary: act_with_flags gem
@@ -1,14 +0,0 @@
1
- name: Lint
2
- on: push
3
- jobs:
4
- lint:
5
- runs-on: ubuntu-latest
6
- steps:
7
- - name: Checkout code
8
- uses: actions/checkout@v3
9
- - name: Set up Ruby
10
- uses: ruby/setup-ruby@v1
11
- with:
12
- bundler-cache: true
13
- - name: Run Standard
14
- run: bundle exec standardrb