cloudwatch_scheduler 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +2 -0
- data/.travis.yml +5 -3
- data/Appraisals +8 -4
- data/Gemfile +2 -0
- data/README.md +4 -2
- data/cloudwatch_scheduler.gemspec +10 -8
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_4.2.gemfile +1 -1
- data/gemfiles/rails_5.0.gemfile +1 -1
- data/gemfiles/rails_5.1.gemfile +14 -0
- data/gemfiles/rails_5.2.gemfile +14 -0
- data/lib/cloudwatch_scheduler/provisioner.rb +10 -8
- data/lib/cloudwatch_scheduler/version.rb +1 -1
- metadata +25 -11
- data/gemfiles/rails_4.2.gemfile.lock +0 -188
- data/gemfiles/rails_5.0.gemfile.lock +0 -194
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 64fa196a7c5440aced3186a703a91171b2f39be185e19ef5362d5279e0a757c7
|
4
|
+
data.tar.gz: 73ed1e6e651e4a7316431f0a6d0ab919fb61333c003f50112d1ea18aeb8ca729
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b581946e80369ec2c37e03a7b049e37f5e052ed9c4d49efa469f84d3bd694d1d528cd4b798a9a4ef0eef41220d0713134ab81cd63adf4efa8fad388f0d4b85c5
|
7
|
+
data.tar.gz: 8e9c30866cd7c5cdae95f852322473b6de7275321371a1ce27badc68398eb529aee864c12a48e51b67231a9faac12ee3d90f3d4eb440f2fedf17298348e6fbb6
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
sudo: false
|
2
2
|
language: ruby
|
3
3
|
rvm:
|
4
|
-
- 2.3
|
5
|
-
|
4
|
+
- 2.5.3
|
5
|
+
- 2.6.1
|
6
|
+
before_install: gem install bundler
|
6
7
|
gemfile:
|
7
|
-
- gemfiles/rails_4.2.gemfile
|
8
8
|
- gemfiles/rails_5.0.gemfile
|
9
|
+
- gemfiles/rails_5.1.gemfile
|
10
|
+
- gemfiles/rails_5.2.gemfile
|
data/Appraisals
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# CloudwatchScheduler
|
2
2
|
|
3
|
+
[![Build Status](https://travis-ci.org/paul/cloudwatch_scheduler.svg?branch=master)](https://travis-ci.org/paul/cloudwatch_scheduler)
|
4
|
+
|
3
5
|
Are you using Rails 4.2+ and ActiveJob with the [Shoryuken
|
4
6
|
driver][shoryuken-driver] to use SQS? Do you have recurring jobs that you kick
|
5
7
|
off periodically with the [amazing Clockwork gem][clockwork]? Tired of paying
|
@@ -32,7 +34,7 @@ Or install it yourself as:
|
|
32
34
|
|
33
35
|
## Usage
|
34
36
|
|
35
|
-
Make yourself a `config/
|
37
|
+
Make yourself a `config/cloudwatch_schedule.rb` file:
|
36
38
|
|
37
39
|
```ruby
|
38
40
|
require "cloudwatch_scheduler"
|
@@ -74,6 +76,6 @@ Bug reports and pull requests are welcome on GitHub at
|
|
74
76
|
https://github.com/paul/cloudwatch_scheduler.
|
75
77
|
|
76
78
|
[shoryuken-driver]: https://github.com/phstc/shoryuken/wiki/Rails-Integration-Active-Job
|
77
|
-
[clockwork]: https://
|
79
|
+
[clockwork]: https://rubygems.org/gems/clockwork
|
78
80
|
[cloudwatch-events]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/ScheduledEvents.html
|
79
81
|
|
@@ -1,7 +1,8 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path("lib", __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
5
|
+
require "cloudwatch_scheduler/version"
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
8
|
spec.name = "cloudwatch_scheduler"
|
@@ -9,20 +10,21 @@ Gem::Specification.new do |spec|
|
|
9
10
|
spec.authors = ["Paul Sadauskas"]
|
10
11
|
spec.email = ["psadauskas@gmail.com"]
|
11
12
|
|
12
|
-
spec.summary =
|
13
|
-
spec.description =
|
13
|
+
spec.summary = "Use AWS CloudWatch events to trigger recurring jobs."
|
14
|
+
spec.description = "Use Cloudwatch Events to kick off recurring SQS ActiveJob jobs."
|
14
15
|
spec.homepage = "https://github.com/paul/cloudwatch_scheduler"
|
15
16
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
18
|
spec.bindir = "exe"
|
18
|
-
spec.executables = spec.files.grep(%r
|
19
|
+
spec.executables = spec.files.grep(%r(^exe/)) { |f| File.basename(f) }
|
19
20
|
spec.require_paths = ["lib"]
|
20
21
|
|
21
|
-
spec.add_dependency "aws-sdk",
|
22
|
+
spec.add_dependency "aws-sdk-cloudwatchevents", "~> 1.13"
|
23
|
+
spec.add_dependency "aws-sdk-sqs", "~> 1.10"
|
22
24
|
spec.add_dependency "rails", ">= 4.2.0"
|
23
25
|
spec.add_dependency "shoryuken", ">= 2.0"
|
24
26
|
|
25
|
-
spec.add_development_dependency "bundler", "
|
27
|
+
spec.add_development_dependency "bundler", ">= 1.12"
|
26
28
|
spec.add_development_dependency "rake", "~> 10.0"
|
27
29
|
spec.add_development_dependency "rspec", "~> 3.0"
|
28
30
|
end
|
data/gemfiles/rails_4.2.gemfile
CHANGED
data/gemfiles/rails_5.0.gemfile
CHANGED
@@ -1,14 +1,17 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "aws-sdk-sqs"
|
4
|
+
require "aws-sdk-cloudwatchevents"
|
2
5
|
|
3
6
|
module CloudwatchScheduler
|
4
7
|
class Provisioner
|
5
|
-
|
6
8
|
attr_reader :config
|
7
9
|
|
8
10
|
def initialize(config, sqs_client: Aws::SQS::Client.new,
|
9
|
-
|
11
|
+
cwe_client: Aws::CloudWatchEvents::Client.new)
|
10
12
|
@config = config
|
11
|
-
@sqs_client
|
13
|
+
@sqs_client = sqs_client
|
14
|
+
@cwe_client = cwe_client
|
12
15
|
end
|
13
16
|
|
14
17
|
def provision
|
@@ -30,7 +33,7 @@ module CloudwatchScheduler
|
|
30
33
|
deadLetterTargetArn: dlq_arn
|
31
34
|
}.to_json
|
32
35
|
|
33
|
-
attributes = {"RedrivePolicy" => redrive_attrs}
|
36
|
+
attributes = { "RedrivePolicy" => redrive_attrs }
|
34
37
|
|
35
38
|
sqs.set_queue_attributes(queue_url: queue_url, attributes: attributes)
|
36
39
|
end
|
@@ -62,7 +65,7 @@ module CloudwatchScheduler
|
|
62
65
|
policy = {
|
63
66
|
"Version": "2012-10-17",
|
64
67
|
"Id": "#{queue_arn}/SQSDefaultPolicy",
|
65
|
-
"Statement": rule_arns.map
|
68
|
+
"Statement": rule_arns.map do |rule_arn|
|
66
69
|
{
|
67
70
|
"Sid": "TrustCWESendingToSQS",
|
68
71
|
"Effect": "Allow",
|
@@ -77,7 +80,7 @@ module CloudwatchScheduler
|
|
77
80
|
}
|
78
81
|
}
|
79
82
|
}
|
80
|
-
|
83
|
+
end
|
81
84
|
}
|
82
85
|
|
83
86
|
sqs.set_queue_attributes(
|
@@ -112,6 +115,5 @@ module CloudwatchScheduler
|
|
112
115
|
def sqs
|
113
116
|
@sqs_client
|
114
117
|
end
|
115
|
-
|
116
118
|
end
|
117
119
|
end
|
metadata
CHANGED
@@ -1,29 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudwatch_scheduler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Sadauskas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: aws-sdk
|
14
|
+
name: aws-sdk-cloudwatchevents
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1.13'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: aws-sdk-sqs
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: rails
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,14 +70,14 @@ dependencies:
|
|
56
70
|
name: bundler
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
|
-
- - "
|
73
|
+
- - ">="
|
60
74
|
- !ruby/object:Gem::Version
|
61
75
|
version: '1.12'
|
62
76
|
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
|
-
- - "
|
80
|
+
- - ">="
|
67
81
|
- !ruby/object:Gem::Version
|
68
82
|
version: '1.12'
|
69
83
|
- !ruby/object:Gem::Dependency
|
@@ -113,10 +127,11 @@ files:
|
|
113
127
|
- bin/console
|
114
128
|
- bin/setup
|
115
129
|
- cloudwatch_scheduler.gemspec
|
130
|
+
- gemfiles/.bundle/config
|
116
131
|
- gemfiles/rails_4.2.gemfile
|
117
|
-
- gemfiles/rails_4.2.gemfile.lock
|
118
132
|
- gemfiles/rails_5.0.gemfile
|
119
|
-
- gemfiles/rails_5.
|
133
|
+
- gemfiles/rails_5.1.gemfile
|
134
|
+
- gemfiles/rails_5.2.gemfile
|
120
135
|
- lib/cloudwatch_scheduler.rb
|
121
136
|
- lib/cloudwatch_scheduler/configuration.rb
|
122
137
|
- lib/cloudwatch_scheduler/engine.rb
|
@@ -143,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
158
|
- !ruby/object:Gem::Version
|
144
159
|
version: '0'
|
145
160
|
requirements: []
|
146
|
-
|
147
|
-
rubygems_version: 2.6.8
|
161
|
+
rubygems_version: 3.0.3
|
148
162
|
signing_key:
|
149
163
|
specification_version: 4
|
150
164
|
summary: Use AWS CloudWatch events to trigger recurring jobs.
|
@@ -1,188 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
cloudwatch_scheduler (1.0.0)
|
5
|
-
aws-sdk (~> 2)
|
6
|
-
rails (>= 4.2.0)
|
7
|
-
shoryuken (>= 2.0)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionmailer (4.2.8)
|
13
|
-
actionpack (= 4.2.8)
|
14
|
-
actionview (= 4.2.8)
|
15
|
-
activejob (= 4.2.8)
|
16
|
-
mail (~> 2.5, >= 2.5.4)
|
17
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
-
actionpack (4.2.8)
|
19
|
-
actionview (= 4.2.8)
|
20
|
-
activesupport (= 4.2.8)
|
21
|
-
rack (~> 1.6)
|
22
|
-
rack-test (~> 0.6.2)
|
23
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
25
|
-
actionview (4.2.8)
|
26
|
-
activesupport (= 4.2.8)
|
27
|
-
builder (~> 3.1)
|
28
|
-
erubis (~> 2.7.0)
|
29
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
30
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
31
|
-
activejob (4.2.8)
|
32
|
-
activesupport (= 4.2.8)
|
33
|
-
globalid (>= 0.3.0)
|
34
|
-
activemodel (4.2.8)
|
35
|
-
activesupport (= 4.2.8)
|
36
|
-
builder (~> 3.1)
|
37
|
-
activerecord (4.2.8)
|
38
|
-
activemodel (= 4.2.8)
|
39
|
-
activesupport (= 4.2.8)
|
40
|
-
arel (~> 6.0)
|
41
|
-
activesupport (4.2.8)
|
42
|
-
i18n (~> 0.7)
|
43
|
-
minitest (~> 5.1)
|
44
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
45
|
-
tzinfo (~> 1.1)
|
46
|
-
appraisal (2.1.0)
|
47
|
-
bundler
|
48
|
-
rake
|
49
|
-
thor (>= 0.14.0)
|
50
|
-
arel (6.0.4)
|
51
|
-
awesome_print (1.7.0)
|
52
|
-
aws-sdk (2.8.5)
|
53
|
-
aws-sdk-resources (= 2.8.5)
|
54
|
-
aws-sdk-core (2.8.5)
|
55
|
-
aws-sigv4 (~> 1.0)
|
56
|
-
jmespath (~> 1.0)
|
57
|
-
aws-sdk-resources (2.8.5)
|
58
|
-
aws-sdk-core (= 2.8.5)
|
59
|
-
aws-sigv4 (1.0.0)
|
60
|
-
builder (3.2.3)
|
61
|
-
coderay (1.1.1)
|
62
|
-
concurrent-ruby (1.0.5)
|
63
|
-
diff-lcs (1.3)
|
64
|
-
erubis (2.7.0)
|
65
|
-
ffi (1.9.18)
|
66
|
-
formatador (0.2.5)
|
67
|
-
globalid (0.3.7)
|
68
|
-
activesupport (>= 4.1.0)
|
69
|
-
guard (2.14.1)
|
70
|
-
formatador (>= 0.2.4)
|
71
|
-
listen (>= 2.7, < 4.0)
|
72
|
-
lumberjack (~> 1.0)
|
73
|
-
nenv (~> 0.1)
|
74
|
-
notiffany (~> 0.0)
|
75
|
-
pry (>= 0.9.12)
|
76
|
-
shellany (~> 0.0)
|
77
|
-
thor (>= 0.18.1)
|
78
|
-
guard-compat (1.2.1)
|
79
|
-
guard-rspec (4.7.3)
|
80
|
-
guard (~> 2.1)
|
81
|
-
guard-compat (~> 1.1)
|
82
|
-
rspec (>= 2.99.0, < 4.0)
|
83
|
-
i18n (0.8.1)
|
84
|
-
jmespath (1.3.1)
|
85
|
-
listen (3.1.5)
|
86
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
87
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
88
|
-
ruby_dep (~> 1.2)
|
89
|
-
loofah (2.0.3)
|
90
|
-
nokogiri (>= 1.5.9)
|
91
|
-
lumberjack (1.0.11)
|
92
|
-
mail (2.6.4)
|
93
|
-
mime-types (>= 1.16, < 4)
|
94
|
-
method_source (0.8.2)
|
95
|
-
mime-types (3.1)
|
96
|
-
mime-types-data (~> 3.2015)
|
97
|
-
mime-types-data (3.2016.0521)
|
98
|
-
mini_portile2 (2.1.0)
|
99
|
-
minitest (5.10.1)
|
100
|
-
nenv (0.3.0)
|
101
|
-
nokogiri (1.7.0.1)
|
102
|
-
mini_portile2 (~> 2.1.0)
|
103
|
-
notiffany (0.1.1)
|
104
|
-
nenv (~> 0.1)
|
105
|
-
shellany (~> 0.0)
|
106
|
-
pry (0.10.4)
|
107
|
-
coderay (~> 1.1.0)
|
108
|
-
method_source (~> 0.8.1)
|
109
|
-
slop (~> 3.4)
|
110
|
-
rack (1.6.5)
|
111
|
-
rack-test (0.6.3)
|
112
|
-
rack (>= 1.0)
|
113
|
-
rails (4.2.8)
|
114
|
-
actionmailer (= 4.2.8)
|
115
|
-
actionpack (= 4.2.8)
|
116
|
-
actionview (= 4.2.8)
|
117
|
-
activejob (= 4.2.8)
|
118
|
-
activemodel (= 4.2.8)
|
119
|
-
activerecord (= 4.2.8)
|
120
|
-
activesupport (= 4.2.8)
|
121
|
-
bundler (>= 1.3.0, < 2.0)
|
122
|
-
railties (= 4.2.8)
|
123
|
-
sprockets-rails
|
124
|
-
rails-deprecated_sanitizer (1.0.3)
|
125
|
-
activesupport (>= 4.2.0.alpha)
|
126
|
-
rails-dom-testing (1.0.8)
|
127
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
128
|
-
nokogiri (~> 1.6)
|
129
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
130
|
-
rails-html-sanitizer (1.0.3)
|
131
|
-
loofah (~> 2.0)
|
132
|
-
railties (4.2.8)
|
133
|
-
actionpack (= 4.2.8)
|
134
|
-
activesupport (= 4.2.8)
|
135
|
-
rake (>= 0.8.7)
|
136
|
-
thor (>= 0.18.1, < 2.0)
|
137
|
-
rake (10.5.0)
|
138
|
-
rb-fsevent (0.9.8)
|
139
|
-
rb-inotify (0.9.8)
|
140
|
-
ffi (>= 0.5.0)
|
141
|
-
rspec (3.5.0)
|
142
|
-
rspec-core (~> 3.5.0)
|
143
|
-
rspec-expectations (~> 3.5.0)
|
144
|
-
rspec-mocks (~> 3.5.0)
|
145
|
-
rspec-core (3.5.4)
|
146
|
-
rspec-support (~> 3.5.0)
|
147
|
-
rspec-expectations (3.5.0)
|
148
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
149
|
-
rspec-support (~> 3.5.0)
|
150
|
-
rspec-mocks (3.5.0)
|
151
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
152
|
-
rspec-support (~> 3.5.0)
|
153
|
-
rspec-support (3.5.0)
|
154
|
-
ruby_dep (1.5.0)
|
155
|
-
shellany (0.0.1)
|
156
|
-
shoryuken (3.0.0)
|
157
|
-
aws-sdk-core (~> 2)
|
158
|
-
concurrent-ruby
|
159
|
-
thor
|
160
|
-
slop (3.6.0)
|
161
|
-
sprockets (3.7.1)
|
162
|
-
concurrent-ruby (~> 1.0)
|
163
|
-
rack (> 1, < 3)
|
164
|
-
sprockets-rails (3.2.0)
|
165
|
-
actionpack (>= 4.0)
|
166
|
-
activesupport (>= 4.0)
|
167
|
-
sprockets (>= 3.0.0)
|
168
|
-
thor (0.19.4)
|
169
|
-
thread_safe (0.3.6)
|
170
|
-
tzinfo (1.2.2)
|
171
|
-
thread_safe (~> 0.1)
|
172
|
-
|
173
|
-
PLATFORMS
|
174
|
-
ruby
|
175
|
-
|
176
|
-
DEPENDENCIES
|
177
|
-
appraisal
|
178
|
-
awesome_print
|
179
|
-
bundler (~> 1.12)
|
180
|
-
cloudwatch_scheduler!
|
181
|
-
guard
|
182
|
-
guard-rspec
|
183
|
-
rails (~> 4.2.0)
|
184
|
-
rake (~> 10.0)
|
185
|
-
rspec (~> 3.0)
|
186
|
-
|
187
|
-
BUNDLED WITH
|
188
|
-
1.14.3
|
@@ -1,194 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
cloudwatch_scheduler (1.0.0)
|
5
|
-
aws-sdk (~> 2)
|
6
|
-
rails (>= 4.2.0)
|
7
|
-
shoryuken (>= 2.0)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actioncable (5.0.2)
|
13
|
-
actionpack (= 5.0.2)
|
14
|
-
nio4r (>= 1.2, < 3.0)
|
15
|
-
websocket-driver (~> 0.6.1)
|
16
|
-
actionmailer (5.0.2)
|
17
|
-
actionpack (= 5.0.2)
|
18
|
-
actionview (= 5.0.2)
|
19
|
-
activejob (= 5.0.2)
|
20
|
-
mail (~> 2.5, >= 2.5.4)
|
21
|
-
rails-dom-testing (~> 2.0)
|
22
|
-
actionpack (5.0.2)
|
23
|
-
actionview (= 5.0.2)
|
24
|
-
activesupport (= 5.0.2)
|
25
|
-
rack (~> 2.0)
|
26
|
-
rack-test (~> 0.6.3)
|
27
|
-
rails-dom-testing (~> 2.0)
|
28
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
29
|
-
actionview (5.0.2)
|
30
|
-
activesupport (= 5.0.2)
|
31
|
-
builder (~> 3.1)
|
32
|
-
erubis (~> 2.7.0)
|
33
|
-
rails-dom-testing (~> 2.0)
|
34
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
35
|
-
activejob (5.0.2)
|
36
|
-
activesupport (= 5.0.2)
|
37
|
-
globalid (>= 0.3.6)
|
38
|
-
activemodel (5.0.2)
|
39
|
-
activesupport (= 5.0.2)
|
40
|
-
activerecord (5.0.2)
|
41
|
-
activemodel (= 5.0.2)
|
42
|
-
activesupport (= 5.0.2)
|
43
|
-
arel (~> 7.0)
|
44
|
-
activesupport (5.0.2)
|
45
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
46
|
-
i18n (~> 0.7)
|
47
|
-
minitest (~> 5.1)
|
48
|
-
tzinfo (~> 1.1)
|
49
|
-
appraisal (2.1.0)
|
50
|
-
bundler
|
51
|
-
rake
|
52
|
-
thor (>= 0.14.0)
|
53
|
-
arel (7.1.4)
|
54
|
-
awesome_print (1.7.0)
|
55
|
-
aws-sdk (2.8.5)
|
56
|
-
aws-sdk-resources (= 2.8.5)
|
57
|
-
aws-sdk-core (2.8.5)
|
58
|
-
aws-sigv4 (~> 1.0)
|
59
|
-
jmespath (~> 1.0)
|
60
|
-
aws-sdk-resources (2.8.5)
|
61
|
-
aws-sdk-core (= 2.8.5)
|
62
|
-
aws-sigv4 (1.0.0)
|
63
|
-
builder (3.2.3)
|
64
|
-
coderay (1.1.1)
|
65
|
-
concurrent-ruby (1.0.5)
|
66
|
-
diff-lcs (1.3)
|
67
|
-
erubis (2.7.0)
|
68
|
-
ffi (1.9.18)
|
69
|
-
formatador (0.2.5)
|
70
|
-
globalid (0.3.7)
|
71
|
-
activesupport (>= 4.1.0)
|
72
|
-
guard (2.14.1)
|
73
|
-
formatador (>= 0.2.4)
|
74
|
-
listen (>= 2.7, < 4.0)
|
75
|
-
lumberjack (~> 1.0)
|
76
|
-
nenv (~> 0.1)
|
77
|
-
notiffany (~> 0.0)
|
78
|
-
pry (>= 0.9.12)
|
79
|
-
shellany (~> 0.0)
|
80
|
-
thor (>= 0.18.1)
|
81
|
-
guard-compat (1.2.1)
|
82
|
-
guard-rspec (4.7.3)
|
83
|
-
guard (~> 2.1)
|
84
|
-
guard-compat (~> 1.1)
|
85
|
-
rspec (>= 2.99.0, < 4.0)
|
86
|
-
i18n (0.8.1)
|
87
|
-
jmespath (1.3.1)
|
88
|
-
listen (3.1.5)
|
89
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
90
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
91
|
-
ruby_dep (~> 1.2)
|
92
|
-
loofah (2.0.3)
|
93
|
-
nokogiri (>= 1.5.9)
|
94
|
-
lumberjack (1.0.11)
|
95
|
-
mail (2.6.4)
|
96
|
-
mime-types (>= 1.16, < 4)
|
97
|
-
method_source (0.8.2)
|
98
|
-
mime-types (3.1)
|
99
|
-
mime-types-data (~> 3.2015)
|
100
|
-
mime-types-data (3.2016.0521)
|
101
|
-
mini_portile2 (2.1.0)
|
102
|
-
minitest (5.10.1)
|
103
|
-
nenv (0.3.0)
|
104
|
-
nio4r (2.0.0)
|
105
|
-
nokogiri (1.7.0.1)
|
106
|
-
mini_portile2 (~> 2.1.0)
|
107
|
-
notiffany (0.1.1)
|
108
|
-
nenv (~> 0.1)
|
109
|
-
shellany (~> 0.0)
|
110
|
-
pry (0.10.4)
|
111
|
-
coderay (~> 1.1.0)
|
112
|
-
method_source (~> 0.8.1)
|
113
|
-
slop (~> 3.4)
|
114
|
-
rack (2.0.1)
|
115
|
-
rack-test (0.6.3)
|
116
|
-
rack (>= 1.0)
|
117
|
-
rails (5.0.2)
|
118
|
-
actioncable (= 5.0.2)
|
119
|
-
actionmailer (= 5.0.2)
|
120
|
-
actionpack (= 5.0.2)
|
121
|
-
actionview (= 5.0.2)
|
122
|
-
activejob (= 5.0.2)
|
123
|
-
activemodel (= 5.0.2)
|
124
|
-
activerecord (= 5.0.2)
|
125
|
-
activesupport (= 5.0.2)
|
126
|
-
bundler (>= 1.3.0, < 2.0)
|
127
|
-
railties (= 5.0.2)
|
128
|
-
sprockets-rails (>= 2.0.0)
|
129
|
-
rails-dom-testing (2.0.2)
|
130
|
-
activesupport (>= 4.2.0, < 6.0)
|
131
|
-
nokogiri (~> 1.6)
|
132
|
-
rails-html-sanitizer (1.0.3)
|
133
|
-
loofah (~> 2.0)
|
134
|
-
railties (5.0.2)
|
135
|
-
actionpack (= 5.0.2)
|
136
|
-
activesupport (= 5.0.2)
|
137
|
-
method_source
|
138
|
-
rake (>= 0.8.7)
|
139
|
-
thor (>= 0.18.1, < 2.0)
|
140
|
-
rake (10.5.0)
|
141
|
-
rb-fsevent (0.9.8)
|
142
|
-
rb-inotify (0.9.8)
|
143
|
-
ffi (>= 0.5.0)
|
144
|
-
rspec (3.5.0)
|
145
|
-
rspec-core (~> 3.5.0)
|
146
|
-
rspec-expectations (~> 3.5.0)
|
147
|
-
rspec-mocks (~> 3.5.0)
|
148
|
-
rspec-core (3.5.4)
|
149
|
-
rspec-support (~> 3.5.0)
|
150
|
-
rspec-expectations (3.5.0)
|
151
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
152
|
-
rspec-support (~> 3.5.0)
|
153
|
-
rspec-mocks (3.5.0)
|
154
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
155
|
-
rspec-support (~> 3.5.0)
|
156
|
-
rspec-support (3.5.0)
|
157
|
-
ruby_dep (1.5.0)
|
158
|
-
shellany (0.0.1)
|
159
|
-
shoryuken (3.0.0)
|
160
|
-
aws-sdk-core (~> 2)
|
161
|
-
concurrent-ruby
|
162
|
-
thor
|
163
|
-
slop (3.6.0)
|
164
|
-
sprockets (3.7.1)
|
165
|
-
concurrent-ruby (~> 1.0)
|
166
|
-
rack (> 1, < 3)
|
167
|
-
sprockets-rails (3.2.0)
|
168
|
-
actionpack (>= 4.0)
|
169
|
-
activesupport (>= 4.0)
|
170
|
-
sprockets (>= 3.0.0)
|
171
|
-
thor (0.19.4)
|
172
|
-
thread_safe (0.3.6)
|
173
|
-
tzinfo (1.2.2)
|
174
|
-
thread_safe (~> 0.1)
|
175
|
-
websocket-driver (0.6.5)
|
176
|
-
websocket-extensions (>= 0.1.0)
|
177
|
-
websocket-extensions (0.1.2)
|
178
|
-
|
179
|
-
PLATFORMS
|
180
|
-
ruby
|
181
|
-
|
182
|
-
DEPENDENCIES
|
183
|
-
appraisal
|
184
|
-
awesome_print
|
185
|
-
bundler (~> 1.12)
|
186
|
-
cloudwatch_scheduler!
|
187
|
-
guard
|
188
|
-
guard-rspec
|
189
|
-
rails (~> 5.0.0)
|
190
|
-
rake (~> 10.0)
|
191
|
-
rspec (~> 3.0)
|
192
|
-
|
193
|
-
BUNDLED WITH
|
194
|
-
1.14.3
|