-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsoundcloud.gemspec
29 lines (23 loc) · 945 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
26
27
28
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'soundcloud/version'
Gem::Specification.new do |s|
s.name = "soundcloud"
s.rubyforge_project = "soundcloud"
s.version = Soundcloud::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Johannes Wagener"]
s.email = ["[email protected]"]
s.homepage = "http://dev.soundcloud.com"
s.summary = "A simple Soundcloud API wrapper"
s.description = "A simple Soundcloud API wrapper based of httparty, multipart-post, httmultiparty"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency 'httparty', '~> 0.7.3'
s.add_dependency 'httmultiparty', '~> 0.3.0'
s.add_dependency 'hashie'
s.add_development_dependency "rspec", '~> 2.5.0'
s.add_development_dependency "fakeweb"
s.files = Dir.glob("{lib}/**/*") + %w(README.md)
s.require_path = 'lib'
end