-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuda.gemspec
More file actions
23 lines (22 loc) · 793 Bytes
/
buda.gemspec
File metadata and controls
23 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'buda'
s.version = '0.1.4.0.4'
s.summary = 'buda.com client'
s.description = 'A simple client for buda.com api'
s.authors = ['Alfredo Enrione']
s.email = 'aenrione@protonmail.com'
s.homepage =
'https://rubygems.org/gems/buda'
s.license = 'MIT'
s.required_ruby_version = Gem::Requirement.new('>= 2.7.3')
s.add_dependency 'http'
s.add_dependency 'json'
s.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.metadata['rubygems_mfa_required'] = 'true'
end