2009-06-14 20:04:45 by Joerg Sonnenberger | Files touched by this commit (183) |
Log message:
Remove @dirrm entries from PLISTs
|
2009-04-07 19:13:27 by Min Sik Kim | Files touched by this commit (17) | |
Log message:
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]
|
2008-09-15 07:56:31 by Min Sik Kim | Files touched by this commit (2) |
Log message:
Update ruby-actionmailer to 2.1.1 to sync with other rails packages.
|
2008-06-20 06:33:02 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update ruby-actionmailer to 2.1.0.
Too many changes since 2.0.2. See CHANGELOG for the complete list.
pkgsrc CHANGES:
This version does not depend on ruby-tmail any longer. The dependency
should have been removed when it was switched to use rubygems.
|
2008-04-04 17:30:02 by Johnny C. Lam | Files touched by this commit (98) |
Log message:
Install as a gem using the pkgsrc rubygem.mk framework instead of
directly into site_ruby.
|
2008-02-09 07:24:57 by Min Sik Kim | Files touched by this commit (5) |
Log message:
Update ruby-actionmailer to 2.0.2.
There have been too many changes. Please see CHANGES for the complete list:
http://dev.rubyonrails.org/browser/tags/rel_2-0-2/actionmailer/CHANGELOG
|
2007-10-16 05:26:23 by Min Sik Kim | Files touched by this commit (2) |
Log message:
Update ruby-actionmailer to 1.3.5.
Changes:
* Depend on Action Pack 1.13.5
|
2007-03-17 12:14:29 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update ruby-actionmailer to 1.3.3.
Changes:
* Depend on Action Pack 1.13.3.
|
2007-02-19 01:09:05 by Min Sik Kim | Files touched by this commit (2) |
Log message:
Update ruby-actionmailer to 1.3.2.
Changes:
* Deprecate server_settings renaming it to smtp_settings, add
sendmail_settings to allow you to override the arguments to and location of
the sendmail executab le. [Koz]
|
2007-01-28 06:41:15 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Update ruby-actionmailer to 1.3.1.
Changes since 1.2.5:
* Make mime version default to 1.0.
* Make sure quoted-printable text is decoded correctly when only portions
of the text are encoded.
* Make sure DOS newlines in quoted-printable text are normalized to unix
newlines before unquoting.
* Fixed that iconv decoding should catch InvalidEncoding
* Tighten rescue clauses.
* Automatically included ActionController::UrlWriter, such that URL
generation can happen within ActionMailer controllers.
* Replace Reloadable with Reloadable::Deprecated.
* Resolve action naming collision.
* ActionMailer::Base documentation rewrite.
* Replace alias method chaining with Module#alias_method_chain.
* Replace Ruby's deprecated append_features in favor of included.
|