Next | Query returned 24 messages, browsing 1 to 10 | Previous

History of commit frequency

CVS Commit History:


   2010-12-26 16:24:52 by Takahiro Kambe | Files touched by this commit (6) | Package removed
Log message:
Remove www/rails since it moved to www/ruby-rails.
   2010-10-15 13:40:06 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update www/rails package to 2.3.10.

No change except version, it is part of Rails 2.3.10.
Change depending pattern to prevent install packages for rails3.
   2010-10-13 20:45:12 by Joerg Sonnenberger | Files touched by this commit (1)
Log message:
rake is included with Ruby 1.9
   2010-10-13 04:47:20 by OBATA Akio | Files touched by this commit (1)
Log message:
require rake>=0.8.3.

Bump PKGREVISION.
   2010-09-13 15:36:59 by Takahiro Kambe | Files touched by this commit (2)
Log message:
* Add CONFLICTS with previous package name without "${RUBY_PKGPREFIX}-".
* Fix shbang commnad of rails command.

Bump PKGREVISION.
   2010-09-10 14:51:30 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update www/rails to 2.3.9.

* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Ajust new ruby package's framework.
* Update dependency according to gemspec.

*2.3.9 (September 4, 2010)*

* Deprecates config.load_(once_)paths in favor of autolaod_(once_)paths. [fxn]

*2.3.8 (May 24, 2010)*

* Version bump.

*2.3.7 (May 24, 2010)*

* Version bump.

*2.3.6 (May 23, 2010)*

* Added config/initializers/cookie_verification_secret.rb with an auto-generated \ 
secret for using ActionController::Base#cookies.signed [DHH]

* Fixed that the debugger wouldn't go into IRB mode because of left-over ARGVs [DHH]
   2009-12-02 00:24:24 by Min Sik Kim | Files touched by this commit (14)
Log message:
Update rails packages to 2.3.5.  This fixes a cross-site scripting
vulnerability in ruby-actionpack.

Major changes:
- Improved compatibility with Ruby 1.9
- RailsXss plugin availability
- Fixes for the Nokogiri backend for XmlMini
   2009-09-13 00:14:17 by Min Sik Kim | Files touched by this commit (15)
Log message:
Update rails packages to 2.3.4.

Changes since 2.3.2:
* I18n support for plugins.
   2009-06-15 00:00:42 by Joerg Sonnenberger | Files touched by this commit (316)
Log message:
Convert @exec/@unexec to @pkgdir or drop it.
   2009-04-07 19:13:27 by Min Sik Kim | Files touched by this commit (17) | Package updated
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]

Next | Query returned 24 messages, browsing 1 to 10 | Previous