-
Notifications
You must be signed in to change notification settings - Fork 1
/
finary.gemspec
23 lines (20 loc) · 914 Bytes
/
finary.gemspec
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 |gem|
gem.authors = ['Aymeric Brisse']
gem.email = ['[email protected]']
gem.description = 'Finary API wrapper'
gem.summary = 'Finary allows you to manipulate directly the Finary API, which is not officially released yet.'
gem.homepage = 'https://github.com/abrisse/finary'
gem.license = 'MIT'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.name = 'finary'
gem.require_paths = ['lib']
gem.version = '0.0.1'
gem.add_dependency('dry-struct', '~> 1.4')
gem.add_dependency('httparty', '~> 0.20')
gem.add_dependency('irb', '~> 1.4')
gem.add_dependency('nokogiri', '~> 1', '>= 1.13.9')
gem.add_dependency('rake', '~> 13')
gem.metadata['rubygems_mfa_required'] = 'true'
end