easy_time 1.0.0 → 1.0.1
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 +2 -1
- data/Gemfile.lock +1 -1
- data/Rakefile +3 -4
- data/lib/easy_time/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa383813abc9351745d55783dceca9b646810a8888ee4a6b802f3cb9fe68c23b
|
|
4
|
+
data.tar.gz: 6e9d739bee0e642e43a4afab98599c1d858ed264bd630422af8ed7d9ebe3b2f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a00290ca262c9528dd5a29215c001b38ffd2e835d4bac1e5d1cb2f0e56a60b501f463d2c00cf53aa2b5b1f1a88604689ccb42a1f67fe9d8e99ca67690dfbd72
|
|
7
|
+
data.tar.gz: 0ccc913bc8416917486ee23f59fc6f7771a17b6aa8ce8f92b11dbb3b002294b88cdaf36e5f0b1b9ff0f0a7534cf95ca1cd9999c6b20a61ba21bb996899d01718
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log for EasyTime
|
|
2
2
|
|
|
3
|
-
## [1.0.
|
|
3
|
+
## [1.0.1] - 2024-02-26
|
|
4
4
|
|
|
5
5
|
### Changed
|
|
6
6
|
|
|
@@ -8,6 +8,7 @@ Changed `convert` to use a named `coerce:` keyword parameter.
|
|
|
8
8
|
Updated and modernized the specs.
|
|
9
9
|
Rubocop complaints satisfied.
|
|
10
10
|
Bypassed '/specs/' for SimplCov
|
|
11
|
+
Changed Rakefile to not automatically run build:install-x86_64
|
|
11
12
|
|
|
12
13
|
###
|
|
13
14
|
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -17,14 +17,13 @@ namespace :spec do
|
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
task default: %i[spec rubocop]
|
|
20
|
-
task
|
|
21
|
-
task
|
|
22
|
-
task release: %i[build spec install bundle:add_linux]
|
|
20
|
+
task install: %i[build spec clean]
|
|
21
|
+
task release: %i[build spec install]
|
|
23
22
|
|
|
24
23
|
namespace :bundle do
|
|
25
24
|
desc 'add linux platform to Gemfile.lock'
|
|
26
25
|
task :add_linux do
|
|
27
|
-
sh 'bundle lock --add-platform x86_64-linux
|
|
26
|
+
sh "grep -s 'x86_64-linux' Gemfile.lock >/dev/null || bundle lock --add-platform x86_64-linux"
|
|
28
27
|
end
|
|
29
28
|
end
|
|
30
29
|
|
data/lib/easy_time/version.rb
CHANGED