act_with_bag 1.1.5 → 1.1.6
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 +4 -4
- data/.github/workflows/rake.yml +4 -2
- data/.gitignore +9 -7
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/Appraisals +4 -0
- data/MIT-LICENSE +1 -1
- data/README.md +7 -6
- data/act_with_bag.gemspec +1 -0
- data/gemfiles/{rails_7.0.gemfile → rails_8.0.gemfile} +1 -1
- data/lib/act_with_bag/version.rb +2 -1
- metadata +6 -10
- data/gemfiles/rails_6.1.gemfile +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fce33afc87ae764805918b9694c1ec23a372ee746b236e76fabd0d6906daf90
|
|
4
|
+
data.tar.gz: 777ccbc50db511f2e5dfce02a0f16e0b6de42869d7802403152d4bd8e440f9fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca301074e0d52dca70fcb105571e5fe1cf46e71065b010ed429add3742170454cad5b8f2d5ba61d42ab7401deb3c0f3f58483a174dd2d4562ac1027a7c359e1e
|
|
7
|
+
data.tar.gz: 58f99576afbc2ec28b85ac1182cd77f57e4e8e337cda8b0d3094492b1c077cfc9a0aba14bba10892847034c94704a3cba44f881c414283a1b095556d93649054
|
data/.github/workflows/rake.yml
CHANGED
|
@@ -8,11 +8,12 @@ jobs:
|
|
|
8
8
|
strategy:
|
|
9
9
|
fail-fast: false
|
|
10
10
|
matrix:
|
|
11
|
-
ruby_version: ["3.
|
|
11
|
+
ruby_version: [head, "3.4", "3.2"]
|
|
12
12
|
gemfile:
|
|
13
13
|
- Gemfile
|
|
14
|
-
- gemfiles/Gemfile.rails-
|
|
14
|
+
- gemfiles/Gemfile.rails-8.0
|
|
15
15
|
- gemfiles/Gemfile.rails-7.2
|
|
16
|
+
- gemfiles/Gemfile.rails-7.1
|
|
16
17
|
runs-on: ubuntu-latest
|
|
17
18
|
|
|
18
19
|
steps:
|
|
@@ -24,6 +25,7 @@ jobs:
|
|
|
24
25
|
bundler-cache: true
|
|
25
26
|
- name: Bundle install
|
|
26
27
|
run: |
|
|
28
|
+
bundle config set frozen false
|
|
27
29
|
bundle config path /home/runner/bundle
|
|
28
30
|
bundle install
|
|
29
31
|
bundle update
|
data/.gitignore
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
/coverage/
|
|
3
|
-
.watchr
|
|
1
|
+
# ~/.gitignore included
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
*.log
|
|
7
|
-
*.lock
|
|
3
|
+
**/*.lock
|
|
8
4
|
|
|
9
|
-
**/db/test.sqlite*
|
|
10
5
|
/test/internal/storage/
|
|
11
6
|
/test/internal/tmp/
|
|
7
|
+
|
|
8
|
+
.watchr
|
|
9
|
+
|
|
10
|
+
**/log/
|
|
11
|
+
**/tmp/
|
|
12
|
+
**/db/*.sqlite3*
|
|
13
|
+
**/db/*.sqlite3-*
|
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
rails-
|
|
1
|
+
rails-8.0
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-3.
|
|
1
|
+
ruby-3.4.4
|
data/Appraisals
CHANGED
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# ActWithBag
|
|
2
2
|
|
|
3
|
-
[](https://rubygems.org/gems/act_with_bag)
|
|
4
|
+
[](https://rubygems.org/gems/act_with_bag)
|
|
5
|
+
[](https://github.com/matique/act_with_bag/actions/workflows/rake.yml)
|
|
6
|
+
[](https://github.com/standardrb/standard)
|
|
7
|
+
[](http://choosealicense.com/licenses/mit/)
|
|
8
8
|
|
|
9
9
|
Bag helps when fields in a Rails database table are not yet settled down
|
|
10
10
|
or when many fields without business logic are required.
|
|
@@ -116,7 +116,8 @@ In controller:
|
|
|
116
116
|
|
|
117
117
|
bundle exec rake
|
|
118
118
|
|
|
119
|
+
|
|
119
120
|
## Miscellaneous
|
|
120
121
|
|
|
121
|
-
Copyright (c) 2009-
|
|
122
|
+
Copyright (c) 2009-2025 Dittmar Krall (www.matiq.com),
|
|
122
123
|
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/act_with_bag.gemspec
CHANGED
data/lib/act_with_bag/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: act_with_bag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -97,10 +96,9 @@ files:
|
|
|
97
96
|
- README.md
|
|
98
97
|
- Rakefile
|
|
99
98
|
- act_with_bag.gemspec
|
|
100
|
-
- gemfiles/rails_6.1.gemfile
|
|
101
|
-
- gemfiles/rails_7.0.gemfile
|
|
102
99
|
- gemfiles/rails_7.1.gemfile
|
|
103
100
|
- gemfiles/rails_7.2.gemfile
|
|
101
|
+
- gemfiles/rails_8.0.gemfile
|
|
104
102
|
- lib/act_with_bag.rb
|
|
105
103
|
- lib/act_with_bag/version.rb
|
|
106
104
|
- test/accessor_test.rb
|
|
@@ -121,23 +119,21 @@ homepage: https://github.com/matique/act_with_bag
|
|
|
121
119
|
licenses:
|
|
122
120
|
- MIT
|
|
123
121
|
metadata: {}
|
|
124
|
-
post_install_message:
|
|
125
122
|
rdoc_options: []
|
|
126
123
|
require_paths:
|
|
127
124
|
- lib
|
|
128
125
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
129
126
|
requirements:
|
|
130
|
-
- - "
|
|
127
|
+
- - "~>"
|
|
131
128
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: '
|
|
129
|
+
version: '3'
|
|
133
130
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
131
|
requirements:
|
|
135
132
|
- - ">="
|
|
136
133
|
- !ruby/object:Gem::Version
|
|
137
134
|
version: '0'
|
|
138
135
|
requirements: []
|
|
139
|
-
rubygems_version: 3.
|
|
140
|
-
signing_key:
|
|
136
|
+
rubygems_version: 3.6.7
|
|
141
137
|
specification_version: 4
|
|
142
138
|
summary: act_with_bag (baggies) gem
|
|
143
139
|
test_files: []
|
data/gemfiles/rails_6.1.gemfile
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "rails", "~> 6.1"
|
|
6
|
-
gem "dryer-config", "~> 6.0"
|
|
7
|
-
|
|
8
|
-
group :test do
|
|
9
|
-
gem "cuco"
|
|
10
|
-
gem "ricecream"
|
|
11
|
-
gem "sqlite3"
|
|
12
|
-
gem "simplecov", require: false
|
|
13
|
-
gem "standard", require: false
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
gemspec path: "../"
|