forked from rc2dev/pifi-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pifi.gemspec
25 lines (24 loc) · 1012 Bytes
/
pifi.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
$:.push File.expand_path("../lib", __FILE__)
require "pifi/version"
Gem::Specification.new do |s|
s.name = 'pifi'
s.version = PiFi::VERSION
s.licenses = ['GPL-3.0-only']
s.summary = 'MPD client for listening to radio'
s.description = "Minimalist MPD web client for listening to radio"
s.authors = ["Rafael Cavalcanti"]
s.email = '[email protected]'
s.files = Dir.glob("{bin,lib}/**/*") + Dir.glob("{.,docs}/*.md") + %w(LICENSE docs/icon/license.pdf config.ru)
s.executables = ['pifi']
s.add_dependency 'sinatra', '~> 2.0'
s.add_dependency 'thin', '~> 1.7'
s.add_dependency 'ruby-mpd', '~> 0.3'
s.add_dependency 'json', '~> 2.2'
s.add_dependency 'optimist', '~> 3.0'
s.required_ruby_version = '>= 2.4'
s.homepage = 'https://github.com/rccavalcanti/pifi-radio'
s.metadata = {
"source_code_uri" => "https://github.com/rccavalcanti/pifi-radio",
"documentation_uri" => "https://github.com/rccavalcanti/pifi-radio",
}
end