-
Notifications
You must be signed in to change notification settings - Fork 6
/
sunat.gemspec
32 lines (28 loc) · 1.25 KB
/
sunat.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sunat/version'
Gem::Specification.new do |spec|
spec.name = "sunat"
spec.version = SUNAT::VERSION
spec.authors = ["Sam Lown"]
spec.email = ["me@samlown.com"]
spec.description = %q{Generate declarations suitable for presenting to SUNAT in Peru.}
spec.summary = %q{Provides a series of models that can be both serialized to JSON for later usage, and generate XML documents that can be presented to SUNAT.}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "activemodel", "~> 3.0"
spec.add_dependency "nokogiri"
spec.add_dependency "rubyzip"
spec.add_dependency "savon"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "annotations"
spec.add_development_dependency "pry"
spec.add_development_dependency "zeus", "0.13.3"
end