day_of_week_extension 0.0.4 → 0.1.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/day_of_week_extension.rb +2 -0
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90481bfbb68b16b2a3418582bb96097d93be18cdf0028062b090de118aaa032d
|
4
|
+
data.tar.gz: 656ff94cfbd9982d1ab6d5a9e43d0e4f6f93d648c4ccb6c55fc5df5cf90d4121
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dacd7c08b47937d3884ea67779b4b268ff0cb43aa752c069d560d62f10c50b9665c6211044af9efb56882a8b0ba2b09c0a69b22071c84b10496f1c56412418c
|
7
|
+
data.tar.gz: ccfc11173079ffe04ffcd24e72e7d7a6153b352551816b2884bda0491be3c87130d15b7071155d2c9529b7f973aca7f32703e2319c68e421b5190d5e637e32d3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
0.1.0 (2023-09-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Add support for ruby 2.5.3
|
8
|
+
|
9
|
+
1.0.1 (2023-05-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Classes needed `require`d
|
13
|
+
|
14
|
+
1.0.0 (2023-05-15)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Version bump to v1
|
18
|
+
|
19
|
+
0.0.5 (2022-03-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Version bump. Missed a version bump
|
23
|
+
|
4
24
|
0.0.4 (2022-03-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: day_of_week_extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcus Wyatt
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description:
|
14
14
|
email:
|
15
15
|
- mwyatt@brandsinsurance.com
|
16
16
|
executables: []
|
@@ -21,12 +21,13 @@ files:
|
|
21
21
|
- LICENSE.txt
|
22
22
|
- VERSION
|
23
23
|
- lib/day_of_week_extension.rb
|
24
|
-
homepage: https://github.com/
|
24
|
+
homepage: https://github.com/BrandsInsurance/rails-extensions
|
25
25
|
licenses:
|
26
26
|
- MIT
|
27
27
|
metadata:
|
28
|
-
|
29
|
-
|
28
|
+
rubygems_mfa_required: 'true'
|
29
|
+
source_code_uri: https://github.com/BrandsInsurance/rails-extensions/tree/main/gems/day_of_week_extension
|
30
|
+
post_install_message:
|
30
31
|
rdoc_options: []
|
31
32
|
require_paths:
|
32
33
|
- lib
|
@@ -34,15 +35,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
35
|
requirements:
|
35
36
|
- - ">="
|
36
37
|
- !ruby/object:Gem::Version
|
37
|
-
version:
|
38
|
+
version: 2.5.3
|
38
39
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
39
40
|
requirements:
|
40
41
|
- - ">="
|
41
42
|
- !ruby/object:Gem::Version
|
42
43
|
version: '0'
|
43
44
|
requirements: []
|
44
|
-
rubygems_version: 3.
|
45
|
-
signing_key:
|
45
|
+
rubygems_version: 3.0.3
|
46
|
+
signing_key:
|
46
47
|
specification_version: 4
|
47
48
|
summary: Adds `day_of_week` method to `Date` and `DateTime`
|
48
49
|
test_files: []
|