fixjour 0.4.0 → 0.4.1
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/lib/fixjour/builders.rb +2 -1
- metadata +1 -1
data/lib/fixjour/builders.rb
CHANGED
@@ -49,8 +49,9 @@ module Fixjour
|
|
49
49
|
module_eval(&block)
|
50
50
|
rescue NameError => e
|
51
51
|
if e.name && evaluator.respond_to?(e.name)
|
52
|
-
raise NonBlockBuilderReference.new
|
52
|
+
raise NonBlockBuilderReference.new(
|
53
53
|
"You must use a builder block in order to reference other Fixjour creation methods."
|
54
|
+
)
|
54
55
|
else
|
55
56
|
raise e
|
56
57
|
end
|