class BackboneGenerator::ModelGenerator

Abstract base class for fetching javascript libaries from the internet @author Tawheed Abdul-Raheem

Abstract base class for generating models A.K.A copying template @author Tawheed Abdul-Raheem

Public Class Methods

create_model(model_name) click to toggle source
# File lib/backbone_generator/generators/models/models_generator.rb, line 11
def create_model model_name
    app_name  = BackboneGenerator.option_details[:app_name] || File.basename(Dir.getwd).chomp("/")
    if BackboneGenerator.option_details[:app_name]
        dir_path = File.join(Dir.getwd, app_name)
    else
        dir_path = File.join(Dir.getwd)
    end
    model_hash = {
        :app_name  => app_name.slice(0,1).capitalize + app_name.slice(1..-1),
        :model_name => model_name.slice(0,1).capitalize + model_name.slice(1..-1),
    }
    template_path = File.expand_path(File.dirname(__FILE__)) + "/template/Model.tt"
    target_path = "/js/models/" + model_hash[:model_name] + ".Model.js"
    if File.exist? dir_path + target_path
        print "error ".red
        puts "Model with the name specified already exists"
    else
        BackboneGenerator.compile_and_copy(template_path, dir_path + target_path, model_hash)
        print "created ".green
        puts  model_hash[:app_name] + target_path
    end
end
fetch_library(library_name) click to toggle source
# File lib/backbone_generator/generators/library/library_generator.rb, line 11
def fetch_library library_name
    print "NOTICE ".yellow
    puts "Will be implemented in the next Release"
end