-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathboletosimples.gemspec
26 lines (21 loc) · 1.01 KB
/
boletosimples.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'boletosimples/version'
Gem::Specification.new do |gem|
gem.name = 'boletosimples'
gem.version = BoletoSimples::VERSION
gem.authors = ['Kivanio Barbosa', 'Rafael Lima', 'Thiago Belem']
gem.description = 'Boleto Simples API wrapper.'
gem.summary = 'Boleto Simples API wrapper.'
gem.homepage = 'https://github.com/BoletoSimples/boletosimples-ruby'
gem.files = Dir['lib/**/*', 'LICENSE.txt', 'README.md', 'CHANGELOG.md']
gem.test_files = Dir['spec/**/*']
gem.require_paths = ['lib']
# Gems that must be intalled for boletosimples to work
gem.add_dependency 'faraday-http-cache', '~> 2.2.0'
gem.add_dependency 'faraday_middleware', '~> 1.0'
gem.add_dependency 'her', '~> 1.1'
gem.metadata['rubygems_mfa_required'] = 'true'
end