Sha256: 23eb61341e22bb255106d9fb5e4fa2ee4e148a0b5c3caa78495a9debe113e86f
Contents?: true
Size: 1.54 KB
Versions: 15
Compression:
Stored size: 1.54 KB
Contents
# =========================================================================== # Project: Abbot - SproutCore Build Tools # Copyright: ©2009 Apple Inc. # portions copyright @2006-2009 Sprout Systems, Inc. # and contributors # =========================================================================== module SC class Tools desc "server", "Starts the development server" method_options :daemonize => false, :pid => :string, :port => :string, :host => :string, :irb => false, :filesystem => false def server prepare_mode!('debug') # set mode again, using debug as default SC.env.build_prefix = options.buildroot if options.buildroot SC.env.staging_prefix = options.stageroot if options.stageroot # get project and start service. project = requires_project! # start shell if passed if options.irb require 'irb' require 'irb/completion' if File.exists? ".irbrc" ENV['IRBRC'] = ".irbrc" end SC.project = project SC.logger << "SproutCore v#{SC::VERSION} Interactive Shell\n" SC.logger << "SC.project = #{project.project_root}\n" ARGV.clear # do not pass onto IRB IRB.start else SC.logger << "SproutCore v#{SC::VERSION} Development Server\n" SC::Rack::Service.start(options.merge(:project => project)) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems