public
Description: Ruby library for the MTV Music API
Homepage: http://developer.mtvnservices.com/
Clone URL: git://github.com/mattt/mtv-music.git
mtv-music / mtv-music.gemspec
100644 34 lines (31 sloc) 0.99 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
28
29
30
31
32
33
34
Gem::Specification.new do |s|
  s.name = "mtv-music"
  s.version = "0.1.0"
  s.date = "2008-11-13"
  s.summary = "A Ruby wrapper for the MTV Music API."
  s.email = "mail@matttthompson.com"
  s.homepage = "http://github.com/mattt/mtv-music/"
  s.description = "A Ruby wrapper for the MTV Music API.
See http://developer.mtvnservices.com/ for more information about the API."
  s.authors = ["Mattt Thompson"]
  
  s.files = [
"README",
"mtv-music.gemspec",
"lib/mtv-music.rb",
"lib/rest.rb",
"lib/mtv-music/base.rb",
"lib/mtv-music/artist.rb",
"lib/mtv-music/video.rb",
"lib/mtv-music/version.rb"
]
  s.test_files = [
    "test/test_helper.rb",
    "test/test_mtv_music_artist.rb",
    "test/test_mtv_music_video.rb"
  ]
  
  s.add_dependency("hpricot", ["> 0.6"])
  s.add_dependency("activesupport", ["> 2.1.0"])
  s.add_dependency("flexmock", ["> 0.8.2"])
  
  s.has_rdoc = false
  s.rdoc_options = ["--main", "README"]
end