forked from javan/whenever
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ begin | |
Jeweler::Tasks.new do |gemspec| | ||
gemspec.name = "whenever" | ||
gemspec.version = Whenever::VERSION | ||
gemspec.summary = "Clean ruby syntax for writing and deploying cron jobs." | ||
gemspec.description = "http://www.allyrics.net/Kid-Cudi/lyrics/Whenever/" | ||
gemspec.summary = "Write your cron jobs in ruby." | ||
gemspec.description = "Clean ruby syntax for writing and deploying cron jobs." | ||
gemspec.email = "[email protected]" | ||
gemspec.homepage = "http://github.com/javan/whenever" | ||
gemspec.authors = ["Javan Makhmali"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Whenever | ||
VERSION = '0.6.1' | ||
VERSION = '0.6.2' | ||
end unless defined?(Whenever::VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,33 +5,32 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = %q{whenever} | ||
s.version = "0.6.1" | ||
s.version = "0.6.2" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Javan Makhmali"] | ||
s.date = %q{2010-10-20} | ||
s.description = %q{http://www.allyrics.net/Kid-Cudi/lyrics/Whenever/} | ||
s.date = %q{2010-10-26} | ||
s.description = %q{Clean ruby syntax for writing and deploying cron jobs.} | ||
s.email = %q{[email protected]} | ||
s.executables = ["whenever", "wheneverize"] | ||
s.extra_rdoc_files = [ | ||
"README.rdoc" | ||
"README.md" | ||
] | ||
s.files = [ | ||
".gitignore", | ||
"CHANGELOG.rdoc", | ||
"README.rdoc", | ||
"CHANGELOG.md", | ||
"README.md", | ||
"Rakefile", | ||
"bin/whenever", | ||
"bin/wheneverize", | ||
"lib/whenever.rb", | ||
"lib/whenever/base.rb", | ||
"lib/whenever/capistrano.rb", | ||
"lib/whenever/command_line.rb", | ||
"lib/whenever/cron.rb", | ||
"lib/whenever/job.rb", | ||
"lib/whenever/job_list.rb", | ||
"lib/whenever/job_types/default.rb", | ||
"lib/whenever/output_redirection.rb", | ||
"lib/whenever/setup.rb", | ||
"lib/whenever/version.rb", | ||
"test/functional/command_line_test.rb", | ||
"test/functional/output_at_test.rb", | ||
|
@@ -48,7 +47,7 @@ Gem::Specification.new do |s| | |
s.rdoc_options = ["--charset=UTF-8"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.7} | ||
s.summary = %q{Clean ruby syntax for writing and deploying cron jobs.} | ||
s.summary = %q{Write your cron jobs in ruby.} | ||
s.test_files = [ | ||
"test/functional/command_line_test.rb", | ||
"test/functional/output_at_test.rb", | ||
|