-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathzebra-zpl.gemspec
More file actions
27 lines (22 loc) · 1.1 KB
/
zebra-zpl.gemspec
File metadata and controls
27 lines (22 loc) · 1.1 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zebra/zpl/version'
Gem::Specification.new do |spec|
spec.name = 'zebra-zpl'
spec.version = Zebra::Zpl::VERSION
spec.authors = ['Barnabas Bulpett','Michael King','Logan Green']
spec.email = ['barnabasbulpett@gmail.com','m.king@fastmail.com','loganagreen95@gmail.com']
spec.description = %q{Print labels using ZPL2 and Ruby}
spec.summary = %q{Simple DSL to create labels and send them to a Zebra printer using Ruby, ZPL2 and CUPS}
spec.homepage = 'https://github.com/bbulpett/zebra-zpl'
spec.license = 'MIT'
spec.files = `git ls-files lib CHANGELOG.md LICENSE README.md`.split($/)
spec.require_paths = ['lib']
spec.add_dependency 'img2zpl', '~> 1.0.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_development_dependency 'guard', '~> 2.15'
spec.add_development_dependency 'guard-rspec', '~> 4.7'
end