forked from guilhermesad/rspotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspotify.gemspec
30 lines (25 loc) · 1.03 KB
/
rspotify.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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rspotify/version'
Gem::Specification.new do |spec|
spec.name = 'rspotify'
spec.version = RSpotify::VERSION
spec.authors = ['Guilherme Sad']
spec.email = ['gorgulhoguilherme@gmail.com']
spec.summary = %q{A ruby wrapper for the Spotify Web API}
spec.homepage = 'http://rubygems.org/gems/rspotify'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(/^spec\//)
spec.require_paths = ['lib']
spec.add_dependency 'omniauth-oauth2', '~> 1.3.1'
spec.add_dependency 'rest-client', '~> 1.8'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'fakeweb', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'yard'
spec.add_development_dependency 'vcr', '~> 2.9'
spec.required_ruby_version = '>= 2.0.0'
end