merb_whenever 0.4.2 → 0.5.0

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/Rakefile CHANGED
@@ -5,7 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gemspec|
7
7
  gemspec.name = "merb_whenever"
8
- gemspec.version = "0.4.2"
8
+ gemspec.version = "0.5.0"
9
9
  gemspec.summary = "Clean ruby syntax for defining and deploying messy cron jobs. Modified for use with merb."
10
10
  gemspec.description = "Clean ruby syntax for defining and deploying messy cron jobs. Modified for use with merb."
11
11
  gemspec.email = "javan@javan.us"
@@ -8,7 +8,7 @@ module Whenever
8
8
  @task = options[:task]
9
9
  @at = options[:at]
10
10
  @framework_env = options[:framework_env] || "MERB_ENV"
11
- @rake_path = options[:rake_path] || "bin/rake"
11
+ @rake_path = options[:rake_path] || "bundle exec rake"
12
12
  @output_redirection = options.has_key?(:output) ? options[:output] : :not_set
13
13
  @environment = options[:environment] || :production
14
14
  @path = options[:path] || Whenever.path
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{merb_whenever}
8
- s.version = "0.4.2"
8
+ s.version = "0.5.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Javan Makhmali", "Roberto Thais"]
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb_whenever
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 5
8
+ - 0
9
+ version: 0.5.0
5
10
  platform: ruby
6
11
  authors:
7
12
  - Javan Makhmali
@@ -15,14 +20,18 @@ default_executable:
15
20
  dependencies:
16
21
  - !ruby/object:Gem::Dependency
17
22
  name: chronic
18
- type: :runtime
19
- version_requirement:
20
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
21
25
  requirements:
22
26
  - - ">="
23
27
  - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ - 2
31
+ - 3
24
32
  version: 0.2.3
25
- version:
33
+ type: :runtime
34
+ version_requirements: *id001
26
35
  description: Clean ruby syntax for defining and deploying messy cron jobs. Modified for use with merb
27
36
  email: javan@javan.us
28
37
  executables:
@@ -72,18 +81,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
81
  requirements:
73
82
  - - ">="
74
83
  - !ruby/object:Gem::Version
84
+ segments:
85
+ - 0
75
86
  version: "0"
76
- version:
77
87
  required_rubygems_version: !ruby/object:Gem::Requirement
78
88
  requirements:
79
89
  - - ">="
80
90
  - !ruby/object:Gem::Version
91
+ segments:
92
+ - 0
81
93
  version: "0"
82
- version:
83
94
  requirements: []
84
95
 
85
96
  rubyforge_project:
86
- rubygems_version: 1.3.5
97
+ rubygems_version: 1.3.6
87
98
  signing_key:
88
99
  specification_version: 3
89
100
  summary: Clean ruby syntax for defining and deploying messy cron jobs.