-
Notifications
You must be signed in to change notification settings - Fork 0
/
esc-pos.gemspec
35 lines (31 loc) · 1004 Bytes
/
esc-pos.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'esc-pos/version'
Gem::Specification.new do |spec|
spec.name = 'esc-pos'
spec.version = ESC_POS::VERSION
spec.authors = ['Adrian Gomez']
spec.date = '2014-06-05'
spec.summary = 'Helpers to aid in the generation of ESC/POS templates.'
spec.description = <<-DESCRIPTION
Provides helpers to generate ESC/POS templates without having to write the hex commands
manually.
DESCRIPTION
spec.email = '[email protected]'
spec.extra_rdoc_files = %w[LICENSE README.md]
spec.files = %w[
Gemfile
LICENSE
README.md
esc-pos.gemspec
lib/esc-pos.rb
lib/esc-pos/settings.rb
lib/esc-pos/version.rb
lib/esc-pos/specifications/base.rb
lib/esc-pos/specifications/epson.rb
lib/esc-pos/specifications/epson/tm_u220.rb
]
spec.homepage = 'https://github.com/adrian-gomez/esc-pos'
spec.licenses = %w[MIT]
spec.require_paths = %w[lib]
end