saddle 0.0.32 → 0.0.33
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/saddle/method_tree_builder.rb +1 -1
- data/lib/saddle/version.rb +1 -1
- metadata +1 -1
|
@@ -64,7 +64,7 @@ module Saddle
|
|
|
64
64
|
# Build the branch out with a base endpoint
|
|
65
65
|
branch_node = current_node._build_and_attach_node(
|
|
66
66
|
Saddle::TraversalEndpoint,
|
|
67
|
-
const_symbol.underscore
|
|
67
|
+
const_symbol.to_s.underscore
|
|
68
68
|
)
|
|
69
69
|
# Build out the branch's endpoints on the new branch node
|
|
70
70
|
self.build_node_children(const, branch_node, requester)
|
data/lib/saddle/version.rb
CHANGED