svn_hooks 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +2 -1
- data/lib/svn_dsl.rb +2 -2
- metadata +1 -1
data/README
CHANGED
data/lib/svn_dsl.rb
CHANGED
|
@@ -15,13 +15,13 @@ module SVN
|
|
|
15
15
|
|
|
16
16
|
alias for_paths for_path
|
|
17
17
|
|
|
18
|
-
def
|
|
18
|
+
def for_event(*searches, &proc)
|
|
19
19
|
if(searches.include? SVN_EVENT)
|
|
20
20
|
yield(EVENT_STATS) if block_given?
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
alias
|
|
24
|
+
alias for_events for_event
|
|
25
25
|
|
|
26
26
|
end
|
|
27
27
|
end
|