Changeset 974

Show
Ignore:
Timestamp:
11/12/07 15:06:54 (1 year ago)
Author:
iv..@gweezlebur.com
Message:

Add a release task, update router note about default route, 0.4.1 changelog

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r972 r974  
     1* 0.4.1 
     2Fixed pluralization issues with generators 
     3Resource generators are much improved 
     4url() helper now supports nested resources 
     5url(:post, @post) observers @post.new_record? and adjusts accordingly 
     6Fixed bug with empty Accept headers 
     7Added config/boot.rb to load framework from gems or framework/ dir 
     8New partial() is much faster (and less buggy) 
     9render :partial no longer supported 
     10Add a buffered logger 
     11Fixes bug with parameterized actions on some platforms 
     12partial can now be called on collections: 
     13 partial("widget", :with => @new_widgets, :as => "widget") 
     14SMTP mailer now supports non-AUTH setups 
     15set_status() can take symbolic codes like :not_found 
     16JRuby compat fixes 
     17Speed boost, esp. with rendering 
     18Fix spec_helper running against development database 
     19Fix major bug with sessions not working 
     20 
     21* 0.4.0 
     22.... 
  • trunk/Rakefile

    r965 r974  
    138138end 
    139139 
     140task :release => :package do 
     141  sh %{rubyforge add_release merb merb #{VERSION} pkg/#{NAME}-#{VERSION}.gem} 
     142end 
     143 
    140144############################################################################## 
    141145# SVN 
  • trunk/app_generators/merb/templates/config/router.rb

    r744 r974  
    2525  # r.resources :posts 
    2626 
    27   # Default route, usually you don't want to change this 
     27  # This is the default route for /:controller/:action/:id 
     28  # This is fine for most cases.  If you're heavily using resource-based 
     29  # routes, you may want to comment/remove this line to prevent 
     30  # clients from calling your create or destroy actions with a GET 
    2831  r.default_routes 
    2932