-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmlb_stats_api.gemspec
More file actions
28 lines (23 loc) · 898 Bytes
/
mlb_stats_api.gemspec
File metadata and controls
28 lines (23 loc) · 898 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
28
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mlb_stats_api/version'
Gem::Specification.new do |spec|
spec.name = 'mlb_stats_api'
spec.version = MLBStatsAPI::VERSION
spec.authors = ['Steven Hoffman']
spec.email = ['git@fustrate.com']
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.summary = %(MLB has a new Stats API!)
spec.homepage = 'http://github.com/fustrate/mlb_stats_api'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { _1.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = []
spec.require_paths = ['lib']
spec.add_dependency 'hana', '~> 1.3'
spec.add_dependency 'httparty', '~> 0.21'
spec.add_dependency 'moneta', '~> 1.6'
spec.add_dependency 'zeitwerk', '~> 2.6'
end