lib/hull.rb in hullio-0.3.2 vs lib/hull.rb in hullio-0.3.3
- old
+ new
@@ -14,10 +14,10 @@
def as(user_id)
Hull::Client.new({ user_id: user_id })
end
- # Delegate to hull::Client
+ # Delegate to Hull::Client
def method_missing(method, *args, &block)
return super unless new.respond_to?(method)
new.send(method, *args, &block)
end