forked from ludwigschubert/whenever-elasticbeanstalk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhenever-elasticbeanstalk.gemspec
24 lines (21 loc) · 1.08 KB
/
whenever-elasticbeanstalk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'whenever-elasticbeanstalk/version'
Gem::Specification.new do |gem|
gem.name = "whenever-elasticbeanstalk"
gem.version = Whenever::Elasticbeanstalk::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Chad McGimpsey","Joel Courtney","Taylor Boyko"]
gem.description = %q{Use Whenever on AWS Elastic Beanstalk}
gem.summary = %q{Allows you to run cron jobs easily on one or all AWS Elastic Beanstalk instances.}
gem.homepage = "https://github.com/dignoe/whenever-elasticbeanstalk"
gem.license = 'MIT'
gem.add_dependency('whenever','~> 0.9.4')
gem.add_dependency('aws-sdk-v1')
gem.files = `git ls-files`.split($/)
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end