Skip to content

Commit

Permalink
fixes doc generation
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
  • Loading branch information
fxn authored and jeremy committed Feb 10, 2010
1 parent 97650bf commit 9fd9e5d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
4 changes: 4 additions & 0 deletions Rakefile
Expand Up @@ -104,6 +104,10 @@ Rake::RDocTask.new do |rdoc|
rdoc.rdoc_files.include('activesupport/CHANGELOG')
rdoc.rdoc_files.include('activesupport/lib/active_support/**/*.rb')
rdoc.rdoc_files.exclude('activesupport/lib/active_support/vendor/*')

rdoc.rdoc_files.include('activemodel/README')
rdoc.rdoc_files.include('activemodel/CHANGELOG')
rdoc.rdoc_files.include('activemodel/lib/active_model/**/*.rb')
end

# Enhance rdoc task to copy referenced images also
Expand Down
11 changes: 11 additions & 0 deletions activemodel/CHANGELOG
@@ -1,5 +1,16 @@
*Edge*

* ActiveModel::Observer#add_observer!

It has a custom hook to define after_find that should really be in a
ActiveRecord::Observer subclass:

def add_observer!(klass)
klass.add_observer(self)
klass.class_eval 'def after_find() end' unless
klass.respond_to?(:after_find)
end

* Change the ActiveModel::Base.include_root_in_json default to true for Rails 3 [DHH]

* Add validates_format_of :without => /regexp/ option. #430 [Elliot Winkler, Peer Allan]
Expand Down
12 changes: 0 additions & 12 deletions activemodel/CHANGES

This file was deleted.

6 changes: 3 additions & 3 deletions activemodel/Rakefile
Expand Up @@ -32,13 +32,13 @@ require 'rake/rdoctask'

# Generate the RDoc documentation
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = "#{dir}/doc"
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'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
rdoc.rdoc_files.include("#{dir}/README", "#{dir}/CHANGES")
rdoc.rdoc_files.include("#{dir}/lib/**/*.rb")
rdoc.rdoc_files.include("README", "CHANGELOG")
rdoc.rdoc_files.include("lib/**/*.rb")
end


Expand Down

0 comments on commit 9fd9e5d

Please sign in to comment.