mirror of https://github.com/rails/rails
Add rdoc task to activemodel. [#156 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
This commit is contained in:
parent
5a3fd46d42
commit
3baf810482
|
@ -1,4 +1,16 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
$LOAD_PATH << File.join(File.dirname(__FILE__), 'vendor', 'rspec', 'lib')
|
$LOAD_PATH << File.join(File.dirname(__FILE__), 'vendor', 'rspec', 'lib')
|
||||||
require 'rake'
|
require 'rake'
|
||||||
require 'spec/rake/spectask'
|
require 'spec/rake/spectask'
|
||||||
|
require 'rake/rdoctask'
|
||||||
|
|
||||||
|
# Generate the RDoc documentation
|
||||||
|
Rake::RDocTask.new { |rdoc|
|
||||||
|
rdoc.rdoc_dir = 'doc'
|
||||||
|
rdoc.title = "Active Model"
|
||||||
|
rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
|
||||||
|
rdoc.options << '--charset' << 'utf-8'
|
||||||
|
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
|
||||||
|
rdoc.rdoc_files.include('README', 'CHANGES')
|
||||||
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||||
|
}
|
Loading…
Reference in New Issue