-
Notifications
You must be signed in to change notification settings - Fork 23
/
spotify-ruby.gemspec
56 lines (45 loc) · 1.99 KB
/
spotify-ruby.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
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "spotify/version"
Gem::Specification.new do |spec|
spec.name = "spotify-ruby"
spec.version = Spotify::VERSION
spec.authors = ["Bilawal Hameed"]
spec.email = ["[email protected]"]
spec.summary = "The developer-friendly, opinionated Ruby SDK for Spotify."
spec.description = [
"Build integrations with the different Spotify APIs",
"inside of your application.",
"For more information, visit https://developer.spotify.com"
].join(" ")
spec.homepage = "https://bih.github.io/spotify-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(assets|bin|coverage|doc|docs|html|examples|test|spec|features)/})
end
spec.metadata["yard.run"] = "yri"
# We don't support executables just yet. Comment this out if you're building one.
# spec.bindir = "exe"
# spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
# spec.require_paths = ["lib"]
# Tooling
spec.add_development_dependency "bundler", "~> 2.1.4", ">= 2.1.4"
spec.add_development_dependency "rake", "~> 12.1"
# Testing
spec.add_development_dependency "climate_control", "~> 0.2"
spec.add_development_dependency "factory_bot", "~> 5.0.0"
spec.add_development_dependency "rspec", "~> 3.8"
spec.add_development_dependency "rspec-collection_matchers", "~> 1.1", ">= 1.1.2"
spec.add_development_dependency "rubocop", "~> 0.71.0"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "webmock", "~> 3.6"
# Developer Productivity
spec.add_development_dependency "pry", "~> 0.12"
# Documentation
spec.add_development_dependency "yard"
spec.add_development_dependency "yard-api"
# Runtime Dependencies
spec.add_runtime_dependency "activesupport", "~> 5.2.3"
spec.add_runtime_dependency "httparty", ">= 0.15.6", "< 0.18"
end