-
Notifications
You must be signed in to change notification settings - Fork 6
/
ig_markets.gemspec
37 lines (33 loc) · 1.5 KB
/
ig_markets.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
31
32
33
34
35
36
37
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'ig_markets/version'
Gem::Specification.new do |s|
s.name = 'ig_markets'
s.version = IGMarkets::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.summary = 'Library and command-line client for accessing the IG Markets dealing platform.'
s.homepage = 'https://github.com/richard-viney/ig_markets'
s.author = 'Richard Viney'
s.email = '[email protected]'
s.files = Dir['bin/ig_markets', 'lib/**/*.rb', 'CHANGELOG.md', 'LICENSE.md', 'README.md']
s.extensions = ['ext/mkrf_conf.rb']
s.executables = ['ig_markets']
s.required_ruby_version = '>= 2.7'
s.add_runtime_dependency 'colorize', '~> 0.8'
s.add_runtime_dependency 'excon', '~> 0.99'
s.add_runtime_dependency 'lightstreamer', '~> 0.16'
s.add_runtime_dependency 'pry', '~> 0.14'
s.add_runtime_dependency 'terminal-table', '~> 3.0'
s.add_runtime_dependency 'thor', '~> 1.0'
s.add_development_dependency 'factory_bot', '~> 6.2'
s.add_development_dependency 'github-markup', '~> 4.0'
s.add_development_dependency 'redcarpet', '~> 3.6'
s.add_development_dependency 'rspec', '~> 3.12'
s.add_development_dependency 'rspec-mocks', '~> 3.12'
s.add_development_dependency 'rubocop', '~> 1.48'
s.add_development_dependency 'rubocop-performance', '~> 1.16'
s.add_development_dependency 'rubocop-rspec', '~> 2.19'
s.add_development_dependency 'simplecov', '~> 0.21'
s.add_development_dependency 'yard', '~> 0.9'
s.metadata['rubygems_mfa_required'] = 'true'
end