rqr 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,8 @@
1
+ == 0.1.1 2008-05-26
2
+
3
+ * Update API.
4
+
1
5
  == 0.1.0 2008-05-23
2
6
 
3
7
  * 1 major enhancement:
4
- * Initial release
8
+ * Initial release
@@ -1,6 +1,6 @@
1
1
  Note: Original QR_Encode.h and QR_Encode.cpp are free license. (by Psytec Inc)
2
2
 
3
- Copyright (c) 2008 Ryota Maruko, Keiko Soejima
3
+ Copyright (c) 2008 Ryota Maruko, Keiko Soezima
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/README.txt CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- A ruby library to create qrcode. Output: PS, JPEG, PNG, EPS, TIFF.
7
+ A ruby library to create QR code image. Output: PS, JPEG, PNG, EPS, TIFF.
8
8
 
9
9
  == SYNOPSIS:
10
10
 
@@ -55,7 +55,7 @@ If using OSX, Use Fink(http://www.finkproject.org) Universal Binary libs.
55
55
 
56
56
  (The MIT License)
57
57
 
58
- Copyright (c) 2008 Ryota Maruko, Keiko Soejima
58
+ Copyright (c) 2008 Ryota Maruko, Keiko Soezima
59
59
 
60
60
  Permission is hereby granted, free of charge, to any person obtaining
61
61
  a copy of this software and associated documentation files (the
@@ -4,13 +4,13 @@ module RQR
4
4
  # options
5
5
  # :level L:0, M:1(default), Q:2, H:3
6
6
  # :version S:0(default), M:1, L:2
7
- # :autoextent true(default)|false auto extent if over version size
7
+ # :auto_extend true(default)|false auto extent if over version size
8
8
  # :masking masking pattern 0-7, -1(default auto)
9
9
  # :length data length
10
10
  # :module_size module pixel size
11
11
  # :eps_preview true|false(default)
12
12
  def initialize(options = {})
13
- @options = { :level => 1, :version => 0, :autoextend => true,
13
+ @options = { :level => 1, :version => 0, :auto_extend => true,
14
14
  :masking => -1, :eps_preview => false, :module_size => 4 }
15
15
  @options.merge!(options)
16
16
  end
@@ -55,7 +55,7 @@ module RQR
55
55
 
56
56
  def init_encoder(data)
57
57
  @encoder = QR::CQR_Encode.new
58
- unless @encoder.EncodeData(@options[:level], @options[:version], @options[:autoextend], @options[:masking], data)
58
+ unless @encoder.EncodeData(@options[:level], @options[:version], @options[:auto_extend], @options[:masking], data)
59
59
  close; raise EncodeException.new("qrcode encord error!")
60
60
  end
61
61
  end
@@ -2,7 +2,7 @@ module Rqr #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rqr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryota Maruko