cron_swanson 0.3.3 → 0.3.4

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: 1048a69a45bdf66991ef9ccbab5da5ae6e4518be75fc59cb2e5048971bee5d50
4
- data.tar.gz: 0c775f6e8f0df1c6c121bc4af914830e538a8e185e7162b732a8448d4d958602
3
+ metadata.gz: 774b4cc23d01f0a3659e55c4d76c889f563dafdad67099568485ecf63772c8e1
4
+ data.tar.gz: fbdbcb9c0bd490d67baf8a0fb48d54573db09eaa008093ec2e63a199dc969f60
5
5
  SHA512:
6
- metadata.gz: eeb7cbc32e4fd6e062377655aaeb64095303c30cdae05aa0a15c922c5f8a5edef7ff8fcb57c382545483b2332269a49ed99211df57189d989de054b774f96d92
7
- data.tar.gz: a40de80fa4f0514828724c8f1b531fa5637652d258aa5b624b158d9085e8fb2846dffe3c6775910346fb537315300831fcfa9111cdf7e33246a084891b8039af
6
+ metadata.gz: 4fd63d57a96485ba5a6f31120324cbfeff992dd58c92e4b278c63efc5c54b4d419a447635dbfa9f00f4e8232bff7abd65fae597ad18975a2da6c2d003ca44e16
7
+ data.tar.gz: 725cadac1de63e915bd43f5d0f7c57b16bb9351e8c01f9b1f19e09cdf4675337bb4b39e2b56b7063c25541fa76bcaddcb10898b6f4d865f004ea196a3df278a9
@@ -0,0 +1,34 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: rspec
9
+
10
+ on:
11
+ push:
12
+ branches: '**'
13
+
14
+ jobs:
15
+ test:
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ ruby: ['2.5', '2.6', '2.7']
20
+
21
+ runs-on: ubuntu-latest
22
+
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - name: Set up Ruby
26
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
27
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{ matrix.ruby }}
31
+ - name: Install dependencies
32
+ run: bundle install
33
+ - name: Run tests
34
+ run: bundle exec rake spec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.4 : "Dear frozen yogurt, you are the celery of desserts. Be ice cream or be nothing." : Jan 1, 2021
4
+
5
+ Note that gem doesn't currently work with ruby 3.
6
+
3
7
  ## 0.3.3 : "There has never been a sadness that can’t been cured by breakfast food." : May 13, 2020
4
8
 
5
9
  Remove 1 annoying `puts` statement.
data/README.md CHANGED
@@ -12,7 +12,7 @@ random) but which are fuzzed/shifted depending on some input.
12
12
 
13
13
  ## Build Status
14
14
 
15
- [![Build Status](https://travis-ci.org/alexdean/cron_swanson.svg?branch=master)](https://travis-ci.org/alexdean/cron_swanson)
15
+ [![Test Suite](https://github.com/alexdean/cron_swanson/actions/workflows/rspec.yml/badge.svg)](https://github.com/alexdean/cron_swanson/actions/workflows/rspec.yml)
16
16
 
17
17
  ## Installation
18
18
 
data/cron_swanson.gemspec CHANGED
@@ -22,6 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ["lib"]
24
24
 
25
- spec.add_development_dependency "bundler", "~> 1.17"
25
+ # https://github.com/alexdean/cron_swanson/issues/2
26
+ spec.required_ruby_version = ['>= 2.5.0', '< 3.0.0']
27
+
26
28
  spec.add_development_dependency "rake", ">= 12.3.3"
27
29
  end
@@ -1,3 +1,3 @@
1
1
  module CronSwanson
2
- VERSION = "0.3.3"
2
+ VERSION = "0.3.4"
3
3
  end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cron_swanson
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dean
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-13 00:00:00.000000000 Z
11
+ date: 2022-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.17'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.17'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: rake
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -45,11 +31,11 @@ executables: []
45
31
  extensions: []
46
32
  extra_rdoc_files: []
47
33
  files:
34
+ - ".github/workflows/rspec.yml"
48
35
  - ".gitignore"
49
36
  - ".rspec"
50
37
  - ".rubocop.yml"
51
38
  - ".ruby-version"
52
- - ".travis.yml"
53
39
  - CHANGELOG.md
54
40
  - Gemfile
55
41
  - Guardfile
@@ -68,7 +54,7 @@ files:
68
54
  homepage: https://github.com/alexdean/cron_swanson
69
55
  licenses: []
70
56
  metadata: {}
71
- post_install_message:
57
+ post_install_message:
72
58
  rdoc_options: []
73
59
  require_paths:
74
60
  - lib
@@ -76,16 +62,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
62
  requirements:
77
63
  - - ">="
78
64
  - !ruby/object:Gem::Version
79
- version: '0'
65
+ version: 2.5.0
66
+ - - "<"
67
+ - !ruby/object:Gem::Version
68
+ version: 3.0.0
80
69
  required_rubygems_version: !ruby/object:Gem::Requirement
81
70
  requirements:
82
71
  - - ">="
83
72
  - !ruby/object:Gem::Version
84
73
  version: '0'
85
74
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
88
- signing_key:
75
+ rubygems_version: 3.1.4
76
+ signing_key:
89
77
  specification_version: 4
90
78
  summary: distribute common cron jobs so they don't all start at the same moment
91
79
  test_files: []
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.4
4
- - 2.5
5
- - 2.6
6
- before_install:
7
- - gem install bundler --version='1.17.3'
8
- script:
9
- - bundle exec rake spec