forked from jamesrwhite/minicron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminicron.gemspec
59 lines (54 loc) Β· 2.86 KB
/
minicron.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
VERSION = "0.9.7.#{Time.now.to_i}"
Gem::Specification.new do |spec|
spec.name = 'minicron'
spec.version = VERSION
spec.authors = ['James White']
spec.email = ['[email protected]']
spec.summary = 'A system to make it easier to manage and monitor cron jobs'
spec.homepage = 'https://github.com/jamesrwhite/minicron'
spec.license = 'GPL-3.0'
spec.post_install_message = 'Thanks for installing minicron!'
spec.require_paths = ['lib']
spec.files = Dir['Rakefile', 'README.md', 'LICENSE', '{bin,lib,db,spec}/**/*']
spec.test_files = Dir['{spec}/**/*']
spec.executables << 'minicron'
spec.add_runtime_dependency 'rainbow', '~> 2.0'
spec.add_runtime_dependency 'commander', '~> 4.3'
spec.add_runtime_dependency 'thin', '~> 1.6', '>= 1.6.1'
spec.add_runtime_dependency 'toml-rb', '~> 0.3', '>= 0.3.8'
spec.add_runtime_dependency 'sinatra', '~> 1.4', '>= 1.4.4'
spec.add_runtime_dependency 'erubis', '~> 2.7'
spec.add_runtime_dependency 'activerecord', '~> 4.0', '>= 4.0.3'
spec.add_runtime_dependency 'sinatra-assetpack', '0.3.3' # TODO: replace this with something else
spec.add_runtime_dependency 'sass', '~> 3.2', '>= 3.2.14'
spec.add_runtime_dependency 'sshkey', '~> 1.6', '>= 1.6.1'
spec.add_runtime_dependency 'net-ssh', '~> 2.8'
spec.add_runtime_dependency 'parse-cron', '~> 0.1', '>= 0.1.4'
spec.add_runtime_dependency 'mail', '~> 2.5', '>= 2.5.4'
spec.add_runtime_dependency 'twilio-ruby', '~> 3.1', '>= 3.11.5'
spec.add_runtime_dependency 'pagerduty', '~> 1.3', '>= 1.3.4'
spec.add_runtime_dependency 'insidious', '~> 0.3'
spec.add_runtime_dependency 'escape', '0.0.4'
spec.add_runtime_dependency 'sqlite3', '1.3.9'
spec.add_runtime_dependency 'aws-sdk', '~> 2.1'
spec.add_runtime_dependency 'net-http-persistent', '~> 2.9'
spec.add_runtime_dependency 'sinatra-contrib', '~> 1.4'
spec.add_runtime_dependency 'ansi-to-html', '0.0.3'
spec.add_runtime_dependency 'mysql2','0.3.18'
spec.add_runtime_dependency 'pg', '0.18.2'
spec.add_runtime_dependency 'activesupport', '~> 4.0'
spec.add_runtime_dependency 'sinatra-flash', '0.3.0'
spec.add_runtime_dependency 'cron2english', '~> 0.1'
spec.add_runtime_dependency 'slack-notifier', '~> 1.5.1'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake', '~> 10.1'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'simplecov', '~> 0.8'
spec.add_development_dependency 'better_errors', '~> 2.1'
spec.add_development_dependency 'binding_of_caller', '0.7.3.pre1'
spec.add_development_dependency 'pry', '~> 0.10.1'
spec.add_development_dependency 'pry-byebug', '~> 3.1'
end