zxing/jruby/lib/zxing/decodable.rb
ecin@copypastel.com ef3d37cc07 Added JRuby wrapper for fun scripting times.
git-svn-id: https://zxing.googlecode.com/svn/trunk@1241 59b500cc-1b3d-0410-9834-0bbf25fbcc57
2010-03-05 18:12:55 +00:00

12 lines
173 B
Ruby

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