Skip to content

Commit

Permalink
issue #22 add rdoc rake task
Browse files Browse the repository at this point in the history
  • Loading branch information
Onur Özgür ÖZKAN committed May 6, 2013
1 parent 282b70c commit 370e0be
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
require "bundler/gem_tasks"
# encoding: UTF-8

require 'bundler/gem_tasks'
require 'rdoc/task'

desc 'Generate documentation for the Cybele gem.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Cybele'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.md')
rdoc.rdoc_files.include('lib/**/*.rb')
end

0 comments on commit 370e0be

Please sign in to comment.