Class: Appjam::Generators::Cli

Inherits:
Thor::Group
  • Object
show all
Includes:
CLIColorize, Thor::Actions
Defined in:
lib/appjam/generators/cli.rb

Overview

This class bootstrap config/boot and perform Appjam::Generators.load_components! for handle 3rd party generators

Constant Summary collapse

RENDER_OPTIONS =
{ :fields => [:category,:command,:description] }

Instance Method Summary collapse

Instance Method Details

#load_bootObject

We need to TRY to load boot because some of our app dependencies maybe have custom generators, so is necessary know who are.



26
27
28
29
30
31
32
33
# File 'lib/appjam/generators/cli.rb', line 26

def load_boot
  begin
    ENV['BUNDLE_GEMFILE'] = File.join(options[:root], "Gemfile") if options[:root]
  rescue Exception => e
    puts "=> Problem loading #{boot}"
    puts ["=> #{e.message}", *e.backtrace].join("\n  ")
  end
end

#setupObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/appjam/generators/cli.rb', line 35

def setup
  Appjam::Generators.load_components!

  generator_kind  = ARGV.delete_at(0).to_s.downcase.to_sym if ARGV[0].present?
  generator_class = Appjam::Generators.mappings[generator_kind]
  if generator_class
    args = ARGV.empty? && generator_class.require_arguments? ? ["-h"] : ARGV  
    generator_class.start(args)            
  else                 
    puts colorize( "Appjam Version: #{Appjam::Version::STRING}", { :foreground => :red, :background => :white, :config => :underline } )
    puts
    require 'yaml'
    gistfile = File.expand_path("~") + '/.appjam/gist.yml'
    Gist::update_gist unless File.exist?(gistfile)          
    begin 
      g = YAML.load_file(gistfile)  
    rescue ArgumentError => e
      g = YAML.load_file(File.expand_path(File.dirname(__FILE__) + '/gist.yml'))
    end
    puts "notice: a new version '#{g['info']}' released" if g['info'] and g['info'].strip != "#{Appjam::Version::STRING}"
    puts          
    puts "Appjam is an iOS code repository, including framework, snippet, generators, etc."
    puts          
    puts colorize("For more information")
    puts
    puts "appjam help"
    puts
    puts colorize("Update latest repository info")
    puts
    puts "appjam gist update"
    puts          
  end
end