-
Notifications
You must be signed in to change notification settings - Fork 18
/
has_barcode.gemspec
26 lines (22 loc) · 1002 Bytes
/
has_barcode.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/has_barcode/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Dan Pickett"]
gem.email = ["[email protected]"]
gem.description = %q{Nice class method wrapper for Barby}
gem.summary = %q{Nice class method wrapper for Barby}
gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "has_barcode"
gem.require_paths = ["lib"]
gem.version = HasBarcode::VERSION
gem.add_dependency("activesupport", [">= 3"])
gem.add_dependency("i18n")
gem.add_dependency("barby", [">= 0"])
gem.add_dependency("rake")
gem.add_development_dependency("rspec", [">= 0"])
gem.add_development_dependency("chunky_png", [">= 0"])
gem.add_development_dependency("yard", [">= 0"])
end