cloud_watch_scheduled_events_cron 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 471a2bed690054bcdbf325639a68da7e39b99060b34b3e9b5487c4de89f4c850
4
+ data.tar.gz: 2bf673048541b316e55f49abcc2f1f7a62d2eba27d32e001444dee81637efe82
5
+ SHA512:
6
+ metadata.gz: dd87e6920f4b800db3153d5a08fb35d090c288b52ecd3168ed81a1a07e3d4a850282b8d39bfc5c184396e96e8c5897292f1af44d2a085e5c9063b1259fd6a52f
7
+ data.tar.gz: a9689682941f6e44fd53fd4bc7f5e24d9333f858dcc13d24d1025630b38145188e6ddc903ae3eedc5649d8cb6b8d329d3cf7c3b6aa06d529f6af98f803574dc5
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /Gemfile.lock
10
+
11
+ ## Environment normalization:
12
+ /.bundle/
13
+ /vendor/bundle
14
+ /lib/bundler/man/
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.5.0
4
+ script: bundle exec rake test
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in cloud_watch_scheduled_events_cron.gemspec
6
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Tomoaki Abe
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,46 @@
1
+ # CloudWatchScheduledEventsCron
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'cloud_watch_scheduled_events_cron'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ ```
14
+ $ bundle
15
+ ```
16
+
17
+ Or install it yourself as:
18
+
19
+ ```
20
+ $ gem install cloud_watch_scheduled_events_cron
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ Convert standard output.
26
+
27
+ ```
28
+ % echo '0 10 * * *' | to_cwcec
29
+ 0 10 * * ? *
30
+ % echo '5 * * * 1-5' | to_cwcec
31
+ 5 * ? * MON-FRI *
32
+ ```
33
+
34
+ ## Development
35
+
36
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+
38
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/abetomo/cloud_watch_scheduled_events_cron.
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ desc "Run test"
4
+ task :test do
5
+ ruby("test/run_test.rb")
6
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cloud_watch_scheduled_events_cron"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../lib/cloud_watch_scheduled_events_cron'
3
+ puts CloudWatchScheduledEventsCron::Converter::cron_expressions(STDIN.gets)
@@ -0,0 +1,27 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "cloud_watch_scheduled_events_cron/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cloud_watch_scheduled_events_cron"
8
+ spec.version = CloudWatchScheduledEventsCron::VERSION
9
+ spec.authors = ["abetomo"]
10
+ spec.email = ["abe@enzou.tokyo"]
11
+
12
+ spec.summary = %q{Convert crontab expression to CloudWatch expression.}
13
+ spec.description = %q{Convert crontab expression to CloudWatch expression.}
14
+ spec.homepage = "https://github.com/abetomo/cloud_watch_scheduled_events_cron"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "bin"
21
+ spec.executables = ["to_cwcec"]
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.16"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "test-unit"
27
+ end
@@ -0,0 +1,64 @@
1
+ require "cloud_watch_scheduled_events_cron/version"
2
+
3
+ # TODO
4
+ # Supports all cases since it only supports the following document examples.
5
+ # https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html
6
+
7
+ module CloudWatchScheduledEventsCron
8
+ class Converter
9
+ WDAY = [
10
+ 'SUN',
11
+ 'MON',
12
+ 'TUE',
13
+ 'WED',
14
+ 'THU',
15
+ 'FRI',
16
+ 'SAT',
17
+ 'SUN',
18
+ ]
19
+
20
+ def self.cron_expressions(crontab_expressions)
21
+ schedule = parse_cron_expressions(crontab_expressions)
22
+ return '%s %s %s %s %s *' % [
23
+ schedule[:minute],
24
+ schedule[:hour],
25
+ day(schedule),
26
+ schedule[:month],
27
+ wday(schedule)
28
+ ]
29
+ end
30
+
31
+ def self.parse_cron_expressions(crontab_expressions)
32
+ schedule = crontab_expressions.split(/\s+/)
33
+ return {
34
+ minute: schedule[0],
35
+ hour: schedule[1],
36
+ day: schedule[2],
37
+ month: schedule[3],
38
+ wday: schedule[4]
39
+ }
40
+ end
41
+
42
+ def self.day(schedule)
43
+ if schedule[:day] != '*'
44
+ return schedule[:day]
45
+ end
46
+ if schedule[:wday] == '*'
47
+ return '*'
48
+ end
49
+ return '?'
50
+ end
51
+
52
+ def self.wday(schedule)
53
+ if schedule[:wday] == '*'
54
+ return '?'
55
+ end
56
+
57
+ # TODO
58
+ # other than hyphen
59
+ schedule[:wday].split(/-/).map{|wday|
60
+ WDAY[wday.to_i]
61
+ }.join('-')
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,3 @@
1
+ module CloudWatchScheduledEventsCron
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cloud_watch_scheduled_events_cron
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - abetomo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-05-31 00:00:00.000000000 Z
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.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: test-unit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Convert crontab expression to CloudWatch expression.
56
+ email:
57
+ - abe@enzou.tokyo
58
+ executables:
59
+ - to_cwcec
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - bin/console
70
+ - bin/setup
71
+ - bin/to_cwcec
72
+ - cloud_watch_scheduled_events_cron.gemspec
73
+ - lib/cloud_watch_scheduled_events_cron.rb
74
+ - lib/cloud_watch_scheduled_events_cron/version.rb
75
+ homepage: https://github.com/abetomo/cloud_watch_scheduled_events_cron
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.7.3
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Convert crontab expression to CloudWatch expression.
99
+ test_files: []