-
Notifications
You must be signed in to change notification settings - Fork 23
/
sonice.gemspec
31 lines (26 loc) · 965 Bytes
/
sonice.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
30
31
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require "sonice/version"
Gem::Specification.new do |s|
s.name = "sonice"
s.version = Sonice::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Sunny Ripert"]
s.email = ["sunny@sunfox.org"]
s.homepage = "http://github.com/sunny/so-nice"
s.summary = "Web interface to control your current music player"
s.description =
"Small Web interface to control iTunes, Spotify, Rdio, MPD, Rhythmbox, " \
"Amarok and XMMS2. ♫"
s.license = "WTFPL"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = ["sonice"]
s.add_runtime_dependency 'anyplayer', '>= 1.2.1'
s.add_runtime_dependency 'sinatra'
s.add_runtime_dependency 'webrick'
s.add_runtime_dependency 'xml-simple'
s.add_development_dependency 'rake'
s.add_development_dependency 'rubocop'
end