bigrails-redis 0.7.0 → 0.7.2

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: 7bcd1b5e5ed505a29938315709f56d36db7f5d5de17392657aa5c8371ab1d2c9
4
- data.tar.gz: 9a51d0bc94aa4f0ead89243b9824afd94cb0e354edc8d43ca9833814944848fa
3
+ metadata.gz: 7cceaf7f6561f865122a3a94f6e53261671614b8c8e361942ef29fd48930ecc8
4
+ data.tar.gz: c77fc0586dabeb68ad465e5bf4f4f562a6d94906197bb3bc34ebc6007f088ee3
5
5
  SHA512:
6
- metadata.gz: dd8ff8e9c4ee17ac8287f0d2da71be62ea36418ad6a4faa0841161402b7199ab870608d46df3d5a3e402343239a043fb211890136423ac800e5e68f9957c1730
7
- data.tar.gz: ccdc2a87df4b34172c53b5038559c0a460b7bacba9bc2faf71ea69728522f1ef7dc5180de7c7e4ce63dcf23992a8746f0c46f39aa988bf1861aa4cfb17d70e2f
6
+ metadata.gz: fffb41b2512e350eb2c60b1db8f5f2844efb678ca019b42ec3a811962440050c74a71a148d638d5bf27c8442b5ac448e64c386b8d44c0e9885c136ee449b7ddc
7
+ data.tar.gz: 7480f3d4cfde67814ecfa04dc4ec74dc307a42007219b1646bb62d66702eb037e49f6114286de01e4c1ead25b63dbcd98f00b5056a78fd9c176b95d06e27a18f
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # BigRails::Redis [![Ruby](https://github.com/BigRails/bigrails-redis/actions/workflows/main.yml/badge.svg)](https://github.com/BigRails/bigrails-redis/actions/workflows/main.yml)
1
+ # BigRails::Redis [![Ruby](https://github.com/rubyatscale/bigrails-redis/actions/workflows/main.yml/badge.svg)](https://github.com/rubyatscale/bigrails-redis/actions/workflows/main.yml)
2
2
 
3
3
  A simple Redis connection manager for Rails applications with the need to manage multiple redis connections. It supports distributed and [ConnectionPool](https://github.com/mperham/connection_pool) out of the box.
4
4
 
@@ -54,7 +54,7 @@ end
54
54
  # Connection pool support.
55
55
  connection(:sidekiq) do
56
56
  {
57
- url: "redis://localhost/2"
57
+ url: "redis://localhost/2",
58
58
  pool_timeout: 5,
59
59
  pool_size: 5
60
60
  }
@@ -121,7 +121,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
121
121
 
122
122
  ## Contributing
123
123
 
124
- Bug reports and pull requests are welcome on GitHub at https://github.com/ngan/bigrails-redis. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ngan/bigrails-redis/blob/master/CODE_OF_CONDUCT.md).
124
+ Bug reports and pull requests are welcome on GitHub at https://github.com/rubyatscale/bigrails-redis. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/rubyatscale/bigrails-redis/blob/master/CODE_OF_CONDUCT.md).
125
125
 
126
126
  ## License
127
127
 
@@ -129,4 +129,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
129
129
 
130
130
  ## Code of Conduct
131
131
 
132
- Everyone interacting in the BigRails::Redis project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ngan/bigrails-redis/blob/master/CODE_OF_CONDUCT.md).
132
+ Everyone interacting in the BigRails::Redis project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rubyatscale/bigrails-redis/blob/master/CODE_OF_CONDUCT.md).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module BigRails
4
4
  module Redis
5
- VERSION = "0.7.0"
5
+ VERSION = "0.7.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,17 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigrails-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-24 00:00:00.000000000 Z
11
+ date: 2024-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
31
  - - ">="
@@ -55,13 +69,13 @@ files:
55
69
  - lib/big_rails/redis/registry.rb
56
70
  - lib/big_rails/redis/version.rb
57
71
  - lib/bigrails-redis.rb
58
- homepage: https://github.com/bigrails/bigrails-redis
72
+ homepage: https://github.com/rubyatscale/bigrails-redis
59
73
  licenses:
60
74
  - MIT
61
75
  metadata:
62
- homepage_uri: https://github.com/bigrails/bigrails-redis
63
- source_code_uri: https://github.com/BigRails/bigrails-redis
64
- changelog_uri: https://github.com/bigrails/bigrails-redis/releases
76
+ homepage_uri: https://github.com/rubyatscale/bigrails-redis
77
+ source_code_uri: https://github.com/rubyatscale/bigrails-redis
78
+ changelog_uri: https://github.com/rubyatscale/bigrails-redis/releases
65
79
  post_install_message:
66
80
  rdoc_options: []
67
81
  require_paths:
@@ -77,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
91
  - !ruby/object:Gem::Version
78
92
  version: '0'
79
93
  requirements: []
80
- rubygems_version: 3.2.32
94
+ rubygems_version: 3.5.3
81
95
  signing_key:
82
96
  specification_version: 4
83
97
  summary: Redis connection manager for Rails applications.