zxing/jruby/lib/zxing/decodable.rb

12 lines
173 B
Ruby
Raw Normal View History

require File.expand_path( File.dirname(__FILE__) + '/../zxing')
module Decodable
def decode
ZXing.decode(self)
end
def decode!
ZXing.decode!(self)
end
end