statusable 0.4.1 → 0.5.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/README.md +1 -0
- data/lib/statusable/version.rb +1 -1
- metadata +4 -8
- data/MIT-LICENSE +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5715945afd889ec925bf732f389fcc8f9f7148bb9218fda845eac1016af0e388
|
4
|
+
data.tar.gz: '0547424019b83a81a5c240943d21b5b84958d5c6ef0782c69c0b6c8b23bf972f'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd9e39c98e1d3d4a5d25877dac8d9fb4881200ca10cbc08b54cb973aa41c50b83bef615dbb074e2d9bc42d577e9948adc5976cc48be37743a16e7dd9d4a20fb7
|
7
|
+
data.tar.gz: b5bcb227d5e537ac86977f062b3adab8354d02a331e40c5aa4b480eea4e4b1e403e30c8e55e56757e27632a99d87b7e0cff49e8a1478b790f0ed8cc05ec46984
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Statusable
|
2
2
|
|
3
3
|
[](https://img.shields.io/github/v/release/pdobb/statusable)
|
4
|
+
[](https://github.com/pdobb/statusable/actions)
|
4
5
|
|
5
6
|
Statusable adds a `has_statuses` macro for defining common status-related methods for use with ActiveRecord objects / Relations.
|
6
7
|
|
data/lib/statusable/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: statusable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul DobbinSchmaltz
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rails
|
@@ -74,7 +73,6 @@ executables: []
|
|
74
73
|
extensions: []
|
75
74
|
extra_rdoc_files: []
|
76
75
|
files:
|
77
|
-
- MIT-LICENSE
|
78
76
|
- README.md
|
79
77
|
- Rakefile
|
80
78
|
- lib/statusable.rb
|
@@ -90,7 +88,6 @@ metadata:
|
|
90
88
|
source_code_uri: https://github.com/pdobb/statusable
|
91
89
|
homepage_uri: https://github.com/pdobb/statusable
|
92
90
|
rubygems_mfa_required: 'true'
|
93
|
-
post_install_message:
|
94
91
|
rdoc_options: []
|
95
92
|
require_paths:
|
96
93
|
- lib
|
@@ -98,15 +95,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
95
|
requirements:
|
99
96
|
- - ">="
|
100
97
|
- !ruby/object:Gem::Version
|
101
|
-
version: '3.
|
98
|
+
version: '3.2'
|
102
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
100
|
requirements:
|
104
101
|
- - ">="
|
105
102
|
- !ruby/object:Gem::Version
|
106
103
|
version: '0'
|
107
104
|
requirements: []
|
108
|
-
rubygems_version: 3.
|
109
|
-
signing_key:
|
105
|
+
rubygems_version: 3.6.2
|
110
106
|
specification_version: 4
|
111
107
|
summary: Adds a `has_statuses` macro for defining common status-related ActiveRecord
|
112
108
|
/ Relation methods.
|
data/MIT-LICENSE
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright Paul DobbinSchmaltz
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|