ruby-clock 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20fc4e914b706c818238f8d45a6d81ff650e18ae8fe90b47a9f818e28871bbc6
4
- data.tar.gz: b0d23fded8dfd9981bedcfcaf9300376c615f53ce782a6f9e1a807b3e054c324
3
+ metadata.gz: a1da2d91639ba4f1ce53237cedc38959c32cb922c0aacbd41c421bbf3e32faec
4
+ data.tar.gz: 93538b9bc5a3197c19cc2a008903c3cc49831181a4fc8a95c76757bef5767026
5
5
  SHA512:
6
- metadata.gz: 840663b99bf1d803274dc28d7b72882958b1e99fd93b7039fe249192fcb510b07fd894b5e5b404de1153a53095763bd0aaaf1c0a16f20b225187477a3887fab9
7
- data.tar.gz: 7ba7a882f7e6cb6ed115d88769d433d835e9b8782c5e9272436ff28956594cd9d8ae995ea54e59e86fbf3daf4848b0eca30a60b20933a16401d0f21cbb6e24a4
6
+ metadata.gz: 4e2f94f9b317142e112d1b4ef6aa05a209277d4fc33d73b776b694be73e2c4d0fadc4ee8c219c92583812ae774fd7608b6d4739b779980058e7353dad67ea57c
7
+ data.tar.gz: afd0702847b96a3c7435e21a1a5f8fd2f576bd4cd84126ec031d2e0b82ae06f8247e2b0b4af261470b17d49af07101002e2fe29da16d8b791fa5985f948bf829
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 2.0.1
2
+
3
+ ### Bug fix
4
+
5
+ * Invoking without specifying a Clockfile was broken when one of the flags was
6
+ implemented. This is fixed now.
7
+
1
8
  ## 2.0.0
2
9
 
3
10
  ### Features
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
- THESE ARE THE DOCS FOR VERSION 2.0.0.beta
2
-
3
- See version 1 docs here: https://github.com/jjb/ruby-clock/tree/v1.0.0
1
+ _These are the docs for version 2.0.0. See version 1 docs here: https://github.com/jjb/ruby-clock/tree/v1.0.0_
4
2
 
5
3
  # ruby-clock
6
4
 
@@ -33,7 +31,7 @@ ruby >= 3.0 is required.
33
31
  Add these lines to your application's Gemfile:
34
32
 
35
33
  ```ruby
36
- gem 'ruby-clock', '2.0.0.beta10'
34
+ gem 'ruby-clock'
37
35
  ```
38
36
 
39
37
  And then execute:
data/exe/clock CHANGED
@@ -12,7 +12,7 @@ RubyClock.instance.add_rails_executor_to_around_actions
12
12
  check_syntax = false
13
13
  check_slug_uniqueness = false
14
14
  generate_dummy_crontab = false
15
- if '--' == ARGV[0][0..1]
15
+ if ARGV[0] && '--' == ARGV[0][0..1]
16
16
  case ARGV[0]
17
17
  when '--environment-and-syntax-check'
18
18
  check_syntax = true
@@ -1,3 +1,3 @@
1
1
  class RubyClock
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-clock
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Bachir
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-23 00:00:00.000000000 Z
11
+ date: 2023-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rufus-scheduler