Adding model generator

This commit is contained in:
Marcos Tapajós 2010-08-23 20:27:17 -03:00
parent 089dd7497a
commit bb667459a8
10 changed files with 79 additions and 5 deletions

View file

@ -0,0 +1,16 @@
require 'rails/generators/named_base'
require 'rails/generators/active_model'
require 'couchrest_model'
module CouchrestModel
module Generators
class Base < Rails::Generators::NamedBase #:nodoc:
# Set the current directory as base for the inherited generators.
def self.base_root
File.dirname(__FILE__)
end
end
end
end