Sha256: 2bd7965bf3eb0b294f51ee7e15ed911c3d61658e4fd6248b876116086637955e

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 Bytes

Contents

module FlashSDK

  class FCSHClient

    def execute executable, path, command
    end 
  end
end

##
# Rake task that will make any subsequent
# mxmlc or compc tasks use the FCSH compiler.
#
# You can use this task by inserting it
# before the task you're calling on the 
# command line like:
#
#   rake fcsh test
#
# or:
#
#   rake fcsh debug
#
# Or you can add this task as a prerequisite
# to your build tasks directly like:
#
#   mxmlc 'bin/SomeProject.swf' => :fcsh do |t|
#     ...
#   end
#
desc "Make subsequent MXMLC or COMPC tasks use FCSH"
task :fcsh do
  ENV['USE_FCSH'] = 'true'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flashsdk-1.0.14.pre lib/flashsdk/fcsh_client.rb