Sha256: 07ee170d11b1b741cce1643a5c609cd2932468be0fc6640dc3744e1109f3b284
Contents?: true
Size: 419 Bytes
Versions: 3
Compression:
Stored size: 419 Bytes
Contents
# This file is required by bin/jax if script/jax isn't found. require 'thor' require 'thor/group' $:.unshift File.expand_path("../..", File.dirname(__FILE__)) module Jax module Generators autoload :App, "jax/generators/app/app_generator" end end class JaxAppGenerator < Thor desc "new", "generates a new Jax application" def new(*args) Jax::Generators::App::AppGenerator.start(args) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jax-1.1.1 | lib/jax/generators/app.rb |
jax-1.1.0 | lib/jax/generators/app.rb |
jax-1.1.0.rc1 | lib/jax/generators/app.rb |