couch_potato 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +6 -0
- data/CHANGES.md +5 -1
- data/Rakefile +1 -1
- data/couch_potato-rspec.gemspec +3 -3
- data/couch_potato.gemspec +1 -1
- data/gemfiles/active_support_5_0 +0 -1
- data/gemfiles/active_support_5_2 +0 -1
- data/gemfiles/active_support_6_0 +0 -1
- data/gemfiles/active_support_6_1 +0 -1
- data/gemfiles/active_support_7_0 +6 -0
- data/lib/couch_potato/version.rb +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 699af51806a63fca2975c8eff17636647a5ca7c12f9131df7e30a5f843ab3028
|
4
|
+
data.tar.gz: 1e305be23ca0606bef97e7f89b06f166f694a7ec937a2641c782274dc9a8cf51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bee39cf067a428f14b646948dc0ceea5e5b0bfde2f0eafd9e1ea025dbd5833bcfc8c328f8457aaa4ecb72aabf07a2e327f329296d1224dafb8c7967cf37d1eeb
|
7
|
+
data.tar.gz: 4f371624eb17e5d03fb25a13ae9375705f1b143fccb30c8e7cbfdeaeb98d8549b7cc29f9b7a7fe83ec0ac06abef1200670ea092aebd5e46bb7aa94265ee48191
|
data/.github/workflows/ruby.yml
CHANGED
@@ -23,6 +23,12 @@ jobs:
|
|
23
23
|
- "active_support_5_2"
|
24
24
|
- "active_support_6_0"
|
25
25
|
- "active_support_6_1"
|
26
|
+
- "active_support_7_0"
|
27
|
+
exclude:
|
28
|
+
- ruby: 2.6
|
29
|
+
gemfile: "active_support_7_0"
|
30
|
+
- ruby: "jruby"
|
31
|
+
gemfile: "active_support_7_0"
|
26
32
|
steps:
|
27
33
|
- uses: actions/checkout@v2
|
28
34
|
- name: Set up CouchDB
|
data/CHANGES.md
CHANGED
data/Rakefile
CHANGED
@@ -26,7 +26,7 @@ end
|
|
26
26
|
|
27
27
|
desc 'Run all specs for all gemfiles'
|
28
28
|
task :spec do
|
29
|
-
%w(6_1 6_0 5_2 5_1 5_0).each do |version|
|
29
|
+
%w(7_0 6_1 6_0 5_2 5_1 5_0).each do |version|
|
30
30
|
Bundler.with_clean_env do
|
31
31
|
puts "Running tests with ActiveSupport #{version.sub('_', '.')}"
|
32
32
|
sh "env BUNDLE_GEMFILE=gemfiles/active_support_#{version} bundle install"
|
data/couch_potato-rspec.gemspec
CHANGED
@@ -13,9 +13,9 @@ Gem::Specification.new do |s|
|
|
13
13
|
|
14
14
|
s.add_dependency 'rspec', '~>3.4'
|
15
15
|
s.add_development_dependency 'rake'
|
16
|
-
s.add_dependency 'execjs', '~>2.7
|
16
|
+
s.add_dependency 'execjs', '~>2.7'
|
17
17
|
|
18
|
-
s.files = `git ls-files | grep "lib/couch_potato/rspec
|
19
|
-
s.test_files = `git ls-files --
|
18
|
+
s.files = `git ls-files | grep "lib/couch_potato/rspec"`.split("\n")
|
19
|
+
s.test_files = `git ls-files -- spec/* | grep rspec_matchers`.split("\n")
|
20
20
|
s.require_paths = ['lib']
|
21
21
|
end
|
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', ['>= 5.0', '< 7.
|
16
|
+
s.add_dependency 'activemodel', ['>= 5.0', '< 7.1']
|
17
17
|
s.add_dependency 'couchrest', '~>2.0.0'
|
18
18
|
s.add_dependency 'json', '~> 2.3'
|
19
19
|
|
data/gemfiles/active_support_5_0
CHANGED
data/gemfiles/active_support_5_2
CHANGED
data/gemfiles/active_support_6_0
CHANGED
data/gemfiles/active_support_6_1
CHANGED
data/lib/couch_potato/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: couch_potato
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Lang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '5.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '7.
|
22
|
+
version: '7.1'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '5.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '7.
|
32
|
+
version: '7.1'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: couchrest
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,6 +135,7 @@ files:
|
|
135
135
|
- gemfiles/active_support_5_2
|
136
136
|
- gemfiles/active_support_6_0
|
137
137
|
- gemfiles/active_support_6_1
|
138
|
+
- gemfiles/active_support_7_0
|
138
139
|
- init.rb
|
139
140
|
- lib/core_ext/date.rb
|
140
141
|
- lib/core_ext/time.rb
|