forked from fastruby/afip_bill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
afip_bill.gemspec
31 lines (26 loc) · 1.04 KB
/
afip_bill.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'afip_bill/version'
Gem::Specification.new do |s|
s.name = "afip_bill"
s.version = AfipBill::VERSION
s.authors = ["Luciano Becerra", "Mauro Otonelli"]
s.email = ["[email protected]"]
s.summary = "AFIP PDF bill"
s.description = "Allows you to generate an AFIP bill in PDF format"
s.homepage = "http://github.com/ombulabs/afip_bill"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|s|features)/})
end
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.13"
s.add_development_dependency "rake", "~> 10.0"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "pry-byebug", "~> 3.4.0"
s.add_dependency "barby", "~> 0.6.2"
s.add_dependency "pdfkit", "~> 0.8.2"
end