lib/brainz/brainz.rb in brainz-0.1.2 vs lib/brainz/brainz.rb in brainz-0.1.3
- old
+ new
@@ -137,11 +137,7 @@
end
end
def self.method_missing(meth = nil, *args, &block)
- if meth == :that
- Brainz::Brainz.current.send(meth, *args)
- else
- raise NoMethodError
- end
-end
\ No newline at end of file
+ meth == :that ? Brainz::Brainz.current.send(meth, *args) : super
+end