-
Notifications
You must be signed in to change notification settings - Fork 1
/
rackit_scrobbler.gemspec
26 lines (23 loc) · 1.02 KB
/
rackit_scrobbler.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rackit_scrobbler/version'
Gem::Specification.new do |spec|
spec.name = "rackit_scrobbler"
spec.version = RackitScrobbler::VERSION
spec.authors = ["Bob Van Landuyt"]
spec.email = ["[email protected]"]
spec.description = "Scrobbles from rackit to last fm"
spec.summary = "Gem to scrobble to last FM"
spec.homepage = "https://github.com/Reprazent/rackit_scrobbler"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "lastfm", "~> 1.17.0"
spec.add_dependency "launchy", "~> 2.2.0"
spec.add_dependency 'eventmachine', '~> 1.0.1'
spec.add_dependency 'faye-websocket', '~> 0.4.7'
spec.add_dependency 'activesupport', '~> 3.2.12'
end