forked from mikeys/resque-scheduler
-
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.
Use all-caps notation for the version constant.
- Loading branch information
Sebastian Kippe
committed
Dec 22, 2011
1 parent
553e7f9
commit 2d7c63c
Showing
3 changed files
with
3 additions
and
3 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module ResqueScheduler | ||
Version = '2.0.0.f' | ||
VERSION = '2.0.0.f' | ||
end |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ require File.expand_path("../lib/resque_scheduler/version", __FILE__) | |
|
||
Gem::Specification.new do |s| | ||
s.name = "resque-scheduler" | ||
s.version = ResqueScheduler::Version | ||
s.version = ResqueScheduler::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Ben VandenBos'] | ||
s.email = ['[email protected]'] | ||
|