require 'pathname' module Jax module Generators # Shamelessly lifted from Ruby on Rails module ScriptJaxLoader RUBY = File.join(*RbConfig::CONFIG.values_at("bindir", "ruby_install_name")) + RbConfig::CONFIG["EXEEXT"] SCRIPT_JAX = File.join('script', 'jax') def self.exec_script_jax! cwd = Dir.pwd return unless in_jax_application? || in_jax_application_subdirectory? exec RUBY, SCRIPT_JAX, *ARGV if in_jax_application? Dir.chdir("..") do # Recurse in a chdir block: if the search fails we want to be sure # the application is generated in the original working directory. exec_script_jax! unless cwd == Dir.pwd end rescue SystemCallError # could not chdir, no problem just return end def self.in_jax_application? File.exists?(SCRIPT_JAX) end def self.in_jax_application_subdirectory?(path = Pathname.new(Dir.pwd)) File.exists?(File.join(path, SCRIPT_JAX)) || !path.root? && in_jax_application_subdirectory?(path.parent) end end end end