Added JRuby wrapper for fun scripting times.
[zxing.git] / jruby / lib / zxing / decodable.rb
1 require File.expand_path( File.dirname(__FILE__) + '/../zxing')
2
3 module Decodable
4   def decode
5     ZXing.decode(self)
6   end
7
8   def decode!
9     ZXing.decode!(self)
10   end
11 end