JosephPecoraro-whenever 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,11 @@
1
+ == 0.3.2
2
+
3
+ * Cleaned output
4
+
5
+ == 0.3.1
6
+
7
+ * Added :start and :desc ability
8
+
1
9
  == 0.3.0 / June 2nd, 2009
2
10
 
3
11
  * Added ability to set variables on the fly from the command line (ex: whenever --set environment=staging). [Javan Makhmali]
data/README.rdoc CHANGED
@@ -9,7 +9,10 @@ Ryan Bates created a great Railscast about Whenever: http://railscasts.com/episo
9
9
  Regular (non-Rails) install:
10
10
 
11
11
  $ gem sources -a http://gems.github.com #you only need to run this once
12
- $ sudo gem install javan-whenever
12
+ $ sudo gem install JosephPecoraro-whenever
13
+
14
+
15
+ Note, this was forked from the `javan-whenever` gem.
13
16
 
14
17
  In a Rails (2.1 or greater) application:
15
18
 
data/lib/command_line.rb CHANGED
@@ -40,7 +40,7 @@ module Whenever
40
40
  end
41
41
 
42
42
  def whenever_cron
43
- @whenever_cron ||= [comment_open, "\n\n", Whenever.cron(@options), comment_open].join
43
+ @whenever_cron ||= [comment_open, "\n\n", Whenever.cron(@options), comment_close].join
44
44
  end
45
45
 
46
46
  def read_crontab
data/lib/version.rb CHANGED
@@ -2,7 +2,7 @@ module Whenever
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/whenever.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{whenever}
5
- s.version = "0.3.1"
5
+ s.version = "0.3.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Javan Makhmali", "Joseph Pecoraro"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: JosephPecoraro-whenever
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javan Makhmali