Skip to content

Commit

Permalink
Use all-caps notation for the version constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Kippe committed Dec 22, 2011
1 parent 553e7f9 commit 2d7c63c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/resque/scheduler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def log(msg)

def procline(string)
log! string
$0 = "resque-scheduler-#{ResqueScheduler::Version}: #{string}"
$0 = "resque-scheduler-#{ResqueScheduler::VERSION}: #{string}"
end

end
Expand Down
2 changes: 1 addition & 1 deletion lib/resque_scheduler/version.rb
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
2 changes: 1 addition & 1 deletion resque-scheduler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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]']
Expand Down

0 comments on commit 2d7c63c

Please sign in to comment.