updated docs, bumped version

This commit is contained in:
Javan Makhmali 2009-11-30 14:45:03 -05:00
parent 6ba4a237ed
commit 22d34a538d
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
== 0.4.1 / November 30th, 2009
* exit(0) instead of just exit to make JRuby happy. [Elan Meng]
* Fixed activesupport deprecation warning by requiring active_support. #37 [Andrew Nesbitt]
== 0.4.0 / October 20th, 2009 == 0.4.0 / October 20th, 2009
* New output option replaces the old cron_log option for output redirection and is much more flexible. #31 [Peer Allan] * New output option replaces the old cron_log option for output redirection and is much more flexible. #31 [Peer Allan]

View File

@ -7,15 +7,15 @@ rescue LoadError
nil nil
end end
# If Rails' rakefile was loaded than so was activesupport, but # If Rails' rakefile was loaded than so was active_support, but
# if this is being used in a non-rails enviroment we need to require it. # if this is being used in a non-rails enviroment we need to require it.
# It was previously defined as a dependency of this gem, but that became # It was previously defined as a dependency of this gem, but that became
# problematic. See: http://github.com/javan/whenever/issues#issue/1 # problematic. See: http://github.com/javan/whenever/issues#issue/1
begin begin
require 'active_support' require 'active_support'
rescue LoadError rescue LoadError
warn 'To user Whenever you need the activesupport gem:' warn 'To user Whenever you need the active_support gem:'
warn '$ sudo gem install activesupport' warn '$ sudo gem install active_support'
exit(1) exit(1)
end end

View File

@ -1,3 +1,3 @@
module Whenever module Whenever
VERSION = '0.4.0' VERSION = '0.4.1'
end unless defined?(Whenever::VERSION) end unless defined?(Whenever::VERSION)

View File

@ -5,11 +5,11 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{whenever} s.name = %q{whenever}
s.version = "0.4.0" s.version = "0.4.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Javan Makhmali"] s.authors = ["Javan Makhmali"]
s.date = %q{2009-10-20} s.date = %q{2009-11-30}
s.description = %q{Clean ruby syntax for defining and deploying messy cron jobs.} s.description = %q{Clean ruby syntax for defining and deploying messy cron jobs.}
s.email = %q{javan@javan.us} s.email = %q{javan@javan.us}
s.executables = ["whenever", "wheneverize"] s.executables = ["whenever", "wheneverize"]