Adding model generator
This commit is contained in:
parent
089dd7497a
commit
bb667459a8
10 changed files with 79 additions and 5 deletions
16
lib/rails/generators/couchrest_model.rb
Normal file
16
lib/rails/generators/couchrest_model.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue