public
Description: Allows you to generate an ActiveResource model ready to interact with the You Tube API.
Homepage: http://rdoc.info/projects/edgarjs/youtube-model
Clone URL: git://github.com/edgarjs/youtube-model.git
Click here to lend your support to: youtube-model and make a donation at www.pledgie.com !
edgarjs (author)
Fri May 08 06:56:49 -0700 2009
commit  330978070456f664f7324041abd6c2c937ad0121
tree    48b1da0497fa4e173fef676bdb8549bae90ebad8
parent  531c98648c104324aeca1f43cc4b1d55f8258452
youtube-model / Rakefile
100644 23 lines (19 sloc) 0.56 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the you_tube_model plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the you_tube_model plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'YouTubeModel'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end