Sha256: ae7c36a45c8a7523c2c6d233eab34c9a984048281449924ac1dc5e2354b20ee5

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "rails-footnotes"
    s.version = "3.6.4"
    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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-footnotes-3.6.4 Rakefile