elastic_whenever 0.3.0 → 0.3.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 +5 -5
- data/.travis.yml +3 -1
- data/CHANGELOG.md +11 -0
- data/lib/elastic_whenever/option.rb +2 -2
- data/lib/elastic_whenever/schedule.rb +1 -0
- data/lib/elastic_whenever/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e0e7d05777768c016d7e92ae3791eea3511113f15f2978f38769d7e6aba9f55b
|
|
4
|
+
data.tar.gz: 95bd85ba0b94bfcdb5415c67e2c3791158c545c162c495d188a425c4b2381022
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a937e60f02d79654c12b37dc1fe8136ff6e29f1bc40717b483fd1fb57bb0e97041a59f91f6d19cb76ef01c053d4505d3a5753ef8452c6a693a01316a511ec76
|
|
7
|
+
data.tar.gz: eb8131af0486713cd3e10cae6c9a3f7f6092a4b99736564a86515f1d6c97ed3131fdb391ac00a42193bcbffbb44d59e118cec9e69a4d896369c01dcff1171159
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# v0.3.1 (2018-06-25)
|
|
2
|
+
|
|
3
|
+
## BugFix
|
|
4
|
+
|
|
5
|
+
- add `attr_reader :enviroment` ([#32](https://github.com/wata727/elastic_whenever/pull/32))
|
|
6
|
+
|
|
7
|
+
## Others
|
|
8
|
+
|
|
9
|
+
- CI against Ruby 2.5 ([#30](https://github.com/wata727/elastic_whenever/pull/30))
|
|
10
|
+
- Use `File.exist?` instead of `File.exists?` ([#31](https://github.com/wata727/elastic_whenever/pull/31))
|
|
11
|
+
|
|
@@ -79,7 +79,7 @@ module ElasticWhenever
|
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
def validate!
|
|
82
|
-
raise InvalidOptionException.new("Can't find file: #{schedule_file}") unless File.
|
|
82
|
+
raise InvalidOptionException.new("Can't find file: #{schedule_file}") unless File.exist?(schedule_file)
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
private
|
|
@@ -90,4 +90,4 @@ module ElasticWhenever
|
|
|
90
90
|
attr_reader :region
|
|
91
91
|
attr_reader :credentials
|
|
92
92
|
end
|
|
93
|
-
end
|
|
93
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic_whenever
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuma Watanabe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -119,6 +119,7 @@ files:
|
|
|
119
119
|
- ".gitignore"
|
|
120
120
|
- ".rspec"
|
|
121
121
|
- ".travis.yml"
|
|
122
|
+
- CHANGELOG.md
|
|
122
123
|
- Gemfile
|
|
123
124
|
- LICENSE.txt
|
|
124
125
|
- README.md
|
|
@@ -158,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
159
|
version: '0'
|
|
159
160
|
requirements: []
|
|
160
161
|
rubyforge_project:
|
|
161
|
-
rubygems_version: 2.6
|
|
162
|
+
rubygems_version: 2.7.6
|
|
162
163
|
signing_key:
|
|
163
164
|
specification_version: 4
|
|
164
165
|
summary: Manage ECS Scheduled Tasks like Whenever
|