forked from luispimenta/EnotasNfe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
enotas_nfe.gemspec
31 lines (25 loc) · 1.07 KB
/
enotas_nfe.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "enotas_nfe/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "enotas_nfe"
s.version = EnotasNfe::VERSION
s.authors = ["Luis Fernando Pimenta"]
s.email = ["[email protected]"]
s.summary = "E-Notas nfe"
s.description = "E-Notas nfe gateway wrapper"
s.homepage = "https://github.com/luispimenta/EnotasNfe"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 2.2"
s.add_development_dependency "rake", "~> 12.3"
s.add_development_dependency "rspec", "~> 3.0"
s.add_runtime_dependency "virtus", '~> 1.0', '>= 1.0.5'
s.add_runtime_dependency "virtus_convert", "~> 0.1.0"
s.add_runtime_dependency "faraday", "~> 1.0"
s.add_runtime_dependency "faraday_middleware", "~> 1.0"
end