cron_swanson 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +34 -0
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/cron_swanson.gemspec +3 -1
- data/lib/cron_swanson/version.rb +1 -1
- metadata +11 -23
- data/.travis.yml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 774b4cc23d01f0a3659e55c4d76c889f563dafdad67099568485ecf63772c8e1
|
4
|
+
data.tar.gz: fbdbcb9c0bd490d67baf8a0fb48d54573db09eaa008093ec2e63a199dc969f60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
[![
|
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
|
-
|
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
|
data/lib/cron_swanson/version.rb
CHANGED
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.
|
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:
|
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:
|
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
|
-
|
87
|
-
|
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: []
|