forked from nex3/librmpd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibrmpd.gemspec
33 lines (28 loc) · 1.19 KB
/
librmpd.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
32
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{librmpd}
s.version = "0.1.1"
s.required_rubygems_version = nil if s.respond_to? :required_rubygems_version=
# adding myself to authors, not sure what the etiquette is here
s.authors = ["Andrew Rader", "Clarke Brunsdon"]
s.cert_chain = nil
s.date = %q{2010-11-15}
s.description = %q{A library for the Music Player Daemon (MPD)}
# switched to my email too...
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.md"]
s.files = ["lib/mpdserver.rb", "lib/librmpd.rb", "data/database.yaml", "examples/rmpc.rb", "examples/tailmpc.rb", "AUTHORS", "COPYING", "README.md", "tests/libtests.rb", "tests/servertests.rb"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new("> 0.0.0")
s.rubygems_version = %q{1.3.7}
s.summary = %q{A library for the Music Player Daemon (MPD)}
s.test_files = ["tests/libtests.rb", "tests/servertests.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 1
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end