time_for_a_boolean 0.2.1 → 0.2.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 +4 -4
- data/lib/time_for_a_boolean/version.rb +1 -1
- data/lib/time_for_a_boolean.rb +1 -0
- data/time_for_a_boolean.gemspec +7 -3
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0901b7d1345001ec725cbb1b9a8611d8014f611f539631f6a71bfdf03c6bbc3a'
|
|
4
|
+
data.tar.gz: 9a202da422fad3672d96941d6d5c7b3578f742ec0c5253ef42617217d65013e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17bb87c43aa0d9b10e83001f206105bf89ca36f4ce62569ad6eb2d8f9bdc9c51b06c3824f5700c3d5dabb91431908a819d8138b65cc400685732418ee985586d
|
|
7
|
+
data.tar.gz: 83f9c14b99d5c6c432708a67f155b65a641cfff762e94e2f6757e53fb8240abef572e6ccf98a0141cd2847a3123d4c9ee03ca7594dd3a68b8fc38bf0355a66dc
|
data/lib/time_for_a_boolean.rb
CHANGED
data/time_for_a_boolean.gemspec
CHANGED
|
@@ -6,20 +6,24 @@ require "time_for_a_boolean/version"
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "time_for_a_boolean"
|
|
8
8
|
spec.version = TimeForABoolean::VERSION
|
|
9
|
-
spec.authors = ["Caleb
|
|
10
|
-
spec.email = ["caleb@
|
|
9
|
+
spec.authors = ["Caleb Hearth"]
|
|
10
|
+
spec.email = ["caleb@calebhearth.com"]
|
|
11
11
|
spec.description = <<-DESCRIPTION
|
|
12
12
|
Use timestamp values to represent boolean data such as deleted, published,
|
|
13
13
|
or subscribed.
|
|
14
14
|
DESCRIPTION
|
|
15
15
|
spec.summary = "Back boolean values with timestamps"
|
|
16
|
-
spec.homepage = "https://github.com/
|
|
16
|
+
spec.homepage = "https://github.com/calebhearth/time_for_a_boolean"
|
|
17
17
|
spec.license = "MIT"
|
|
18
18
|
|
|
19
19
|
spec.files = `git ls-files`.split($/)
|
|
20
20
|
spec.test_files = spec.files.grep(%r{^spec/})
|
|
21
21
|
spec.require_paths = ["lib"]
|
|
22
22
|
|
|
23
|
+
spec.metadata = {
|
|
24
|
+
"funding-uri" => "https://github.com/sponsors/calebhearth"
|
|
25
|
+
}
|
|
26
|
+
|
|
23
27
|
spec.add_dependency "activerecord"
|
|
24
28
|
spec.add_dependency "railties"
|
|
25
29
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: time_for_a_boolean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Caleb
|
|
7
|
+
- Caleb Hearth
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -98,7 +98,7 @@ description: |2
|
|
|
98
98
|
Use timestamp values to represent boolean data such as deleted, published,
|
|
99
99
|
or subscribed.
|
|
100
100
|
email:
|
|
101
|
-
- caleb@
|
|
101
|
+
- caleb@calebhearth.com
|
|
102
102
|
executables: []
|
|
103
103
|
extensions: []
|
|
104
104
|
extra_rdoc_files: []
|
|
@@ -115,10 +115,11 @@ files:
|
|
|
115
115
|
- lib/time_for_a_boolean/version.rb
|
|
116
116
|
- spec/time_for_a_boolean_spec.rb
|
|
117
117
|
- time_for_a_boolean.gemspec
|
|
118
|
-
homepage: https://github.com/
|
|
118
|
+
homepage: https://github.com/calebhearth/time_for_a_boolean
|
|
119
119
|
licenses:
|
|
120
120
|
- MIT
|
|
121
|
-
metadata:
|
|
121
|
+
metadata:
|
|
122
|
+
funding-uri: https://github.com/sponsors/calebhearth
|
|
122
123
|
post_install_message:
|
|
123
124
|
rdoc_options: []
|
|
124
125
|
require_paths:
|
|
@@ -134,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
135
|
- !ruby/object:Gem::Version
|
|
135
136
|
version: '0'
|
|
136
137
|
requirements: []
|
|
137
|
-
rubygems_version: 3.
|
|
138
|
+
rubygems_version: 3.5.9
|
|
138
139
|
signing_key:
|
|
139
140
|
specification_version: 4
|
|
140
141
|
summary: Back boolean values with timestamps
|