forked from kivanio/brcobranca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brcobranca.gemspec
30 lines (26 loc) · 1.11 KB
/
brcobranca.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'brcobranca/version'
Gem::Specification.new do |gem|
gem.name = 'brcobranca'
gem.version = Brcobranca::VERSION
gem.authors = ['Kivanio Barbosa']
gem.description = 'Gem para emissao de boletos e CNABs de bancos brasileiros.'
gem.summary = 'Gem que permite trabalhar com boletos e CNABs para bancos brasileiros.'
gem.email = '[email protected]'
gem.homepage = 'http://rubygems.org/gems/brcobranca'
gem.files = Dir['Rakefile', '{lib}/**/*', 'README*', 'LICENSE*', 'CHANGELOG*', 'History*']
gem.test_files = Dir['spec/**/*_spec.rb']
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.6.0'
gem.requirements = ['GhostScript > 9.0, para gear PDF e código de Barras']
# Gems that must be intalled for sift to work
gem.add_dependency 'activesupport', '>= 5.2.6'
gem.add_dependency 'parseline', '>= 1.0.3'
gem.add_dependency 'rghost', '>= 0.9'
gem.add_dependency 'rghost_barcode', '>= 0.9'
gem.metadata = {
'rubygems_mfa_required' => 'true'
}
end