This repository was archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathctfc.gemspec
More file actions
50 lines (41 loc) · 1.69 KB
/
ctfc.gemspec
File metadata and controls
50 lines (41 loc) · 1.69 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
require_relative './lib/ctfc/version'
Gem::Specification.new do |s|
s.name = 'ctfc'
s.version = CTFC::VERSION
s.summary = 'Cryptocurrency to Fiat values, get data and save prices.'
s.description = <<~DESCRIPTION
Convert any cryptocurrency to any fiat value, export data to csv table.
Print colorized terminal output.
DESCRIPTION
s.license = 'MIT'
s.authors = 'alx3dev'
s.homepage = 'https://github.com/alx3dev/ctfc'
s.bindir = 'bin'
s.require_paths = 'lib'
s.executables = 'ctfc'
s.metadata['homepage_uri'] = 'https://github.com/alx3dev/ctfc'
s.metadata['source_code_uri'] = 'https://github.com/alx3dev/ctfc'
s.metadata['bug_tracker_uri'] = 'https://github.com/alx3dev/ctfc/issues'
s.metadata['changelog_uri'] = 'https://github.com/alx3dev/ctfc/CHANGELOG.md'
s.metadata['documentation_uri'] = "https://rubydoc.info/gems/#{s.name}/#{s.version}"
s.metadata['license_uri'] = 'https://github.com/alx3dev/ctfc/LICENSE'
s.metadata['rubygems_mfa_required'] = 'true'
s.files = %w[ bin/ctfc
bin/console
lib/ctfc.rb
lib/ctfc/version.rb
lib/ctfc/base.rb
lib/ctfc/config.rb
LICENSE
README.md
ctfc.gemspec]
s.required_ruby_version = '>= 2.6', '< 4'
s.add_runtime_dependency 'kolorit', '~> 0.1.3'
s.add_runtime_dependency 'optimist', '~> 3.0.1'
s.add_runtime_dependency 'rest-client', '~> 2.1.0'
s.add_development_dependency 'bundler', '~> 2.2.9'
s.add_development_dependency 'pry', '~> 0.14.1'
s.add_development_dependency 'rake', '~> 13.0.3'
s.add_development_dependency 'rspec', '~> 3.10.0'
end