Sha256: c7484c1fbd6a387b2d941dbcc641e0f028d03cdfaef69b8a854182b366c3dbdf

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spotify_osx_controller/version'

Gem::Specification.new do |spec|
  spec.name          = "spotify_osx_controller"
  spec.version       = SpotifyOsxController::VERSION
  spec.authors       = ["Daniel Swensson"]
  spec.email         = ["daniel@danielswensson.se"]
  spec.licenses      = ['MIT']

  spec.summary       = %q{Ruby wrapper for Spotify applescript API}
  spec.description   = <<-EOF 
                        Run basic Spotify commands on OSX.
                        Apple script forked from: https://github.com/dronir/SpotifyControl
                       EOF
  spec.homepage      = "https://github.com/DanielSwensson/SpotifyControl"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "bin"
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "trollop"
  spec.add_dependency "rspotify", "~> 1.0"
  spec.add_development_dependency "bundler", "~> 1.9"
  spec.add_development_dependency "rake", "~> 10.0"

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spotify_osx_controller-2.0.3 spotify_osx_controller.gemspec
spotify_osx_controller-2.0.2 spotify_osx_controller.gemspec
spotify_osx_controller-2.0.1 spotify_osx_controller.gemspec
spotify_osx_controller-2.0.0 spotify_osx_controller.gemspec