diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:20:38 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:20:38 +0000 |
commit | 16b766cff0984494c7b81c1efc08e6386ae819f8 (patch) | |
tree | 4d847286a6c1951783f6d02aeb1801f2f8745e5b /lib/custodian/queue.rb | |
parent | e716a49dabe2c086a97e2d8b3cffe5cf369ad026 (diff) |
Use def with parentheses when there are parameters.
Diffstat (limited to 'lib/custodian/queue.rb')
-rw-r--r-- | lib/custodian/queue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/queue.rb b/lib/custodian/queue.rb index 4517c61..e9ba830 100644 --- a/lib/custodian/queue.rb +++ b/lib/custodian/queue.rb @@ -23,7 +23,7 @@ module Custodian # # Class-Factory # - def self.create type + def self.create(type) case type when 'redis' RedisQueueType.new |