diff options
author | minskim <minskim@pkgsrc.org> | 2009-04-07 17:13:26 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2009-04-07 17:13:26 +0000 |
commit | 9af1640e70a097db7597b6c1ad30c760ae4219d1 (patch) | |
tree | 1c28ad5f3b1b7b5701aba85e198dd0f0f5b602f4 /www | |
parent | b5658bd578527e62f1e0c0caeb0a8310534fa346 (diff) | |
download | pkgsrc-9af1640e70a097db7597b6c1ad30c760ae4219d1.tar.gz |
Update rails packages to 2.3.1.
Changes since 2.1.1:
* Allow metal to live in plugins #2045 [Matthew Rudy]
* Added metal [Josh Peek]
* Remove script/performance/request in favour of the performance
integration tests. [Pratik Naik]
* Add a rake task to apply a template to an existing application :
rake rails:template LOCATION=~/template.rb [Pratik Naik]
* Add "-m/--template" option to Rails generator to apply a template to
the generated application. [Jeremy McAnally]
* Extracted the process scripts (inspector, reaper, spawner) into the
plugin irs_process_scripts [David Heinemeier Hansson]
* Changed Rails.root to return a Pathname object
* Added view path support for engines [David Heinemeier Hansson]
* Added that config/routes.rb files in engine plugins are
automatically loaded (and reloaded when they change in dev mode)
[David Heinemeier Hansson]
* Added app/[models|controllers|helpers] to the load path for plugins
that has an app directory (go engines ;)) [David Heinemeier Hansson]
* Add config.preload_frameworks to load all frameworks at
startup. Default to false so Rails autoloads itself as it's
used. Turn this on for Passenger and JRuby. Also turned on by
config.threadsafe! [Jeremy Kemper]
* Add a rake task to generate dispatchers : rake
rails:generate_dispatchers [Pratik Naik]
* "rails <app>" will not generate public/dispatch.cgi/fcgi/rb files by
default now. Please use "--with-dispatchers" option if you need
them. [Yaroslav Markin, Pratik Naik]
* Added rake rails:update:application_controller to renamed
application.rb to application_controller.rb -- included in rake
rails:update so upgrading to 2.3 will automatically trigger it #1439
[kastner]
* Added Rails.backtrace_cleaner as an accessor for the
Rails::BacktraceCleaner instance used by the framework to cut down
on backtrace noise and config/initializers/backtrace_silencers.rb to
add your own (or turn them all off) [David Heinemeier Hansson]
* Switch from Test::Unit::TestCase to ActiveSupport::TestCase. [Jeremy Kemper]
* Added config.i18n settings gatherer to config/environment,
auto-loading of all locales in config/locales/*.rb,yml, and
config/locales/en.yml as a sample locale [David Heinemeier Hansson]
* BACKWARDS INCOMPATIBLE: Renamed application.rb to
application_controller.rb and removed all the special casing that
was in place to support the former. You must do this rename in your
own application when you upgrade to this version [David Heinemeier
Hansson]
* Fixed plugin generator so that generated unit tests would subclass
ActiveSupport::TestCase, also introduced a helper script to reduce
the needed require statements #1137 [Mathias Meyer]
* Update Prototype to 1.6.0.3 [sam]
* Fixed that sqlite would report "db/development.sqlite3 already
exists" whether true or not on db:create #614 [Antonio Cangiano]
* Added config.threadsafe! to toggle allow concurrency settings and
disable the dependency loader [Josh Peek]
* Turn cache_classes on by default [Josh Peek]
* Added configurable eager load paths. Defaults to app/models,
app/controllers, and app/helpers [Josh Peek]
* Introduce simple internationalization support. [Ruby i18n team]
* Make script/plugin install <plugin> -r <revision> option work with
git based plugins. #257. [Tim Pope Jakub Kuźma]. Example:
* Added Rails.initialized? flag [Josh Peek]
* Make rake test:uncommitted work with Git. [Tim Pope]
* Added Thin support to script/server. #488 [Bob Klosinski]
* 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]
* Changed all generated tests to use the test/do declaration style
[David Heinemeier Hansson]
* Wrapped Rails.env in StringInquirer so you can do
Rails.env.development? [David Heinemeier Hansson]
* Fixed that RailsInfoController wasn't considering all requests local
in development mode (Edgard Castro) [#310 state:resolved]
Diffstat (limited to 'www')
-rw-r--r-- | www/rails/Makefile | 22 | ||||
-rw-r--r-- | www/rails/PLIST | 68 | ||||
-rw-r--r-- | www/rails/distinfo | 8 | ||||
-rw-r--r-- | www/ruby-actionpack/Makefile | 6 | ||||
-rw-r--r-- | www/ruby-actionpack/PLIST | 195 | ||||
-rw-r--r-- | www/ruby-actionpack/distinfo | 8 | ||||
-rw-r--r-- | www/ruby-activeresource/Makefile | 6 | ||||
-rw-r--r-- | www/ruby-activeresource/distinfo | 8 |
8 files changed, 237 insertions, 84 deletions
diff --git a/www/rails/Makefile b/www/rails/Makefile index c0aef09b5d4..f227641063c 100644 --- a/www/rails/Makefile +++ b/www/rails/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2008/09/21 21:54:01 minskim Exp $ +# $NetBSD: Makefile,v 1.15 2009/04/07 17:13:27 minskim Exp $ -DISTNAME= rails-2.1.1 -PKGREVISION= 1 +DISTNAME= rails-2.3.2 CATEGORIES= www MAINTAINER= minskim@NetBSD.org @@ -9,16 +8,15 @@ 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 +DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.3.2:../../devel/ruby-activesupport +DEPENDS+= ${RUBY_PKGPREFIX}-activerecord>=2.3.2:../../databases/ruby-activerecord +DEPENDS+= ${RUBY_PKGPREFIX}-activeresource>=2.3.2:../../www/ruby-activeresource +DEPENDS+= ${RUBY_PKGPREFIX}-actionpack>=2.3.2:../../www/ruby-actionpack +DEPENDS+= ${RUBY_PKGPREFIX}-actionmailer>=2.3.2:../../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 +REPLACE_RUBY= bin/about bin/console bin/dbconsole bin/destroy \ + bin/generate bin/performance/benchmarker \ + bin/performance/profiler bin/plugin bin/runner bin/server .include "../../misc/rubygems/rubygem.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/rails/PLIST b/www/rails/PLIST index 6f50fa8cf0f..c93c806140c 100644 --- a/www/rails/PLIST +++ b/www/rails/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2008/06/20 04:35:36 minskim Exp $ +@comment $NetBSD: PLIST,v 1.7 2009/04/07 17:13:27 minskim Exp $ bin/rails ${GEM_HOME}/cache/rails-${PKGVERSION}.gem ${GEM_LIBDIR}/CHANGELOG @@ -12,11 +12,7 @@ ${GEM_LIBDIR}/bin/destroy ${GEM_LIBDIR}/bin/generate ${GEM_LIBDIR}/bin/performance/benchmarker ${GEM_LIBDIR}/bin/performance/profiler -${GEM_LIBDIR}/bin/performance/request ${GEM_LIBDIR}/bin/plugin -${GEM_LIBDIR}/bin/process/inspector -${GEM_LIBDIR}/bin/process/reaper -${GEM_LIBDIR}/bin/process/spawner ${GEM_LIBDIR}/bin/rails ${GEM_LIBDIR}/bin/runner ${GEM_LIBDIR}/bin/server @@ -24,19 +20,22 @@ ${GEM_LIBDIR}/builtin/rails_info/rails/info.rb ${GEM_LIBDIR}/builtin/rails_info/rails/info_controller.rb ${GEM_LIBDIR}/builtin/rails_info/rails/info_helper.rb ${GEM_LIBDIR}/builtin/rails_info/rails_info_controller.rb -${GEM_LIBDIR}/configs/apache.conf ${GEM_LIBDIR}/configs/databases/frontbase.yml +${GEM_LIBDIR}/configs/databases/ibm_db.yml ${GEM_LIBDIR}/configs/databases/mysql.yml ${GEM_LIBDIR}/configs/databases/oracle.yml ${GEM_LIBDIR}/configs/databases/postgresql.yml ${GEM_LIBDIR}/configs/databases/sqlite2.yml ${GEM_LIBDIR}/configs/databases/sqlite3.yml ${GEM_LIBDIR}/configs/empty.log +${GEM_LIBDIR}/configs/initializers/backtrace_silencers.rb ${GEM_LIBDIR}/configs/initializers/inflections.rb ${GEM_LIBDIR}/configs/initializers/mime_types.rb ${GEM_LIBDIR}/configs/initializers/new_rails_defaults.rb -${GEM_LIBDIR}/configs/lighttpd.conf +${GEM_LIBDIR}/configs/initializers/session_store.rb +${GEM_LIBDIR}/configs/locales/en.yml ${GEM_LIBDIR}/configs/routes.rb +${GEM_LIBDIR}/dispatches/config.ru ${GEM_LIBDIR}/dispatches/dispatch.fcgi ${GEM_LIBDIR}/dispatches/dispatch.rb ${GEM_LIBDIR}/dispatches/gateway.cgi @@ -47,8 +46,9 @@ ${GEM_LIBDIR}/environments/environment.rb ${GEM_LIBDIR}/environments/production.rb ${GEM_LIBDIR}/environments/test.rb ${GEM_LIBDIR}/fresh_rakefile -${GEM_LIBDIR}/helpers/application.rb +${GEM_LIBDIR}/helpers/application_controller.rb ${GEM_LIBDIR}/helpers/application_helper.rb +${GEM_LIBDIR}/helpers/performance_test.rb ${GEM_LIBDIR}/helpers/test_helper.rb ${GEM_LIBDIR}/html/404.html ${GEM_LIBDIR}/html/422.html @@ -73,19 +73,9 @@ ${GEM_LIBDIR}/lib/commands/ncgi/listener ${GEM_LIBDIR}/lib/commands/ncgi/tracker ${GEM_LIBDIR}/lib/commands/performance/benchmarker.rb ${GEM_LIBDIR}/lib/commands/performance/profiler.rb -${GEM_LIBDIR}/lib/commands/performance/request.rb ${GEM_LIBDIR}/lib/commands/plugin.rb -${GEM_LIBDIR}/lib/commands/process/inspector.rb -${GEM_LIBDIR}/lib/commands/process/reaper.rb -${GEM_LIBDIR}/lib/commands/process/spawner.rb -${GEM_LIBDIR}/lib/commands/process/spinner.rb ${GEM_LIBDIR}/lib/commands/runner.rb ${GEM_LIBDIR}/lib/commands/server.rb -${GEM_LIBDIR}/lib/commands/servers/base.rb -${GEM_LIBDIR}/lib/commands/servers/lighttpd.rb -${GEM_LIBDIR}/lib/commands/servers/mongrel.rb -${GEM_LIBDIR}/lib/commands/servers/new_mongrel.rb -${GEM_LIBDIR}/lib/commands/servers/webrick.rb ${GEM_LIBDIR}/lib/commands/update.rb ${GEM_LIBDIR}/lib/console_app.rb ${GEM_LIBDIR}/lib/console_sandbox.rb @@ -93,13 +83,19 @@ ${GEM_LIBDIR}/lib/console_with_helpers.rb ${GEM_LIBDIR}/lib/dispatcher.rb ${GEM_LIBDIR}/lib/fcgi_handler.rb ${GEM_LIBDIR}/lib/initializer.rb +${GEM_LIBDIR}/lib/performance_test_help.rb +${GEM_LIBDIR}/lib/rails/backtrace_cleaner.rb ${GEM_LIBDIR}/lib/rails/gem_builder.rb ${GEM_LIBDIR}/lib/rails/gem_dependency.rb -${GEM_LIBDIR}/lib/rails/mongrel_server/commands.rb -${GEM_LIBDIR}/lib/rails/mongrel_server/handler.rb ${GEM_LIBDIR}/lib/rails/plugin.rb ${GEM_LIBDIR}/lib/rails/plugin/loader.rb ${GEM_LIBDIR}/lib/rails/plugin/locator.rb +${GEM_LIBDIR}/lib/rails/rack.rb +${GEM_LIBDIR}/lib/rails/rack/debugger.rb +${GEM_LIBDIR}/lib/rails/rack/log_tailer.rb +${GEM_LIBDIR}/lib/rails/rack/metal.rb +${GEM_LIBDIR}/lib/rails/rack/static.rb +${GEM_LIBDIR}/lib/rails/vendor_gem_source_index.rb ${GEM_LIBDIR}/lib/rails/version.rb ${GEM_LIBDIR}/lib/rails_generator.rb ${GEM_LIBDIR}/lib/rails_generator/base.rb @@ -107,12 +103,21 @@ ${GEM_LIBDIR}/lib/rails_generator/commands.rb ${GEM_LIBDIR}/lib/rails_generator/generated_attribute.rb ${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/app_generator.rb +${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/scm/git.rb +${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/scm/scm.rb +${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/scm/svn.rb +${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/template_runner.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/controller_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates/controller.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates/functional_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates/helper.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates/helper_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates/view.html.erb +${GEM_LIBDIR}/lib/rails_generator/generators/components/helper/USAGE +${GEM_LIBDIR}/lib/rails_generator/generators/components/helper/helper_generator.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/helper/templates/helper.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/helper/templates/helper_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/integration_test/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb @@ -124,6 +129,9 @@ ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer/templates/mailer. ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer/templates/unit_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer/templates/view.erb ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer/templates/view.rhtml +${GEM_LIBDIR}/lib/rails_generator/generators/components/metal/USAGE +${GEM_LIBDIR}/lib/rails_generator/generators/components/metal/metal_generator.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/metal/templates/metal.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/migration/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/migration/migration_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/migration/templates/migration.rb @@ -137,6 +145,9 @@ ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer/observer_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer/templates/observer.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer/templates/unit_test.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/performance_test/USAGE +${GEM_LIBDIR}/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/plugin_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE @@ -148,6 +159,7 @@ ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/init.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/install.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/plugin.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/tasks.rake +${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/test_helper.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/uninstall.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates/unit_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/USAGE @@ -155,11 +167,13 @@ ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/resource_genera ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/templates/controller.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/templates/functional_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/templates/helper.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/resource/templates/helper_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/USAGE ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/controller.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/helper.rb +${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/style.css ${GEM_LIBDIR}/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb @@ -189,6 +203,7 @@ ${GEM_LIBDIR}/lib/tasks/documentation.rake ${GEM_LIBDIR}/lib/tasks/framework.rake ${GEM_LIBDIR}/lib/tasks/gems.rake ${GEM_LIBDIR}/lib/tasks/log.rake +${GEM_LIBDIR}/lib/tasks/middleware.rake ${GEM_LIBDIR}/lib/tasks/misc.rake ${GEM_LIBDIR}/lib/tasks/rails.rb ${GEM_LIBDIR}/lib/tasks/routes.rake @@ -208,28 +223,33 @@ ${GEM_HOME}/specifications/rails-${PKGVERSION}.gemspec @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/resource @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/plugin +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/performance_test/templates +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/performance_test @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/observer @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/model/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/model @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/migration/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/migration +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/metal/templates +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/metal @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/mailer @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/integration_test/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/integration_test +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/helper/templates +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/helper @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller/templates @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components/controller @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/components +@dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/applications/app/scm @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/applications/app @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators/applications @dirrm ${GEM_LIBDIR}/lib/rails_generator/generators @dirrm ${GEM_LIBDIR}/lib/rails_generator +@dirrm ${GEM_LIBDIR}/lib/rails/rack @dirrm ${GEM_LIBDIR}/lib/rails/plugin -@dirrm ${GEM_LIBDIR}/lib/rails/mongrel_server @dirrm ${GEM_LIBDIR}/lib/rails -@dirrm ${GEM_LIBDIR}/lib/commands/servers -@dirrm ${GEM_LIBDIR}/lib/commands/process @dirrm ${GEM_LIBDIR}/lib/commands/performance @dirrm ${GEM_LIBDIR}/lib/commands/ncgi @dirrm ${GEM_LIBDIR}/lib/commands @@ -241,13 +261,13 @@ ${GEM_HOME}/specifications/rails-${PKGVERSION}.gemspec @dirrm ${GEM_LIBDIR}/environments @dirrm ${GEM_LIBDIR}/doc @dirrm ${GEM_LIBDIR}/dispatches +@dirrm ${GEM_LIBDIR}/configs/locales @dirrm ${GEM_LIBDIR}/configs/initializers @dirrm ${GEM_LIBDIR}/configs/databases @dirrm ${GEM_LIBDIR}/configs @dirrm ${GEM_LIBDIR}/builtin/rails_info/rails @dirrm ${GEM_LIBDIR}/builtin/rails_info @dirrm ${GEM_LIBDIR}/builtin -@dirrm ${GEM_LIBDIR}/bin/process @dirrm ${GEM_LIBDIR}/bin/performance @dirrm ${GEM_LIBDIR}/bin @dirrm ${GEM_LIBDIR} diff --git a/www/rails/distinfo b/www/rails/distinfo index 0180d579976..be39a8189c5 100644 --- a/www/rails/distinfo +++ b/www/rails/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2008/09/15 05:58:42 minskim Exp $ +$NetBSD: distinfo,v 1.11 2009/04/07 17:13:27 minskim Exp $ -SHA1 (rails-2.1.1.gem) = df16906481cd5602ff62df61254f28ab7e485882 -RMD160 (rails-2.1.1.gem) = 68f05b543dd67a1efcfb0e7834395b689d67383d -Size (rails-2.1.1.gem) = 205312 bytes +SHA1 (rails-2.3.2.gem) = fb9ca2cbafd3e79ab29cbf4dfced25d7fe114646 +RMD160 (rails-2.3.2.gem) = fc6df1e55640fb99510dcddec78843bff044b049 +Size (rails-2.3.2.gem) = 209920 bytes diff --git a/www/ruby-actionpack/Makefile b/www/ruby-actionpack/Makefile index ee44cae1fa5..bb86c628cb9 100644 --- a/www/ruby-actionpack/Makefile +++ b/www/ruby-actionpack/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2008/09/15 05:50:42 minskim Exp $ +# $NetBSD: Makefile,v 1.15 2009/04/07 17:13:27 minskim Exp $ -DISTNAME= actionpack-2.1.1 +DISTNAME= actionpack-2.3.2 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} CATEGORIES= www @@ -8,7 +8,7 @@ MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://rubyforge.org/projects/actionpack/ COMMENT= Two-step approach to web response generation -DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.1.1:../../devel/ruby-activesupport +DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.3.2:../../devel/ruby-activesupport .include "../../misc/rubygems/rubygem.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/ruby-actionpack/PLIST b/www/ruby-actionpack/PLIST index 8bfe65b13e2..14ae028a268 100644 --- a/www/ruby-actionpack/PLIST +++ b/www/ruby-actionpack/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2008/09/15 05:50:42 minskim Exp $ +@comment $NetBSD: PLIST,v 1.15 2009/04/07 17:13:27 minskim Exp $ ${GEM_HOME}/cache/actionpack-${PKGVERSION}.gem ${GEM_LIBDIR}/CHANGELOG ${GEM_LIBDIR}/MIT-LICENSE @@ -7,7 +7,6 @@ ${GEM_LIBDIR}/RUNNING_UNIT_TESTS ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/install.rb ${GEM_LIBDIR}/lib/action_controller.rb -${GEM_LIBDIR}/lib/action_controller/assertions.rb ${GEM_LIBDIR}/lib/action_controller/assertions/dom_assertions.rb ${GEM_LIBDIR}/lib/action_controller/assertions/model_assertions.rb ${GEM_LIBDIR}/lib/action_controller/assertions/response_assertions.rb @@ -20,17 +19,15 @@ ${GEM_LIBDIR}/lib/action_controller/caching.rb ${GEM_LIBDIR}/lib/action_controller/caching/actions.rb ${GEM_LIBDIR}/lib/action_controller/caching/fragments.rb ${GEM_LIBDIR}/lib/action_controller/caching/pages.rb -${GEM_LIBDIR}/lib/action_controller/caching/sql_cache.rb ${GEM_LIBDIR}/lib/action_controller/caching/sweeping.rb ${GEM_LIBDIR}/lib/action_controller/cgi_ext.rb ${GEM_LIBDIR}/lib/action_controller/cgi_ext/cookie.rb ${GEM_LIBDIR}/lib/action_controller/cgi_ext/query_extension.rb -${GEM_LIBDIR}/lib/action_controller/cgi_ext/session.rb ${GEM_LIBDIR}/lib/action_controller/cgi_ext/stdinput.rb ${GEM_LIBDIR}/lib/action_controller/cgi_process.rb -${GEM_LIBDIR}/lib/action_controller/components.rb ${GEM_LIBDIR}/lib/action_controller/cookies.rb ${GEM_LIBDIR}/lib/action_controller/dispatcher.rb +${GEM_LIBDIR}/lib/action_controller/failsafe.rb ${GEM_LIBDIR}/lib/action_controller/filters.rb ${GEM_LIBDIR}/lib/action_controller/flash.rb ${GEM_LIBDIR}/lib/action_controller/headers.rb @@ -38,17 +35,22 @@ ${GEM_LIBDIR}/lib/action_controller/helpers.rb ${GEM_LIBDIR}/lib/action_controller/http_authentication.rb ${GEM_LIBDIR}/lib/action_controller/integration.rb ${GEM_LIBDIR}/lib/action_controller/layout.rb +${GEM_LIBDIR}/lib/action_controller/middleware_stack.rb +${GEM_LIBDIR}/lib/action_controller/middlewares.rb ${GEM_LIBDIR}/lib/action_controller/mime_responds.rb ${GEM_LIBDIR}/lib/action_controller/mime_type.rb ${GEM_LIBDIR}/lib/action_controller/mime_types.rb +${GEM_LIBDIR}/lib/action_controller/params_parser.rb +${GEM_LIBDIR}/lib/action_controller/performance_test.rb ${GEM_LIBDIR}/lib/action_controller/polymorphic_routes.rb ${GEM_LIBDIR}/lib/action_controller/record_identifier.rb +${GEM_LIBDIR}/lib/action_controller/reloader.rb ${GEM_LIBDIR}/lib/action_controller/request.rb ${GEM_LIBDIR}/lib/action_controller/request_forgery_protection.rb -${GEM_LIBDIR}/lib/action_controller/request_profiler.rb ${GEM_LIBDIR}/lib/action_controller/rescue.rb ${GEM_LIBDIR}/lib/action_controller/resources.rb ${GEM_LIBDIR}/lib/action_controller/response.rb +${GEM_LIBDIR}/lib/action_controller/rewindable_input.rb ${GEM_LIBDIR}/lib/action_controller/routing.rb ${GEM_LIBDIR}/lib/action_controller/routing/builder.rb ${GEM_LIBDIR}/lib/action_controller/routing/optimisations.rb @@ -57,10 +59,8 @@ ${GEM_LIBDIR}/lib/action_controller/routing/route.rb ${GEM_LIBDIR}/lib/action_controller/routing/route_set.rb ${GEM_LIBDIR}/lib/action_controller/routing/routing_ext.rb ${GEM_LIBDIR}/lib/action_controller/routing/segments.rb -${GEM_LIBDIR}/lib/action_controller/session/active_record_store.rb +${GEM_LIBDIR}/lib/action_controller/session/abstract_store.rb ${GEM_LIBDIR}/lib/action_controller/session/cookie_store.rb -${GEM_LIBDIR}/lib/action_controller/session/drb_server.rb -${GEM_LIBDIR}/lib/action_controller/session/drb_store.rb ${GEM_LIBDIR}/lib/action_controller/session/mem_cache_store.rb ${GEM_LIBDIR}/lib/action_controller/session_management.rb ${GEM_LIBDIR}/lib/action_controller/status_codes.rb @@ -75,18 +75,73 @@ ${GEM_LIBDIR}/lib/action_controller/templates/rescues/template_error.erb ${GEM_LIBDIR}/lib/action_controller/templates/rescues/unknown_action.erb ${GEM_LIBDIR}/lib/action_controller/test_case.rb ${GEM_LIBDIR}/lib/action_controller/test_process.rb +${GEM_LIBDIR}/lib/action_controller/translation.rb +${GEM_LIBDIR}/lib/action_controller/uploaded_file.rb ${GEM_LIBDIR}/lib/action_controller/url_rewriter.rb +${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/document.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/node.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/sanitizer.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/selector.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/tokenizer.rb ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/version.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/adapter/camping.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/abstract/handler.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/abstract/request.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/basic.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/digest/md5.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/digest/nonce.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/digest/params.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/digest/request.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/openid.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/builder.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/cascade.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/chunked.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/commonlogger.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/conditionalget.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/content_length.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/content_type.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/deflater.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/directory.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/file.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/cgi.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/evented_mongrel.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/fastcgi.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/lsws.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/mongrel.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/scgi.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/swiftiplied_mongrel.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/thin.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler/webrick.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/head.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/lint.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/lobster.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/lock.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/methodoverride.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/mime.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/mock.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/recursive.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/reloader.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/request.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/response.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session/abstract/id.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session/cookie.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session/memcache.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session/pool.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/showexceptions.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/showstatus.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/static.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/urlmap.rb +${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/utils.rb ${GEM_LIBDIR}/lib/action_controller/verification.rb ${GEM_LIBDIR}/lib/action_pack.rb ${GEM_LIBDIR}/lib/action_pack/version.rb ${GEM_LIBDIR}/lib/action_view.rb ${GEM_LIBDIR}/lib/action_view/base.rb +${GEM_LIBDIR}/lib/action_view/erb/util.rb +${GEM_LIBDIR}/lib/action_view/helpers.rb ${GEM_LIBDIR}/lib/action_view/helpers/active_record_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/atom_feed_helper.rb @@ -99,10 +154,6 @@ ${GEM_LIBDIR}/lib/action_view/helpers/form_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/form_options_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/form_tag_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/javascript_helper.rb -${GEM_LIBDIR}/lib/action_view/helpers/javascripts/controls.js -${GEM_LIBDIR}/lib/action_view/helpers/javascripts/dragdrop.js -${GEM_LIBDIR}/lib/action_view/helpers/javascripts/effects.js -${GEM_LIBDIR}/lib/action_view/helpers/javascripts/prototype.js ${GEM_LIBDIR}/lib/action_view/helpers/number_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/prototype_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/record_identification_helper.rb @@ -111,16 +162,20 @@ ${GEM_LIBDIR}/lib/action_view/helpers/sanitize_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/scriptaculous_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/tag_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/text_helper.rb +${GEM_LIBDIR}/lib/action_view/helpers/translation_helper.rb ${GEM_LIBDIR}/lib/action_view/helpers/url_helper.rb ${GEM_LIBDIR}/lib/action_view/inline_template.rb -${GEM_LIBDIR}/lib/action_view/partial_template.rb +${GEM_LIBDIR}/lib/action_view/locale/en.yml ${GEM_LIBDIR}/lib/action_view/partials.rb +${GEM_LIBDIR}/lib/action_view/paths.rb +${GEM_LIBDIR}/lib/action_view/reloadable_template.rb +${GEM_LIBDIR}/lib/action_view/renderable.rb +${GEM_LIBDIR}/lib/action_view/renderable_partial.rb ${GEM_LIBDIR}/lib/action_view/template.rb ${GEM_LIBDIR}/lib/action_view/template_error.rb -${GEM_LIBDIR}/lib/action_view/template_finder.rb ${GEM_LIBDIR}/lib/action_view/template_handler.rb +${GEM_LIBDIR}/lib/action_view/template_handlers.rb ${GEM_LIBDIR}/lib/action_view/template_handlers/builder.rb -${GEM_LIBDIR}/lib/action_view/template_handlers/compilable.rb ${GEM_LIBDIR}/lib/action_view/template_handlers/erb.rb ${GEM_LIBDIR}/lib/action_view/template_handlers/rjs.rb ${GEM_LIBDIR}/lib/action_view/test_case.rb @@ -137,14 +192,11 @@ ${GEM_LIBDIR}/test/controller/base_test.rb ${GEM_LIBDIR}/test/controller/benchmark_test.rb ${GEM_LIBDIR}/test/controller/caching_test.rb ${GEM_LIBDIR}/test/controller/capture_test.rb -${GEM_LIBDIR}/test/controller/cgi_test.rb -${GEM_LIBDIR}/test/controller/components_test.rb ${GEM_LIBDIR}/test/controller/content_type_test.rb ${GEM_LIBDIR}/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb ${GEM_LIBDIR}/test/controller/controller_fixtures/app/controllers/user_controller.rb ${GEM_LIBDIR}/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb ${GEM_LIBDIR}/test/controller/cookie_test.rb -${GEM_LIBDIR}/test/controller/custom_handler_test.rb ${GEM_LIBDIR}/test/controller/deprecation/deprecated_base_methods_test.rb ${GEM_LIBDIR}/test/controller/dispatcher_test.rb ${GEM_LIBDIR}/test/controller/fake_controllers.rb @@ -154,23 +206,31 @@ ${GEM_LIBDIR}/test/controller/filters_test.rb ${GEM_LIBDIR}/test/controller/flash_test.rb ${GEM_LIBDIR}/test/controller/header_test.rb ${GEM_LIBDIR}/test/controller/helper_test.rb +${GEM_LIBDIR}/test/controller/html-scanner/cdata_node_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/document_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/node_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/sanitizer_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/tag_node_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/text_node_test.rb ${GEM_LIBDIR}/test/controller/html-scanner/tokenizer_test.rb -${GEM_LIBDIR}/test/controller/http_authentication_test.rb +${GEM_LIBDIR}/test/controller/http_basic_authentication_test.rb +${GEM_LIBDIR}/test/controller/http_digest_authentication_test.rb ${GEM_LIBDIR}/test/controller/integration_test.rb -${GEM_LIBDIR}/test/controller/integration_upload_test.rb ${GEM_LIBDIR}/test/controller/layout_test.rb +${GEM_LIBDIR}/test/controller/logging_test.rb +${GEM_LIBDIR}/test/controller/middleware_stack_test.rb ${GEM_LIBDIR}/test/controller/mime_responds_test.rb ${GEM_LIBDIR}/test/controller/mime_type_test.rb -${GEM_LIBDIR}/test/controller/new_render_test.rb ${GEM_LIBDIR}/test/controller/polymorphic_routes_test.rb +${GEM_LIBDIR}/test/controller/rack_test.rb ${GEM_LIBDIR}/test/controller/record_identifier_test.rb ${GEM_LIBDIR}/test/controller/redirect_test.rb ${GEM_LIBDIR}/test/controller/render_test.rb +${GEM_LIBDIR}/test/controller/request/json_params_parsing_test.rb +${GEM_LIBDIR}/test/controller/request/multipart_params_parsing_test.rb +${GEM_LIBDIR}/test/controller/request/query_string_parsing_test.rb +${GEM_LIBDIR}/test/controller/request/url_encoded_params_parsing_test.rb +${GEM_LIBDIR}/test/controller/request/xml_params_parsing_test.rb ${GEM_LIBDIR}/test/controller/request_forgery_protection_test.rb ${GEM_LIBDIR}/test/controller/request_test.rb ${GEM_LIBDIR}/test/controller/rescue_test.rb @@ -180,14 +240,17 @@ ${GEM_LIBDIR}/test/controller/selector_test.rb ${GEM_LIBDIR}/test/controller/send_file_test.rb ${GEM_LIBDIR}/test/controller/session/cookie_store_test.rb ${GEM_LIBDIR}/test/controller/session/mem_cache_store_test.rb -${GEM_LIBDIR}/test/controller/session_fixation_test.rb -${GEM_LIBDIR}/test/controller/session_management_test.rb +${GEM_LIBDIR}/test/controller/session/test_session_test.rb ${GEM_LIBDIR}/test/controller/test_test.rb +${GEM_LIBDIR}/test/controller/translation_test.rb ${GEM_LIBDIR}/test/controller/url_rewriter_test.rb ${GEM_LIBDIR}/test/controller/verification_test.rb ${GEM_LIBDIR}/test/controller/view_paths_test.rb ${GEM_LIBDIR}/test/controller/webservice_test.rb +${GEM_LIBDIR}/test/fixtures/_top_level_partial.html.erb +${GEM_LIBDIR}/test/fixtures/_top_level_partial_only.erb ${GEM_LIBDIR}/test/fixtures/addresses/list.erb +${GEM_LIBDIR}/test/fixtures/alternate_helpers/foo_helper.rb ${GEM_LIBDIR}/test/fixtures/bad_customers/_bad_customer.html.erb ${GEM_LIBDIR}/test/fixtures/companies.yml ${GEM_LIBDIR}/test/fixtures/company.rb @@ -199,28 +262,39 @@ ${GEM_LIBDIR}/test/fixtures/customers/_customer.html.erb ${GEM_LIBDIR}/test/fixtures/db_definitions/sqlite.sql ${GEM_LIBDIR}/test/fixtures/developer.rb ${GEM_LIBDIR}/test/fixtures/developers.yml +${GEM_LIBDIR}/test/fixtures/developers/_developer.erb ${GEM_LIBDIR}/test/fixtures/developers_projects.yml +${GEM_LIBDIR}/test/fixtures/fun/games/_game.erb ${GEM_LIBDIR}/test/fixtures/fun/games/hello_world.erb +${GEM_LIBDIR}/test/fixtures/fun/serious/games/_game.erb ${GEM_LIBDIR}/test/fixtures/functional_caching/_partial.erb +${GEM_LIBDIR}/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +${GEM_LIBDIR}/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +${GEM_LIBDIR}/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder ${GEM_LIBDIR}/test/fixtures/functional_caching/fragment_cached.html.erb ${GEM_LIBDIR}/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +${GEM_LIBDIR}/test/fixtures/functional_caching/inline_fragment_cached.html.erb ${GEM_LIBDIR}/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs ${GEM_LIBDIR}/test/fixtures/good_customers/_good_customer.html.erb ${GEM_LIBDIR}/test/fixtures/helpers/abc_helper.rb ${GEM_LIBDIR}/test/fixtures/helpers/fun/games_helper.rb ${GEM_LIBDIR}/test/fixtures/helpers/fun/pdf_helper.rb ${GEM_LIBDIR}/test/fixtures/layout_tests/alt/hello.rhtml +${GEM_LIBDIR}/test/fixtures/layout_tests/alt/layouts/alt.rhtml ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/item.rhtml ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/layout_test.rhtml ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/third_party_template_library.mab ${GEM_LIBDIR}/test/fixtures/layout_tests/views/hello.rhtml +${GEM_LIBDIR}/test/fixtures/layouts/_column.html.erb ${GEM_LIBDIR}/test/fixtures/layouts/block_with_layout.erb ${GEM_LIBDIR}/test/fixtures/layouts/builder.builder +${GEM_LIBDIR}/test/fixtures/layouts/default_html.html.erb ${GEM_LIBDIR}/test/fixtures/layouts/partial_with_layout.erb ${GEM_LIBDIR}/test/fixtures/layouts/standard.erb ${GEM_LIBDIR}/test/fixtures/layouts/talk_from_action.erb +${GEM_LIBDIR}/test/fixtures/layouts/xhr.html.erb ${GEM_LIBDIR}/test/fixtures/layouts/yield.erb ${GEM_LIBDIR}/test/fixtures/mascot.rb ${GEM_LIBDIR}/test/fixtures/mascots.yml @@ -228,9 +302,12 @@ ${GEM_LIBDIR}/test/fixtures/mascots/_mascot.html.erb ${GEM_LIBDIR}/test/fixtures/multipart/binary_file ${GEM_LIBDIR}/test/fixtures/multipart/boundary_problem_file ${GEM_LIBDIR}/test/fixtures/multipart/bracketed_param +${GEM_LIBDIR}/test/fixtures/multipart/empty +${GEM_LIBDIR}/test/fixtures/multipart/hello.txt ${GEM_LIBDIR}/test/fixtures/multipart/large_text_file ${GEM_LIBDIR}/test/fixtures/multipart/mixed_files ${GEM_LIBDIR}/test/fixtures/multipart/mona_lisa.jpg +${GEM_LIBDIR}/test/fixtures/multipart/none ${GEM_LIBDIR}/test/fixtures/multipart/single_parameter ${GEM_LIBDIR}/test/fixtures/multipart/text_file ${GEM_LIBDIR}/test/fixtures/override/test/hello_world.erb @@ -243,7 +320,9 @@ ${GEM_LIBDIR}/test/fixtures/post_test/super_post/index.html.erb ${GEM_LIBDIR}/test/fixtures/post_test/super_post/index.iphone.erb ${GEM_LIBDIR}/test/fixtures/project.rb ${GEM_LIBDIR}/test/fixtures/projects.yml +${GEM_LIBDIR}/test/fixtures/projects/_project.erb ${GEM_LIBDIR}/test/fixtures/public/404.html +${GEM_LIBDIR}/test/fixtures/public/500.da.html ${GEM_LIBDIR}/test/fixtures/public/500.html ${GEM_LIBDIR}/test/fixtures/public/images/rails.png ${GEM_LIBDIR}/test/fixtures/public/javascripts/application.js @@ -253,11 +332,15 @@ ${GEM_LIBDIR}/test/fixtures/public/javascripts/dragdrop.js ${GEM_LIBDIR}/test/fixtures/public/javascripts/effects.js ${GEM_LIBDIR}/test/fixtures/public/javascripts/prototype.js ${GEM_LIBDIR}/test/fixtures/public/javascripts/robber.js +${GEM_LIBDIR}/test/fixtures/public/javascripts/subdir/subdir.js ${GEM_LIBDIR}/test/fixtures/public/javascripts/version.1.0.js ${GEM_LIBDIR}/test/fixtures/public/stylesheets/bank.css ${GEM_LIBDIR}/test/fixtures/public/stylesheets/robber.css +${GEM_LIBDIR}/test/fixtures/public/stylesheets/subdir/subdir.css ${GEM_LIBDIR}/test/fixtures/public/stylesheets/version.1.0.css +${GEM_LIBDIR}/test/fixtures/quiz/questions/_question.html.erb ${GEM_LIBDIR}/test/fixtures/replies.yml +${GEM_LIBDIR}/test/fixtures/replies/_reply.erb ${GEM_LIBDIR}/test/fixtures/reply.rb ${GEM_LIBDIR}/test/fixtures/respond_to/all_types_with_layout.html.erb ${GEM_LIBDIR}/test/fixtures/respond_to/all_types_with_layout.js.rjs @@ -276,33 +359,39 @@ ${GEM_LIBDIR}/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder ${GEM_LIBDIR}/test/fixtures/scope/test/modgreet.erb ${GEM_LIBDIR}/test/fixtures/shared.html.erb ${GEM_LIBDIR}/test/fixtures/symlink_parent/symlinked_layout.erb +${GEM_LIBDIR}/test/fixtures/test/_counter.html.erb ${GEM_LIBDIR}/test/fixtures/test/_customer.erb ${GEM_LIBDIR}/test/fixtures/test/_customer_counter.erb ${GEM_LIBDIR}/test/fixtures/test/_customer_greeting.erb +${GEM_LIBDIR}/test/fixtures/test/_customer_with_var.erb ${GEM_LIBDIR}/test/fixtures/test/_form.erb ${GEM_LIBDIR}/test/fixtures/test/_hash_greeting.erb ${GEM_LIBDIR}/test/fixtures/test/_hash_object.erb ${GEM_LIBDIR}/test/fixtures/test/_hello.builder ${GEM_LIBDIR}/test/fixtures/test/_labelling_form.erb +${GEM_LIBDIR}/test/fixtures/test/_layout_for_block_with_args.html.erb ${GEM_LIBDIR}/test/fixtures/test/_layout_for_partial.html.erb +${GEM_LIBDIR}/test/fixtures/test/_local_inspector.html.erb +${GEM_LIBDIR}/test/fixtures/test/_one.html.erb ${GEM_LIBDIR}/test/fixtures/test/_partial.erb ${GEM_LIBDIR}/test/fixtures/test/_partial.html.erb ${GEM_LIBDIR}/test/fixtures/test/_partial.js.erb ${GEM_LIBDIR}/test/fixtures/test/_partial_for_use_in_layout.html.erb ${GEM_LIBDIR}/test/fixtures/test/_partial_only.erb +${GEM_LIBDIR}/test/fixtures/test/_partial_with_only_html_version.html.erb ${GEM_LIBDIR}/test/fixtures/test/_person.erb ${GEM_LIBDIR}/test/fixtures/test/_raise.html.erb +${GEM_LIBDIR}/test/fixtures/test/_two.html.erb ${GEM_LIBDIR}/test/fixtures/test/action_talk_to_layout.erb -${GEM_LIBDIR}/test/fixtures/test/block_content_for.erb ${GEM_LIBDIR}/test/fixtures/test/calling_partial_with_layout.html.erb ${GEM_LIBDIR}/test/fixtures/test/capturing.erb ${GEM_LIBDIR}/test/fixtures/test/content_for.erb ${GEM_LIBDIR}/test/fixtures/test/content_for_concatenated.erb ${GEM_LIBDIR}/test/fixtures/test/content_for_with_parameter.erb ${GEM_LIBDIR}/test/fixtures/test/delete_with_js.rjs +${GEM_LIBDIR}/test/fixtures/test/dont_pick_me ${GEM_LIBDIR}/test/fixtures/test/dot.directory/render_file_with_ivar.erb ${GEM_LIBDIR}/test/fixtures/test/enum_rjs_test.rjs -${GEM_LIBDIR}/test/fixtures/test/erb_content_for.erb ${GEM_LIBDIR}/test/fixtures/test/formatted_html_erb.html.erb ${GEM_LIBDIR}/test/fixtures/test/formatted_xml_erb.builder ${GEM_LIBDIR}/test/fixtures/test/formatted_xml_erb.html.erb @@ -310,49 +399,73 @@ ${GEM_LIBDIR}/test/fixtures/test/formatted_xml_erb.xml.erb ${GEM_LIBDIR}/test/fixtures/test/greeting.erb ${GEM_LIBDIR}/test/fixtures/test/greeting.js.rjs ${GEM_LIBDIR}/test/fixtures/test/hello.builder +${GEM_LIBDIR}/test/fixtures/test/hello_world.da.html.erb ${GEM_LIBDIR}/test/fixtures/test/hello_world.erb +${GEM_LIBDIR}/test/fixtures/test/hello_world.erb~ +${GEM_LIBDIR}/test/fixtures/test/hello_world.pt-BR.html.erb ${GEM_LIBDIR}/test/fixtures/test/hello_world_container.builder ${GEM_LIBDIR}/test/fixtures/test/hello_world_from_rxml.builder ${GEM_LIBDIR}/test/fixtures/test/hello_world_with_layout_false.erb ${GEM_LIBDIR}/test/fixtures/test/hello_xml_world.builder +${GEM_LIBDIR}/test/fixtures/test/hyphen-ated.erb +${GEM_LIBDIR}/test/fixtures/test/implicit_content_type.atom.builder ${GEM_LIBDIR}/test/fixtures/test/list.erb +${GEM_LIBDIR}/test/fixtures/test/malformed/malformed.en.html.erb~ +${GEM_LIBDIR}/test/fixtures/test/malformed/malformed.erb~ +${GEM_LIBDIR}/test/fixtures/test/malformed/malformed.html.erb~ +${GEM_LIBDIR}/test/fixtures/test/nested_layout.erb ${GEM_LIBDIR}/test/fixtures/test/non_erb_block_content_for.builder ${GEM_LIBDIR}/test/fixtures/test/potential_conflicts.erb +${GEM_LIBDIR}/test/fixtures/test/render_explicit_html_template.js.rjs ${GEM_LIBDIR}/test/fixtures/test/render_file_from_template.html.erb ${GEM_LIBDIR}/test/fixtures/test/render_file_with_ivar.erb ${GEM_LIBDIR}/test/fixtures/test/render_file_with_locals.erb +${GEM_LIBDIR}/test/fixtures/test/render_implicit_html_template.js.rjs +${GEM_LIBDIR}/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +${GEM_LIBDIR}/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +${GEM_LIBDIR}/test/fixtures/test/render_implicit_js_template_without_layout.js.erb ${GEM_LIBDIR}/test/fixtures/test/render_to_string_test.erb +${GEM_LIBDIR}/test/fixtures/test/sub_template_raise.html.erb +${GEM_LIBDIR}/test/fixtures/test/template.erb ${GEM_LIBDIR}/test/fixtures/test/update_element_with_capture.erb ${GEM_LIBDIR}/test/fixtures/test/using_layout_around_block.html.erb +${GEM_LIBDIR}/test/fixtures/test/using_layout_around_block_with_args.html.erb +${GEM_LIBDIR}/test/fixtures/test/utf8.html.erb ${GEM_LIBDIR}/test/fixtures/topic.rb ${GEM_LIBDIR}/test/fixtures/topics.yml ${GEM_LIBDIR}/test/fixtures/topics/_topic.html.erb +${GEM_LIBDIR}/test/template/active_record_helper_i18n_test.rb ${GEM_LIBDIR}/test/template/active_record_helper_test.rb ${GEM_LIBDIR}/test/template/asset_tag_helper_test.rb ${GEM_LIBDIR}/test/template/atom_feed_helper_test.rb ${GEM_LIBDIR}/test/template/benchmark_helper_test.rb +${GEM_LIBDIR}/test/template/compiled_templates_test.rb +${GEM_LIBDIR}/test/template/date_helper_i18n_test.rb ${GEM_LIBDIR}/test/template/date_helper_test.rb -${GEM_LIBDIR}/test/template/deprecated_erb_variable_test.rb ${GEM_LIBDIR}/test/template/erb_util_test.rb ${GEM_LIBDIR}/test/template/form_helper_test.rb ${GEM_LIBDIR}/test/template/form_options_helper_test.rb ${GEM_LIBDIR}/test/template/form_tag_helper_test.rb ${GEM_LIBDIR}/test/template/javascript_helper_test.rb +${GEM_LIBDIR}/test/template/number_helper_i18n_test.rb ${GEM_LIBDIR}/test/template/number_helper_test.rb ${GEM_LIBDIR}/test/template/prototype_helper_test.rb ${GEM_LIBDIR}/test/template/record_tag_helper_test.rb +${GEM_LIBDIR}/test/template/render_test.rb ${GEM_LIBDIR}/test/template/sanitize_helper_test.rb ${GEM_LIBDIR}/test/template/scriptaculous_helper_test.rb ${GEM_LIBDIR}/test/template/tag_helper_test.rb -${GEM_LIBDIR}/test/template/template_finder_test.rb -${GEM_LIBDIR}/test/template/template_object_test.rb ${GEM_LIBDIR}/test/template/test_test.rb ${GEM_LIBDIR}/test/template/text_helper_test.rb +${GEM_LIBDIR}/test/template/translation_helper_test.rb ${GEM_LIBDIR}/test/template/url_helper_test.rb ${GEM_LIBDIR}/test/testing_sandbox.rb +${GEM_LIBDIR}/test/view/test_case_test.rb ${GEM_HOME}/specifications/actionpack-${PKGVERSION}.gemspec +@dirrm ${GEM_LIBDIR}/test/view @dirrm ${GEM_LIBDIR}/test/template @dirrm ${GEM_LIBDIR}/test/fixtures/topics +@dirrm ${GEM_LIBDIR}/test/fixtures/test/malformed @dirrm ${GEM_LIBDIR}/test/fixtures/test/dot.directory @dirrm ${GEM_LIBDIR}/test/fixtures/test @dirrm ${GEM_LIBDIR}/test/fixtures/symlink_parent @@ -360,10 +473,16 @@ ${GEM_HOME}/specifications/actionpack-${PKGVERSION}.gemspec @dirrm ${GEM_LIBDIR}/test/fixtures/scope @dirrm ${GEM_LIBDIR}/test/fixtures/respond_to/layouts @dirrm ${GEM_LIBDIR}/test/fixtures/respond_to +@dirrm ${GEM_LIBDIR}/test/fixtures/replies +@dirrm ${GEM_LIBDIR}/test/fixtures/quiz/questions +@dirrm ${GEM_LIBDIR}/test/fixtures/quiz +@dirrm ${GEM_LIBDIR}/test/fixtures/public/stylesheets/subdir @dirrm ${GEM_LIBDIR}/test/fixtures/public/stylesheets +@dirrm ${GEM_LIBDIR}/test/fixtures/public/javascripts/subdir @dirrm ${GEM_LIBDIR}/test/fixtures/public/javascripts @dirrm ${GEM_LIBDIR}/test/fixtures/public/images @dirrm ${GEM_LIBDIR}/test/fixtures/public +@dirrm ${GEM_LIBDIR}/test/fixtures/projects @dirrm ${GEM_LIBDIR}/test/fixtures/post_test/super_post @dirrm ${GEM_LIBDIR}/test/fixtures/post_test/post @dirrm ${GEM_LIBDIR}/test/fixtures/post_test/layouts @@ -379,21 +498,27 @@ ${GEM_HOME}/specifications/actionpack-${PKGVERSION}.gemspec @dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests/views @dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts/controller_name_space @dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests/layouts +@dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests/alt/layouts @dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests/alt @dirrm ${GEM_LIBDIR}/test/fixtures/layout_tests @dirrm ${GEM_LIBDIR}/test/fixtures/helpers/fun @dirrm ${GEM_LIBDIR}/test/fixtures/helpers @dirrm ${GEM_LIBDIR}/test/fixtures/good_customers @dirrm ${GEM_LIBDIR}/test/fixtures/functional_caching +@dirrm ${GEM_LIBDIR}/test/fixtures/fun/serious/games +@dirrm ${GEM_LIBDIR}/test/fixtures/fun/serious @dirrm ${GEM_LIBDIR}/test/fixtures/fun/games @dirrm ${GEM_LIBDIR}/test/fixtures/fun +@dirrm ${GEM_LIBDIR}/test/fixtures/developers @dirrm ${GEM_LIBDIR}/test/fixtures/db_definitions @dirrm ${GEM_LIBDIR}/test/fixtures/customers @dirrm ${GEM_LIBDIR}/test/fixtures/content_type @dirrm ${GEM_LIBDIR}/test/fixtures/bad_customers +@dirrm ${GEM_LIBDIR}/test/fixtures/alternate_helpers @dirrm ${GEM_LIBDIR}/test/fixtures/addresses @dirrm ${GEM_LIBDIR}/test/fixtures @dirrm ${GEM_LIBDIR}/test/controller/session +@dirrm ${GEM_LIBDIR}/test/controller/request @dirrm ${GEM_LIBDIR}/test/controller/html-scanner @dirrm ${GEM_LIBDIR}/test/controller/deprecation @dirrm ${GEM_LIBDIR}/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib @@ -408,10 +533,20 @@ ${GEM_HOME}/specifications/actionpack-${PKGVERSION}.gemspec @dirrm ${GEM_LIBDIR}/test/activerecord @dirrm ${GEM_LIBDIR}/test @dirrm ${GEM_LIBDIR}/lib/action_view/template_handlers -@dirrm ${GEM_LIBDIR}/lib/action_view/helpers/javascripts +@dirrm ${GEM_LIBDIR}/lib/action_view/locale @dirrm ${GEM_LIBDIR}/lib/action_view/helpers +@dirrm ${GEM_LIBDIR}/lib/action_view/erb @dirrm ${GEM_LIBDIR}/lib/action_view @dirrm ${GEM_LIBDIR}/lib/action_pack +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session/abstract +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/session +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/handler +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/digest +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth/abstract +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/auth +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack/adapter +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0/rack +@dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/rack-1.0 @dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html @dirrm ${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner @dirrm ${GEM_LIBDIR}/lib/action_controller/vendor diff --git a/www/ruby-actionpack/distinfo b/www/ruby-actionpack/distinfo index 7c8f25d5a75..1619c8de209 100644 --- a/www/ruby-actionpack/distinfo +++ b/www/ruby-actionpack/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2008/09/15 05:50:42 minskim Exp $ +$NetBSD: distinfo,v 1.16 2009/04/07 17:13:27 minskim Exp $ -SHA1 (actionpack-2.1.1.gem) = 1303886d9f3c74f989bc193a9a161da22fa95df0 -RMD160 (actionpack-2.1.1.gem) = 42b646a407e8d642b0a3cee3e2197f9a355737d8 -Size (actionpack-2.1.1.gem) = 743936 bytes +SHA1 (actionpack-2.3.2.gem) = 31e9815ed5d901b6b7f618bb7140f16d1a79ebfc +RMD160 (actionpack-2.3.2.gem) = 800602f5c03b08ca8ca292cc7f82ef009c0e2160 +Size (actionpack-2.3.2.gem) = 767488 bytes SHA1 (patch-ab) = bfba841b0af9d503a71745cc8d992e9d09d94191 diff --git a/www/ruby-activeresource/Makefile b/www/ruby-activeresource/Makefile index 173d838b3fe..db2cce7d20c 100644 --- a/www/ruby-activeresource/Makefile +++ b/www/ruby-activeresource/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2008/09/15 05:43:01 minskim Exp $ +# $NetBSD: Makefile,v 1.5 2009/04/07 17:13:27 minskim Exp $ -DISTNAME= activeresource-2.1.1 +DISTNAME= activeresource-2.3.2 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} CATEGORIES= www @@ -8,7 +8,7 @@ MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://rubyforge.org/projects/activeresource/ COMMENT= Object-relational mapping for REST webservices -DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.1.1:../../devel/ruby-activesupport +DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=2.3.2:../../devel/ruby-activesupport .include "../../misc/rubygems/rubygem.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/ruby-activeresource/distinfo b/www/ruby-activeresource/distinfo index 8c385e6e525..b5af3463e97 100644 --- a/www/ruby-activeresource/distinfo +++ b/www/ruby-activeresource/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2008/09/15 05:43:01 minskim Exp $ +$NetBSD: distinfo,v 1.5 2009/04/07 17:13:27 minskim Exp $ -SHA1 (activeresource-2.1.1.gem) = 675e75c219ed657706aa5c82e1600110c301b6a4 -RMD160 (activeresource-2.1.1.gem) = 298c6ab3462516cb9c90b64624682fa8f6eb5c7e -Size (activeresource-2.1.1.gem) = 40448 bytes +SHA1 (activeresource-2.3.2.gem) = dd710ed6991e6ded1af29e72babb96aa839c5fef +RMD160 (activeresource-2.3.2.gem) = 912f55d51d3707421042f6d2add639391ab01edc +Size (activeresource-2.3.2.gem) = 41472 bytes |