public
Description: A Ruby implementation of the MythTV Backend protocol
Homepage: http://github.com/nickludlam/ruby-mythtv/wikis
Clone URL: git://github.com/nickludlam/ruby-mythtv.git
Nick Ludlam (author)
Wed Feb 18 11:20:50 -0800 2009
commit  c4bde91d74e904767046df02ddab6e4db6807e1a
tree    eab3b18ba414083ebf625cf0aa457c5cae8a921a
parent  9b787a4b52f69b50d3f70cd280a0f7eb499a943a
ruby-mythtv / ruby-mythtv.gemspec
100644 27 lines (23 sloc) 1.145 kb
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
spec = Gem::Specification.new do |s|
  s.name = 'ruby-mythtv'
  s.version = '0.3.0'
 
  s.specification_version = 2 if s.respond_to? :specification_version=
 
  s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
  s.date = %q{2009-02-18}
  s.description = %q{Ruby implementation of the MythTV communication protocol, and interface to the MythTV database}
  s.authors = [ 'Nick Ludlam' ]
  s.email = %q{nick@recoil.org}
  s.extra_rdoc_files = [ 'History.txt', 'License.txt', 'README.txt', 'Todo.txt' ]
  s.files = [ 'History.txt', 'License.txt', 'README.txt', 'Rakefile', 'Todo.txt' ] + Dir["lib/*.rb"] + Dir["lib/mythtv/*.rb"] + Dir["test/*.rb"]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/nickludlam/ruby-mythtv/}
  s.rdoc_options = ['--main', 'README.txt']
  s.require_paths = ['lib']
  s.rubyforge_project = %q{ruby-mythtv}
  s.rubygems_version = %q{0.3.0}
  
  s.add_dependency('mysql')
  s.add_dependency('activerecord')
  s.add_dependency('composite_primary_keys')
  
  s.summary = %q{Ruby implementation of the MythTV backend protocol}
  s.test_files = Dir["test/*.rb"]
end