escper 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/debian/changelog +28 -0
- data/debian/compat +1 -0
- data/debian/control +19 -0
- data/debian/copyright +25 -0
- data/debian/ruby-escper.docs +1 -0
- data/debian/rules +15 -0
- data/debian/source/format +1 -0
- data/lib/escper/printer.rb +1 -1
- data/lib/escper/version.rb +1 -1
- metadata +9 -2
data/.gitignore
CHANGED
data/debian/changelog
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
ruby-escper (1.1.7-1) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* fix
|
|
4
|
+
* new version
|
|
5
|
+
* unfix
|
|
6
|
+
* fix, new version
|
|
7
|
+
|
|
8
|
+
-- Michael Franzl <office@michaelfranzl.com> Tue, 12 Mar 2013 14:18:40 +0100
|
|
9
|
+
|
|
10
|
+
ruby-escper (1.1.6-2) unstable; urgency=low
|
|
11
|
+
|
|
12
|
+
* dependencies
|
|
13
|
+
|
|
14
|
+
-- Michael Franzl <office@michaelfranzl.com> Thu, 07 Mar 2013 13:51:50 +0100
|
|
15
|
+
|
|
16
|
+
ruby-escper (1.1.6-1) unstable; urgency=low
|
|
17
|
+
|
|
18
|
+
* changed to Expat license
|
|
19
|
+
* new version 1.1.6
|
|
20
|
+
* new version 1.1.6
|
|
21
|
+
|
|
22
|
+
-- Michael Franzl <office@michaelfranzl.com> Thu, 07 Mar 2013 10:38:07 +0100
|
|
23
|
+
|
|
24
|
+
ruby-escper (1.1.5-1) UNRELEASED; urgency=low
|
|
25
|
+
|
|
26
|
+
* Initial release (Closes: #702246)
|
|
27
|
+
|
|
28
|
+
-- Michael Franzl <office@michaelfranzl.com> Sun, 03 Mar 2013 20:25:20 +0100
|
data/debian/compat
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7
|
data/debian/control
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Source: ruby-escper
|
|
2
|
+
Section: ruby
|
|
3
|
+
Priority: optional
|
|
4
|
+
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
|
|
5
|
+
Uploaders: Michael Franzl <office@michaelfranzl.com>
|
|
6
|
+
DM-Upload-Allowed: yes
|
|
7
|
+
Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.13~)
|
|
8
|
+
Standards-Version: 3.9.2
|
|
9
|
+
Vcs-Git: https://github.com/michaelfranzl/Escper
|
|
10
|
+
Vcs-Browser: https://github.com/michaelfranzl/Escper
|
|
11
|
+
Homepage: https://github.com/michaelfranzl/Escper
|
|
12
|
+
XS-Ruby-Versions: all
|
|
13
|
+
|
|
14
|
+
Package: ruby-escper
|
|
15
|
+
Architecture: all
|
|
16
|
+
XB-Ruby-Versions: ${ruby:Versions}
|
|
17
|
+
Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-serialport, ruby-rmagick
|
|
18
|
+
Description: Easy printing to serial thermal ESCPOS printers
|
|
19
|
+
|
data/debian/copyright
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Format: http://dep.debian.net/deps/dep5
|
|
2
|
+
Upstream-Name: escper
|
|
3
|
+
Source: http://github.com/michaelfranzl/Escper
|
|
4
|
+
|
|
5
|
+
Files: *
|
|
6
|
+
Copyright: 2013 Michael Franzl <office@michaelfranzl.com>
|
|
7
|
+
License: Expat
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
9
|
+
a copy of this software and associated documentation files (the
|
|
10
|
+
"Software"), to deal in the Software without restriction, including
|
|
11
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
12
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
14
|
+
the following conditions:
|
|
15
|
+
.
|
|
16
|
+
The above copyright notice and this permission notice shall be included
|
|
17
|
+
in all copies or substantial portions of the Software.
|
|
18
|
+
.
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
20
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
21
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
22
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
23
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
24
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
25
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
README.md
|
data/debian/rules
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/make -f
|
|
2
|
+
#export DH_VERBOSE=1
|
|
3
|
+
#
|
|
4
|
+
# Uncomment to ignore all test failures (but the tests will run anyway)
|
|
5
|
+
#export DH_RUBY_IGNORE_TESTS=all
|
|
6
|
+
#
|
|
7
|
+
# Uncomment to ignore some test failures (but the tests will run anyway).
|
|
8
|
+
# Valid values:
|
|
9
|
+
#export DH_RUBY_IGNORE_TESTS=ruby1.8 ruby1.9.1 require-rubygems
|
|
10
|
+
#
|
|
11
|
+
# If you need to specify the .gemspec (eg there is more than one)
|
|
12
|
+
#export DH_RUBY_GEMSPEC=gem.gemspec
|
|
13
|
+
|
|
14
|
+
%:
|
|
15
|
+
dh $@ --buildsystem=ruby --with ruby
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.0 (quilt)
|
data/lib/escper/printer.rb
CHANGED
|
@@ -15,7 +15,7 @@ module Escper
|
|
|
15
15
|
end
|
|
16
16
|
if vendor_printers.kind_of?(Array) or (defined?(ActiveRecord) == 'constant' and vendor_printers.kind_of?(ActiveRecord::Relation))
|
|
17
17
|
@vendor_printers = vendor_printers
|
|
18
|
-
elsif vendor_printers.kind_of? VendorPrinter
|
|
18
|
+
elsif vendor_printers.kind_of?(VendorPrinter) or vendor_printers.kind_of?(::VendorPrinter)
|
|
19
19
|
@vendor_printers = [vendor_printers]
|
|
20
20
|
else
|
|
21
21
|
# If no available VendorPrinters are initialized, create a set of temporary VendorPrinters with usual device paths.
|
data/lib/escper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: escper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-03-
|
|
12
|
+
date: 2013-03-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rmagick
|
|
@@ -57,6 +57,13 @@ files:
|
|
|
57
57
|
- Gemfile
|
|
58
58
|
- README.md
|
|
59
59
|
- Rakefile
|
|
60
|
+
- debian/changelog
|
|
61
|
+
- debian/compat
|
|
62
|
+
- debian/control
|
|
63
|
+
- debian/copyright
|
|
64
|
+
- debian/ruby-escper.docs
|
|
65
|
+
- debian/rules
|
|
66
|
+
- debian/source/format
|
|
60
67
|
- escper.gemspec
|
|
61
68
|
- lib/escper.rb
|
|
62
69
|
- lib/escper/asciifier.rb
|