Sha256: ed1bb5a37b136007dfd77b446d7ce0011626c9fcbee21b914422d9695a7e4446

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

#!/usr/bin/env ruby

#  Generates the primary Ruboss project directory structure and 
#  sets up Flex Builder and TextMate specific descriptor files
#     
#  You can generate Flex Builder configuration for either *pure* Flex
#  project or an AIR project. To generate AIR configuration pass the -a
#  (--air) option to the generator.
# 
# Examples:
#     `ruboss-gen pomodo` # generates project structure and a 
#                         # default Flex app configuration.
#     `ruboss-gen -a pomodo` # as above but generates an AIR app
#                            # and configuration
#                            
# Next Steps:
#     In your new Ruboss project folder run `ruby script/generate` for
#     a list of available generators.

require 'rubygems'
require 'rubigen'
require File.join(File.dirname(__FILE__), '..', 'lib', 'ruboss4ruby')

if %w(-v --version).include? ARGV.first
  puts "#{File.basename($0)} #{Ruboss4Ruby::VERSION}"
  exit(0)
end

require 'rubigen/scripts/generate'
RubiGen::Base.use_application_sources!
RubiGen::Scripts::Generate.new.run(ARGV, :generator => 'ruboss_app')

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
dima-ruboss4ruby-1.1.1 bin/ruboss-gen
dima-ruboss4ruby-1.1.2 bin/ruboss-gen
ruboss4ruby-1.1.2 bin/ruboss-gen
ruboss4ruby-1.1.1 bin/ruboss-gen
ruboss4ruby-1.1.0 bin/ruboss-gen