projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixes recursion bug in disambiguate_in().
[ohcount]
/
ruby
/
gestalt
/
trigger.rb
1
module Ohcount
2
module Gestalt
3
class Trigger
4
attr_reader :name, :count
5
6
def initialize(args = {})
7
@name = args[:name]
8
@count = args[:count] || 1
9
end
10
11
end
12
end
13
end