Skip to content

Commit

Permalink
I really love passing *args instead of args
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttam committed Feb 26, 2010
1 parent b74746b commit 75b93e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/resque/throttled_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def self.identifier(*args)
end

def self.key(*args)
[self.to_s, identifier(*args)].compact.join(":")
[self.to_s, identifier(args)].compact.join(":")
end

def self.can_run_every
Expand Down
2 changes: 1 addition & 1 deletion resque-throttle.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{resque-throttle}
s.version = "0.2.11"
s.version = "0.2.12"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Scott J. Tamosunas"]
Expand Down

0 comments on commit 75b93e1

Please sign in to comment.