Sha256: 7563f191f320fa9f44550ff240aa04d17d40f13c03b0bc2e3d6b622e65f093ca
Contents?: true
Size: 888 Bytes
Versions: 1
Compression:
Stored size: 888 Bytes
Contents
#-- # Copyright (c) 2010 Engine Yard, Inc. # Copyright (c) 2007-2009 Sun Microsystems, Inc. # This source code is available under the MIT license. # See the file LICENSE.txt for details. #++ # Warbler is a lightweight, flexible, Rake-based system for packaging your Rails apps # into .war files. module Warbler WARBLER_HOME = File.expand_path(File.dirname(__FILE__) + '/..') unless defined?(WARBLER_HOME) class << self attr_accessor :application attr_accessor :framework_detection attr_writer :project_application end def self.project_application application.load_project_rakefile if application @project_application || Rake.application end self.framework_detection = true end require 'warbler/gems' require 'warbler/config' require 'warbler/war' require 'warbler/task' require 'warbler/application' require 'warbler/runtime' require 'warbler/version'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
warbler-1.0 | lib/warbler.rb |