# Phusion Passenger - http://www.modrails.com/
# Copyright (c) 2010, 2011, 2012 Phusion
#
# "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
module PhusionPassenger
module Packaging
# A list of HTML files that are generated with Asciidoc.
ASCII_DOCS = [
'doc/Users guide Apache.html',
'doc/Users guide Nginx.html',
'doc/Users guide Standalone.html',
'doc/Security of user switching support.html',
'doc/Architectural overview.html'
]
USER_EXECUTABLES = [
'passenger',
'passenger-install-apache2-module',
'passenger-install-nginx-module',
'passenger-config'
]
SUPER_USER_EXECUTABLES = [
'passenger-status',
'passenger-memory-stats'
]
# A list of globs which match all files that should be packaged
# in the Phusion Passenger gem or tarball.
GLOB = [
'configure',
'Rakefile',
'README',
'DEVELOPERS.TXT',
'LICENSE',
'INSTALL',
'NEWS',
'build/*.rb',
'lib/*.rb',
'lib/**/*.rb',
'lib/**/*.py',
'bin/*',
'doc/**/*',
'man/*',
'debian/*',
'helper-scripts/*',
'ext/common/**/*.{cpp,c,h,hpp,md}',
'ext/apache2/*.{cpp,h,hpp,c}',
'ext/nginx/*.{c,cpp,h}',
'ext/nginx/config',
'ext/boost/**/*',
'ext/libev/{LICENSE,Changes,README,Makefile.am,Makefile.in}',
'ext/libev/{*.m4,autogen.sh,config.guess,config.h.in,config.sub}',
'ext/libev/{configure,configure.ac,depcomp,install-sh,ltmain.sh,missing,mkinstalldirs}',
'ext/libev/{*.h,*.c}',
'ext/libeio/{LICENSE,Changes,README,Makefile.am,Makefile.in}',
'ext/libeio/{*.m4,autogen.sh,config.guess,config.h.in,config.sub}',
'ext/libeio/{configure,configure.ac,install-sh,ltmain.sh,missing,mkinstalldirs}',
'ext/libeio/{*.h,*.c}',
'ext/oxt/*.hpp',
'ext/oxt/*.cpp',
'ext/oxt/detail/*.hpp',
'ext/ruby/*.{c,rb}',
'dev/*',
'resources/**/*',
'test/*.example',
'test/support/*.{c,cpp,h,rb}',
'test/tut/*',
'test/cxx/**/*.{cpp,h}',
'test/oxt/*.{cpp,hpp}',
'test/ruby/**/*',
'test/integration_tests/**/*',
'test/stub/**/*'
# If you're running 'rake package' for the first time, then ASCII_DOCS
# files don't exist yet, and so won't be matched by the glob.
# So we add these filenames manually.
] + ASCII_DOCS
EXCLUDE_GLOB = [
'test/stub/rails_apps/3.0/empty/help/**/*'
]
end
end # module PhusionPassenger