public
Description: Easy creation of Facebook applications in Ruby using plugin for Sinatra web framework that integrates with Facebooker gem.
Homepage: http://www.deadprogrammersociety.com
Clone URL: git://github.com/deadprogrammer/frankie.git
frankie / Rakefile
100644 29 lines (23 sloc) 0.766 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
require 'rubygems'
require 'rake/testtask'
require 'rake/rdoctask'
require 'echoe'
 
task :default => :test
 
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files += ["README.rdoc"]
  rd.rdoc_files += Dir.glob("lib/**/*.rb")
  rd.rdoc_dir = 'doc'
end
 
Rake::TestTask.new do |t|
  ENV['SINATRA_ENV'] = 'test'
  t.pattern = File.dirname(__FILE__) + "/test/*_test.rb"
end
 
Echoe.new("frankie") do |p|
  p.author = "Ron Evans"
  p.summary = "Easy creation of Facebook applications in Ruby using plugin for Sinatra web framework that integrates with Facebooker gem."
  p.url = "http://facethesinatra.com/"
  p.dependencies = ["sinatra >=0.2.2", "facebooker >=0.9.5"]
  p.install_message = "*** Frankie was installed ***"
  p.include_rakefile = true
end