Sha256: 61f4040b0c2e8cde81b1ec914f2ba6ef43dc34abf5e437a217de43230d4c5e18
Contents?: true
Size: 802 Bytes
Versions: 1
Compression:
Stored size: 802 Bytes
Contents
# -*- encoding: utf-8 -*- libpath = File.expand_path('../lib', __FILE__) $:.unshift libpath unless $:.include?(libpath) require 'mockspotify/version' Gem::Specification.new do |gem| gem.name = "mockspotify" gem.summary = %Q{FFI bindings to the mockspotify C library} gem.homepage = "https://github.com/Burgestrand/mockspotify" gem.authors = ["Kim Burgestrand"] gem.email = 'kim@burgestrand.se' gem.files = `git ls-files`.split("\n") gem.files += `cd ext/libmockspotify && git ls-files src/`.split("\n").map { |path| "ext/libmockspotify/#{path}" } gem.executables = [] gem.require_paths = ["lib"] gem.extensions << 'ext/extconf.rb' gem.add_dependency 'spotify' gem.version = Spotify::Mock::VERSION gem.platform = Gem::Platform::RUBY end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mockspotify-0.2.0 | mockspotify.gemspec |