Module: Rails3::Assist::Orm::ActiveRecord

Includes:
Base
Defined in:
lib/rails3_artifactor/artifact/orm/active_record.rb

Instance Method Summary collapse

Methods included from Base

included

Instance Method Details

#new_model_content(name, options = {}, &block) ⇒ Object



9
10
11
12
# File 'lib/rails3_artifactor/artifact/orm/active_record.rb', line 9

def new_model_content name, options={}, &block        
  content = block ? yield : options[:content]
  file_w_inherit(name, orm_marker_name(name, options)) { content }
end

#orm_marker_name(name, options = nil) ⇒ Object



5
6
7
# File 'lib/rails3_artifactor/artifact/orm/active_record.rb', line 5

def orm_marker_name name, options=nil
  'ActiveRecord::Base'
end