rqrencoder 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,9 @@
4
4
 
5
5
  ## Install
6
6
 
7
- Install with Rubygems:
7
+ You'll need libqrencode installed on your machine.
8
+
9
+ Then, install with Rubygems:
8
10
 
9
11
  gem install rqrencoder
10
12
 
@@ -25,4 +27,4 @@ Create an encoder, and encode away! The QRCode result contains a grid of bits i
25
27
 
26
28
  ## Author
27
29
 
28
- Ruby wrapper by Matt Robinson, majority of C++ Encoding engine is from rqr project
30
+ Matt Robinson
@@ -32,7 +32,6 @@ module RQREncoder
32
32
 
33
33
  def encode(data)
34
34
  c_code_result = RQREncoder.QRcode_encodeString(data, @options[:version], @options[:level], @options[:mode], @options[:case_sensitive] ? 1 : 0)
35
- puts c_code_result.inspect
36
35
  QRCode.new(data, @options[:level], c_code_result.version, c_code_result.width, c_code_result.modules)
37
36
  end
38
37
 
@@ -1,3 +1,3 @@
1
1
  module RQREncoder
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Matt Robinson