Changes: * Fix script/about in production mode. #370 [Cheah Chu Yeow, Xavier Noria, David Krmpotic] * Add the gem load paths before the framework is loaded, so certain gems like RedCloth and BlueCloth can be frozen. * Fix discrepancies with loading rails/init.rb from gems. * Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb) [Jacek Becela] * Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [DHH] * Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
23 lines
1,002 B
Makefile
23 lines
1,002 B
Makefile
# $NetBSD: Makefile,v 1.13 2008/09/15 05:58:42 minskim Exp $
|
|
|
|
DISTNAME= rails-2.1.1
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://www.rubyonrails.org/
|
|
COMMENT= Framework for developing database-backed web applications
|
|
|
|
DEPENDS+= rake>=0.8.1:../../devel/rake
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.1.1:../../devel/ruby-activesupport
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-activerecord>=2.1.1:../../databases/ruby-activerecord
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-activeresource>=2.1.1:../../www/ruby-activeresource
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-actionpack>=2.1.1:../../www/ruby-actionpack
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-actionmailer>=2.1.1:../../mail/ruby-actionmailer
|
|
|
|
REPLACE_RUBY= bin/about bin/console bin/dbconsole bin/destroy bin/generate \
|
|
bin/performance/benchmarker bin/performance/profiler \
|
|
bin/performance/request bin/plugin bin/process/inspector \
|
|
bin/process/reaper bin/process/spawner bin/runner bin/server
|
|
|
|
.include "../../misc/rubygems/rubygem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|