Skip to content

Commit 629e067

Browse files
committed
Backwards compatibility changes - named splat parameter
1 parent 9e29a21 commit 629e067

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/ice_cube/rule.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def self.from_ical(ical)
3636
end
3737

3838
# Yaml implementation
39-
def to_yaml(*)
40-
YAML.dump(to_hash, *)
39+
def to_yaml(*args)
40+
YAML.dump(to_hash, *args)
4141
end
4242

4343
# From yaml

0 commit comments

Comments
 (0)