forked from zencoder/recurrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recurrent.gemspec
28 lines (26 loc) · 1.18 KB
/
recurrent.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'recurrent/version'
Gem::Specification.new do |s|
s.name = "recurrent"
s.version = Recurrent::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Adam Kittelson"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/zencoder/recurrent"
s.summary = "Task scheduler that doesn't need to bootstrap your Rails environment every time it executes a task the way running a rake task via cron does."
s.description = "Task scheduler that doesn't need to bootstrap your Rails environment every time it executes a task the way running a rake task via cron does."
s.add_dependency "ice_cube", "0.6.8"
s.add_dependency "activesupport"
s.add_dependency "i18n"
s.add_dependency "trollop"
s.add_development_dependency "rspec"
s.add_development_dependency "autotest"
s.add_development_dependency "timecop"
s.add_development_dependency "pry"
s.add_development_dependency "pry-doc"
s.executables << "recurrent"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = ["lib"]
end