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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4f0fb3fb88ee686970dd45f050f0552c21a5cbfa172d47a4e6efcdf49d315a1
4
- data.tar.gz: bfd9fd1bf295831fa16c9aede647b3f8390af002937542a60b332893bf03f817
3
+ metadata.gz: aa383813abc9351745d55783dceca9b646810a8888ee4a6b802f3cb9fe68c23b
4
+ data.tar.gz: 6e9d739bee0e642e43a4afab98599c1d858ed264bd630422af8ed7d9ebe3b2f4
5
5
  SHA512:
6
- metadata.gz: 00bc14c61c2759891507a8b777708b5fd667353adbcff8255c91870f85d6479fabef87fad4f30bd47d8ead3459173ae979f767b958e20f809fe6d455f6c08bcc
7
- data.tar.gz: 1468b0315071178981d7013485c6dca6304a6165d4372c632f722644e3b1864de0c825a1d6356cda2fef07048dbbff0bfc6f0f2ed57f77c2d542778a3df7ec03
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.0] - 2024-02-26
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_time (1.0.0)
4
+ easy_time (1.0.1)
5
5
  activesupport
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -17,14 +17,13 @@ namespace :spec do
17
17
  end
18
18
 
19
19
  task default: %i[spec rubocop]
20
- task build: %i[bundle:add_linux]
21
- task install: %i[build spec bundle:add_linux]
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class EasyTime
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_time
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alan Stebbens