Sha256: 65d8b508e5bf5d24c6806b324e379477cdae05e5629113c152d8ffd5b6d8a29a
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
require 'rubygems' require 'pathname' require 'susanoo/cli/global' require 'susanoo/cli/project' require 'active_support/core_ext/string/inflections' module Susanoo module CLI EXEC_FILES = ['bin/susanoo'] def self.run unless execute Susanoo::CLI::Global.start end end def self.execute cwd = Dir.pwd loop do # Find an executable in bin/susanoo # In other word are we in an susanoo project or not? # Note: Single equalsign is on purpose if exec_file = find_executable # Inject path inject_dev_path exec Gem.ruby, exec_file, *ARGV break end Dir.chdir(cwd) and return false if Pathname.new(Dir.pwd).root? Dir.chdir('../') end end def self.inject_dev_path if File.exist? File.expand_path('../../../.git', __FILE__) ENV['SUSANOO_HOME'] = File.expand_path('../../', __FILE__) end end def self.find_executable EXEC_FILES.find { |exe| File.file?(exe) } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
susanoo-0.11.1 | lib/susanoo/cli.rb |