Sha256: 99d03a5231f2833e22d9ff5b2dcd99122406db67fed31ac741c5fa1a567d5b6d

Contents?: true

Size: 967 Bytes

Versions: 2

Compression:

Stored size: 967 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/grooveshark/version', __FILE__)

Gem::Specification.new do |s|
  s.name        = "grooveshark"
  s.version     = Grooveshark::VERSION
  s.description = "Unofficial ruby library for consuming the Grooveshark API."
  s.summary     = "Grooveshark API"
  s.authors     = ["Dan Sosedoff"]
  s.email       = "dan.sosedoff@gmail.com"
  s.homepage    = "http://github.com/sosedoff/grooveshark"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
  s.require_paths = ['lib']
  
  s.add_development_dependency 'rspec',       '~> 2.12'
  s.add_development_dependency 'rake',        '~> 10.0'
  
  s.add_runtime_dependency     'json',        '>= 1.4.6'
  s.add_runtime_dependency     'rest-client', '>= 1.5.1'
  s.add_runtime_dependency     'uuid',        '~> 2.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
grooveshark-0.2.8.1 grooveshark.gemspec
grooveshark-0.2.8 grooveshark.gemspec