riot 0.10.7 → 0.10.8
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/riot.rb +2 -2
- data/riot.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.10.
|
1
|
+
0.10.8
|
data/lib/riot.rb
CHANGED
@@ -40,7 +40,7 @@ module Riot
|
|
40
40
|
end # Riot
|
41
41
|
|
42
42
|
class Object
|
43
|
-
def context(description, &definition)
|
44
|
-
Riot.context(description, &definition)
|
43
|
+
def context(description, context_class = Riot::Context, &definition)
|
44
|
+
Riot.context(description, context_class, &definition)
|
45
45
|
end
|
46
46
|
end
|
data/riot.gemspec
CHANGED