public
Description: Every Rails page has footnotes that gives information about your application and links back to your editor
Homepage: http://blog.plataformatec.com.br/
Clone URL: git://github.com/josevalim/rails-footnotes.git
Click here to lend your support to: rails-footnotes and make a donation at www.pledgie.com !
commit  6f94a230cb39803df025f61cc7646a8751ddf789
tree    eeba549feb153724abe9dff926094ffb0565a0f7
parent  083e57135e7cd9d19710fd4cb45418df5687ea1b parent  1a0065268792ac8070a0ac0337ab6590d217577b
rails-footnotes / Rakefile
100755 39 lines (34 sloc) 1.303 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
35
36
37
38
39
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "rails-footnotes"
    s.version = "3.6.3"
    s.rubyforge_project = "rails-footnotes"
    s.summary = "Every Rails page has footnotes that gives information about your application and links back to your editor."
    s.email = "jose@plataformatec.com.br"
    s.homepage = "http://github.com/josevalim/rails-footnotes"
    s.description = "Every Rails page has footnotes that gives information about your application and links back to your editor."
    s.authors = ['José Valim']
    s.files = FileList["[A-Z]*", "{lib}/**/*"]
  end
 
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
 
desc 'Run tests for Footnotes.'
Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for Footnotes.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Footnotes'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('MIT-LICENSE')
  rdoc.rdoc_files.include('lib/**/*.rb')
end