-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgobl.gemspec
More file actions
27 lines (21 loc) · 797 Bytes
/
gobl.gemspec
File metadata and controls
27 lines (21 loc) · 797 Bytes
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
# frozen_string_literal: true
require_relative 'lib/gobl/version'
Gem::Specification.new do |spec|
spec.name = 'gobl'
spec.version = GOBL::VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = 'Minimalist ruby version of the GOBL library'
spec.homepage = 'https://github.com/invopop/gobl.ruby'
spec.license = 'Apache-2.0'
spec.authors = ['Luismi Cavalle', 'Sam Lown', 'David Lilue', 'Juanjo Molinero']
spec.required_ruby_version = '>= 2.7'
spec.required_rubygems_version = '>= 3.1.4'
spec.files = Dir['lib/**/*', 'data/**/*', 'README.md']
spec.require_path = 'lib'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
spec.add_dependency('activesupport', '>= 4')
spec.add_dependency('hashme', '>= 0.3.0')
spec.add_dependency('zeitwerk', '>= 1')
end