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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a821587d71ae914633510e231870309eff650ad1b5cd2cb619cf7cc3b1610fa
4
- data.tar.gz: c4e449c08ea2303c2fa639196c5f6b3acf276c1e6af6b65285cb781ec69e86e7
3
+ metadata.gz: 2fce33afc87ae764805918b9694c1ec23a372ee746b236e76fabd0d6906daf90
4
+ data.tar.gz: 777ccbc50db511f2e5dfce02a0f16e0b6de42869d7802403152d4bd8e440f9fb
5
5
  SHA512:
6
- metadata.gz: 56d3de89da695b516c2c5476dc8be5016c91cd5a6ff726f70209afd833aa885d9dac5545588bdbd209c25b5ea98636075bcbfe531b332f02be1b7e3abc5820a2
7
- data.tar.gz: 698fb1b414194e87285ee0a4a199de5f75432ac2a1a51e719d3de51495f6d38302fb18ab4695593cbab282932f6684ffb9645a76d7c75162c09413482707e96f
6
+ metadata.gz: ca301074e0d52dca70fcb105571e5fe1cf46e71065b010ed429add3742170454cad5b8f2d5ba61d42ab7401deb3c0f3f58483a174dd2d4562ac1027a7c359e1e
7
+ data.tar.gz: 58f99576afbc2ec28b85ac1182cd77f57e4e8e337cda8b0d3094492b1c077cfc9a0aba14bba10892847034c94704a3cba44f881c414283a1b095556d93649054
@@ -8,11 +8,12 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby_version: ["3.2", "3.3"]
11
+ ruby_version: [head, "3.4", "3.2"]
12
12
  gemfile:
13
13
  - Gemfile
14
- - gemfiles/Gemfile.rails-7.1
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
- .bundle/
2
- /coverage/
3
- .watchr
1
+ # ~/.gitignore included
4
2
 
5
- *.gem
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-7.2
1
+ rails-8.0
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.3.5
1
+ ruby-3.4.4
data/Appraisals CHANGED
@@ -1,3 +1,7 @@
1
+ appraise "rails-8.0" do
2
+ gem "rails", "~> 8.0"
3
+ end
4
+
1
5
  appraise "rails-7.2" do
2
6
  gem "rails", "~> 7.2"
3
7
  end
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2023 Dittmar Krall (www.matiq.com)
1
+ Copyright (c) 2010-2025 Dittmar Krall (www.matiq.com)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # ActWithBag
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/act_with_bag.svg)](http://badge.fury.io/rb/act_with_bag)
4
- [![GEM Downloads](https://img.shields.io/gem/dt/act_with_bag?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/act_with_bag)
5
- [![rake](https://github.com/matique/act_with_bag/actions/workflows/rake.yml/badge.svg)](https://github.com/matique/act_with_bag/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/)
3
+ [![Gem Version](https://img.shields.io/gem/v/act_with_bag?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/act_with_bag)
4
+ [![Downloads](https://img.shields.io/gem/dt/act_with_bag?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/act_with_bag)
5
+ [![GitHub Build](https://img.shields.io/github/actions/workflow/status/matique/act_with_bag/rake.yml?logo=github)](https://github.com/matique/act_with_bag/actions/workflows/rake.yml)
6
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-168AFE.svg)](https://github.com/standardrb/standard)
7
+ [![MIT License](https://img.shields.io/badge/license-MIT-168AFE.svg)](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-2024 Dittmar Krall (www.matiq.com),
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
@@ -15,6 +15,7 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.files = `git ls-files -z`.split("\x0")
17
17
  s.require_paths = ["lib"]
18
+ s.required_ruby_version = "~> 3"
18
19
 
19
20
  s.add_development_dependency "bundler"
20
21
  s.add_development_dependency "rake"
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 7.0"
5
+ gem "rails", "~> 8.0"
6
6
 
7
7
  group :test do
8
8
  gem "cuco"
@@ -1,5 +1,6 @@
1
1
  module ActWithBag
2
- VERSION = "1.1.5" # 2024-10-19
2
+ VERSION = "1.1.6" # 2025-06-17
3
+ # VERSION = "1.1.5" # 2024-10-19
3
4
  # VERSION = "1.1.4" # 2024-02-13
4
5
  # VERSION = "1.1.3" # 2023-12-10
5
6
  # VERSION = "1.1.2" # 2023-04-22
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.5
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: 2024-10-19 00:00:00.000000000 Z
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: '0'
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.5.20
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: []
@@ -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: "../"