forked from soundcloud/soundcloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
soundcloud.gemspec
25 lines (20 loc) · 924 Bytes
/
soundcloud.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
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'soundcloud/version'
Gem::Specification.new do |spec|
spec.name = 'soundcloud'
spec.version = SoundCloud::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Johannes Wagener", "Erik Michaels-Ober"]
spec.email = ["[email protected]"]
spec.homepage = 'https://dev.soundcloud.com'
spec.summary = "The official SoundCloud API wrapper."
spec.description = "The official SoundCloud API wrapper. It provides simple methods to handle authorization and to execute HTTP calls."
spec.required_rubygems_version = '>= 1.3.5'
spec.add_dependency('httmultiparty', '~> 0.3.0')
spec.add_dependency('hashie')
spec.add_development_dependency('bundler', '~> 1.0')
spec.files = Dir.glob("lib/**/*") + %w(LICENSE.md README.md)
spec.require_path = 'lib'
end