Sha256: a3f72e8ea1e677f0e7d4483d3aded3f0f50a56bb706dd509580ff03bade52fb4

Contents?: true

Size: 1.66 KB

Versions: 8

Compression:

Stored size: 1.66 KB

Contents

#  Phusion Passenger - https://www.phusionpassenger.com/
#  Copyright (C) 2008-2013  Phusion
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; version 2 of the License.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License along
#  with this program; if not, write to the Free Software Foundation, Inc.,
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

source_root = File.expand_path(File.dirname(__FILE__))
$LOAD_PATH.unshift(source_root)
$LOAD_PATH.unshift("#{source_root}/lib")

require "#{source_root}/config" if File.exist?("#{source_root}/config.rb")
require 'build/basics'
if boolean_option('ONLY_RUBY')
	require 'build/ruby_extension'
else
	require 'build/ruby_extension'
	require 'build/common_library'
	require 'build/agents'
	require 'build/apache2'
	require 'build/nginx'
	require 'build/documentation'
	require 'build/packaging'
	require 'build/test_basics'
	require 'build/oxt_tests'
	require 'build/cxx_tests'
	require 'build/ruby_tests'
	require 'build/integration_tests'
	require 'build/misc'
	require 'build/rpm'
end

#### Default tasks

task :default do
	abort "Please type one of:\n" +
		"  rake apache2\n" +
		"  rake nginx"
end

desc "Remove compiled files"
task :clean do
	sh "rm -rf build/cache"
	sh "rm -rf libout"
end

desc "Remove all generated files"
task :clobber

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
passenger-4.0.5 Rakefile
passenger-4.0.4 Rakefile
passenger-4.0.3 Rakefile
passenger-4.0.2 Rakefile
passenger-4.0.1 Rakefile
passenger-4.0.0.rc6 Rakefile
passenger-4.0.0.rc4 Rakefile
passenger-3.9.2.beta Rakefile