Sha256: 0176c1b0ae19adcfddd8a832146c877223eaf64b881bfb4a33b20687eed064fd
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
lib_dir = File.expand_path(File.join(File.dirname(__FILE__),'puer')) unless $LOAD_PATH.include?(lib_dir) $LOAD_PATH << lib_dir end require 'xibtoti' require 'thread' require 'puer/version' require 'puer/tasks' require 'active_support' module Puer ## # This method return the correct location of mvc-gen bin or # exec it using Kernel#system with the given args # def self.bin_gen(*args) @_mvc_gen_bin ||= [IphoneMvc.ruby_command, File.expand_path("../bin/puer", __FILE__)] args.empty? ? @_mvc_gen_bin : system(args.unshift(@_mvc_gen_bin).join(" ")) end ## # This module it's used for register generators # module Generators DEV_PATH = File.expand_path("../../", File.dirname(__FILE__)) class << self ## # Here we store our generators paths # def load_paths @_files ||= [] end ## # Return a ordered list of task with their class # def mappings @_mappings ||= ActiveSupport::OrderedHash.new end ## # Gloabl add a new generator class # def add_generator(name, klass) mappings[name] = klass end ## # Load Global Actions and Component Actions then all files in +load_path+. # def load_components! require 'puer/generators/actions' load_paths.flatten.each { |file| require file } end end end # Generators end # Puer ## # We add our generators to Puer::Genererator # Puer::Generators.load_paths << Dir[File.dirname(__FILE__) + '/puer/generators/{controller,model,xib,lib,gist,search,help}.rb']
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puer-0.0.6 | lib/puer.rb |