-
Notifications
You must be signed in to change notification settings - Fork 0
/
steam_api.gemspec
46 lines (39 loc) · 1.76 KB
/
steam_api.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
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
require_relative "lib/steam_api/version"
Gem::Specification.new do |spec|
spec.name = "steam_api"
spec.version = SteamApi::VERSION
spec.authors = ["João Pedro"]
spec.email = ["[email protected]"]
spec.summary = "A ruby client to fetch from the public Steam Web API"
spec.homepage = "https://github.com/sosolidkk/steam_api"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata["homepage_uri"] = spec.homepage
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# A toolkit of support libraries and Ruby core
# extensions extracted from the Rails framework.
# See: [https://rubygems.org/gems/activesupport]
spec.add_dependency "activesupport"
# A mixin to add configuration functionality to your classes.
# See: [https://rubygems.org/gems/dry-configurable]
spec.add_dependency "dry-configurable", "~> 1.1.0"
# Typed struct and value objects for Ruby.
# See: [https://rubygems.org/gems/dry-struct]
spec.add_dependency "dry-struct", "~> 1.6"
# Typhoeus runs HTTP requests in parallel while
# cleanly encapsulating handling logic.
# See [https://rubygems.org/gems/typhoeus]
spec.add_dependency "typhoeus", "~> 1.4"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end