scottmotte-whenever 0.3.8 → 0.3.9
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/VERSION +1 -1
- data/lib/whenever.rb +8 -7
- data/whenever.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.9
|
data/lib/whenever.rb
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
unless defined?(Whenever)
|
|
2
2
|
$:.unshift(File.dirname(__FILE__))
|
|
3
|
-
|
|
4
|
-
#
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
|
|
4
|
+
# remove so merb loads. Don't see the point of loading the Rails Rakefile anyhow
|
|
5
|
+
# # Hoping to load Rails' Rakefile
|
|
6
|
+
# begin
|
|
7
|
+
# load 'Rakefile'
|
|
8
|
+
# rescue LoadError => e
|
|
9
|
+
# nil
|
|
10
|
+
# end
|
|
10
11
|
end
|
|
11
12
|
|
|
12
13
|
require 'chronic'
|
data/whenever.gemspec
CHANGED