lc-api 0.8.1 → 0.8.2
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/lc-api/api.rb +0 -1
- metadata +1 -1
data/lib/lc-api/api.rb
CHANGED
@@ -8,7 +8,6 @@ module LcApi
|
|
8
8
|
def method_missing method_name, *args
|
9
9
|
# method_name == "get"
|
10
10
|
# "args" === "message/1, {}"
|
11
|
-
puts "args is: #{args}"
|
12
11
|
# we are expecting "get" to be the method name here, but to be safe, we allow for
|
13
12
|
# missing methods other than "get", which we toss up to super
|
14
13
|
super(method_name, args) unless [:get].include? method_name
|