forked from javan/whenever
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (30 loc) · 1.26 KB
/
Rakefile
File metadata and controls
32 lines (30 loc) · 1.26 KB
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
# require 'rubygems'
# require 'rake'
# require 'echoe'
#
# require File.expand_path(File.dirname(__FILE__) + "/lib/version")
#
# Echoe.new('whenever', Whenever::VERSION::STRING) do |p|
# p.description = "Provides clean ruby syntax for defining messy cron jobs and running them Whenever."
# p.url = "https://github.com/javan/whenever"
# p.author = "Javan Makhmali"
# p.email = "javan@javan.us"
# p.dependencies = ["chronic >=0.2.3"]
# end
require 'rubygems'
require 'rake/gempackagetask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "whenever"
gemspec.summary = "Provides clean ruby syntax for defining messy cron jobs and running them Whenever."
gemspec.description = "Provides clean ruby syntax for defining messy cron jobs and running them Whenever."
gemspec.email = "javan@javan.us"
gemspec.homepage = "https://github.com/scottmotte/whenever"
gemspec.description = "Provides clean ruby syntax for defining messy cron jobs and running them Whenever."
gemspec.authors = ["Javan Makhmali", "Scott Motte"]
gemspec.add_dependency('chronic')
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end