mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@1241 59b500cc-1b3d-0410-9834-0bbf25fbcc57
12 lines
173 B
Ruby
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
|