acts_as_lockable_by 0.1.5 → 0.1.12

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: baee0e04f048ebeae7cceafb021b74b7fe0474eb135996bf35c91ddd3b7873af
4
- data.tar.gz: c5771bdde50ba40132634212f4dea649c26dd1d8cd63f55af655f0b31b9b2b35
3
+ metadata.gz: 7dae7c08469a7af91f7cd46535568c5361554d1f301b7160bc3f3e6c9c6d44aa
4
+ data.tar.gz: 16875332828b1a37d7445cc6d8e027d81f012fc4e8a9e7dcc6a8b225557de6b9
5
5
  SHA512:
6
- metadata.gz: 9ae57b6e3b64d41ce6c1a95e4f171c89d800e2717650bfe42ede0b0ba76fd532d489418057e312e4843d21cbeff13e081352e661f5a5960361faaa6f22b1b5dd
7
- data.tar.gz: 7a8a7bc643a2e36b6928a99c1f3d0ce67f92028819b77760eadbe1c95ff721ee4f3999c222edeb907c44b8f4ced4916d691882ac283c097827ba03a339f98216
6
+ metadata.gz: a5dc49f0a53987f3219b1451ae193e888d3218018c7028d84f661d03c62d3934de59747ba743c0737e274f232b1a538345a9aeb4efb8a522f28abd760765012f
7
+ data.tar.gz: 54d81a1c59aeae00aa79d5a4f1fe195189eaf6124381bdabdb7b68aa2681cd90b96e4eb5b46b084452aa8d272e603573111e4526257a4a05669d98f80a017337
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # ActsAsLockableBy
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/acts_as_lockable_by.svg)](http://badge.fury.io/rb/acts_as_lockable_by)
4
- [![Build Status](https://travis-ci.com/tareksamni/acts_as_lockable_by.svg?branch=master)](https://travis-ci.com/tareksamni/acts_as_lockable_by)
4
+ [![Build Status](https://travis-ci.com/shebang-labs/acts_as_lockable_by.svg?branch=master)](https://travis-ci.com/shebang-labs/acts_as_lockable_by)
5
5
 
6
6
  This gem was originally developed, incubated and maintained at [ABTION](https://abtion.com/). Its main goal is providing the ability to lock a resource so that no other users/lockers can access it till the lock is released or the ttl expires. It uses `redis` a shared memory space to share locks across different deployments which enables easy horizontal scalability for your ruby/rails project on multiple servers.
7
7
 
@@ -127,7 +127,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
127
127
 
128
128
  ## Contributing
129
129
 
130
- Bug reports and pull requests are welcome on GitHub at https://github.com/tareksamni/acts_as_lockable_by. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
130
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shebang-labs/acts_as_lockable_by. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
131
131
 
132
132
  ## License
133
133
 
@@ -135,4 +135,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
135
135
 
136
136
  ## Code of Conduct
137
137
 
138
- Everyone interacting in the ActsAsLockable project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/tareksamni/acts_as_lockable_by/blob/master/CODE_OF_CONDUCT.md).
138
+ Everyone interacting in the ActsAsLockable project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/shebang-labs/acts_as_lockable_by/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActsAsLockableBy
4
- VERSION = '0.1.5'
4
+ VERSION = '0.1.12'
5
5
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_lockable_by
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tarek N. Elsamni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-02 00:00:00.000000000 Z
11
+ date: 2020-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '5'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: '5.0'
22
+ version: '7'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '5'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '5.0'
32
+ version: '7'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: redis
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -58,42 +64,42 @@ dependencies:
58
64
  requirements:
59
65
  - - "~>"
60
66
  - !ruby/object:Gem::Version
61
- version: '1.17'
67
+ version: 1.17.2
62
68
  type: :development
63
69
  prerelease: false
64
70
  version_requirements: !ruby/object:Gem::Requirement
65
71
  requirements:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
- version: '1.17'
74
+ version: 1.17.2
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: byebug
71
77
  requirement: !ruby/object:Gem::Requirement
72
78
  requirements:
73
79
  - - "~>"
74
80
  - !ruby/object:Gem::Version
75
- version: '10.0'
81
+ version: '11.0'
76
82
  type: :development
77
83
  prerelease: false
78
84
  version_requirements: !ruby/object:Gem::Requirement
79
85
  requirements:
80
86
  - - "~>"
81
87
  - !ruby/object:Gem::Version
82
- version: '10.0'
88
+ version: '11.0'
83
89
  - !ruby/object:Gem::Dependency
84
90
  name: rake
85
91
  requirement: !ruby/object:Gem::Requirement
86
92
  requirements:
87
93
  - - "~>"
88
94
  - !ruby/object:Gem::Version
89
- version: '12.3'
95
+ version: '13.0'
90
96
  type: :development
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
100
  - - "~>"
95
101
  - !ruby/object:Gem::Version
96
- version: '12.3'
102
+ version: '13.0'
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: rspec
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -176,7 +182,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
176
182
  - !ruby/object:Gem::Version
177
183
  version: '0'
178
184
  requirements: []
179
- rubygems_version: 3.0.2
185
+ rubyforge_project:
186
+ rubygems_version: 2.7.7
180
187
  signing_key:
181
188
  specification_version: 4
182
189
  summary: Atomically lock resources from concurrent access