Commit c0d504fd by Ganesh Gunasegaran

Fixes to make the gem work against the latest version of Rails

parent 9c68c8c9
desc "Add schema information (as comments) to model and fixture files"
task :annotate_models => :environment do
require 'annotate/annotate_models'
require File.join(File.dirname(__FILE__), '..', 'annotate/annotate_models')
options={}
options[:position_in_class] = ENV['position_in_class'] || ENV['position'] || :before
options[:position_in_fixture] = ENV['position_in_fixture'] || ENV['position'] || :before
......@@ -14,7 +14,7 @@ end
desc "Remove schema information from model and fixture files"
task :remove_annotation => :environment do
require 'annotate/annotate_models'
require File.join(File.dirname(__FILE__), '..', 'annotate/annotate_models')
options={}
options[:model_dir] = ENV['model_dir']
AnnotateModels.remove_annotations(options)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment