Skip to content

Commit

Permalink
Update README and Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jan 30, 2009
1 parent 6564eef commit f48cd6d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
17 changes: 13 additions & 4 deletions README
@@ -1,6 +1,4 @@
Copyright (c) 2008 José Valim (jose.valim at gmail dot com)
Site: http://www.pagestacker.com/
Blog: http://josevalim.blogspot.com/
Rails Footnotes
License: MIT
Version: 3.3.2

Expand Down Expand Up @@ -138,10 +136,21 @@ Then put in your environment:
Footnotes::Filter.notes += [:current_user]


Bugs and Feedback
-----------------

If you discover any bugs, please send an e-mail to jose.valim@gmail.com
If you just want to give some positive feedback or drop a line, that's fine too! =)

Copyright (c) 2009 José Valim
http://www.pagestacker.com/
http://josevalim.blogspot.com/


Version 2.0
-----------

Until version 2.0, this plugin was created and maintained by:

Duane Johnson (duane.johnson@gmail.com)
http://blog.inquirylabs.com/
http://blog.inquirylabs.com/
9 changes: 5 additions & 4 deletions Rakefile
Expand Up @@ -2,17 +2,18 @@ require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Test Footnotes plugin.'
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 plugin.'
desc 'Generate documentation for Footnotes.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'SimpleLocalization'
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
end

0 comments on commit f48cd6d

Please sign in to comment.