couch_potato 1.20.1 → 1.21.0
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/ruby.yml +4 -1
- data/CHANGES.md +4 -0
- data/couch_potato.gemspec +1 -1
- data/gemfiles/active_support_8_1 +7 -0
- data/lib/couch_potato/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0460baa84b2605f60a5a954e246a9c839171b0f125e5bca929abf9e40a736bad
|
|
4
|
+
data.tar.gz: b5ce4755ab00575bb348bdabedc678d9aad45a42469e202ce991e7f55d7aedd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8c46fa595c3dbfb5d8f6d8206c3f250c2dd955f1df26ec0865abdb60c3f7294474f9579328a57c4d03db33f1050bb893024847e799715010abdf029aebcf357
|
|
7
|
+
data.tar.gz: 4aea25697ff53ef8cffa72a3ca41c864abe1d1e62d539c634a2299679d86311872ad4efce1c14cf356b04131082ec50b8fc2bc0f1700a80e1a6bdc39cf0e7d28
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -16,13 +16,16 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
fail-fast: false
|
|
18
18
|
matrix:
|
|
19
|
-
ruby: ["3.2", "3.3", "jruby"]
|
|
19
|
+
ruby: ["3.2", "3.3", "3.4", "jruby"]
|
|
20
20
|
gemfile:
|
|
21
21
|
- "active_support_7_2"
|
|
22
22
|
- "active_support_8_0"
|
|
23
|
+
- "active_support_8_1"
|
|
23
24
|
exclude:
|
|
24
25
|
- ruby: "jruby"
|
|
25
26
|
gemfile: "active_support_8_0"
|
|
27
|
+
- ruby: "jruby"
|
|
28
|
+
gemfile: "active_support_8_1"
|
|
26
29
|
steps:
|
|
27
30
|
- uses: actions/checkout@v4
|
|
28
31
|
- name: Set up CouchDB
|
data/CHANGES.md
CHANGED
data/couch_potato.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.version = CouchPotato::VERSION
|
|
14
14
|
s.platform = Gem::Platform::RUBY
|
|
15
15
|
|
|
16
|
-
s.add_dependency 'activemodel', ['>= 7.2', '< 8.
|
|
16
|
+
s.add_dependency 'activemodel', ['>= 7.2', '< 8.2']
|
|
17
17
|
s.add_dependency 'couchrest', '~>2.0.0'
|
|
18
18
|
s.add_dependency 'json', '~> 2.3'
|
|
19
19
|
|
data/lib/couch_potato/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: couch_potato
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Lang
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '7.2'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '8.
|
|
22
|
+
version: '8.2'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '7.2'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '8.
|
|
32
|
+
version: '8.2'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: couchrest
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -132,6 +132,7 @@ files:
|
|
|
132
132
|
- couch_potato.gemspec
|
|
133
133
|
- gemfiles/active_support_7_2
|
|
134
134
|
- gemfiles/active_support_8_0
|
|
135
|
+
- gemfiles/active_support_8_1
|
|
135
136
|
- init.rb
|
|
136
137
|
- lib/core_ext/date.rb
|
|
137
138
|
- lib/core_ext/time.rb
|