Changeset 974
- Timestamp:
- 11/12/07 15:06:54 (1 year ago)
- Files:
-
- trunk/CHANGELOG (modified) (1 diff)
- trunk/Rakefile (modified) (1 diff)
- trunk/app_generators/merb/templates/config/router.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG
r972 r974 1 * 0.4.1 2 Fixed pluralization issues with generators 3 Resource generators are much improved 4 url() helper now supports nested resources 5 url(:post, @post) observers @post.new_record? and adjusts accordingly 6 Fixed bug with empty Accept headers 7 Added config/boot.rb to load framework from gems or framework/ dir 8 New partial() is much faster (and less buggy) 9 render :partial no longer supported 10 Add a buffered logger 11 Fixes bug with parameterized actions on some platforms 12 partial can now be called on collections: 13 partial("widget", :with => @new_widgets, :as => "widget") 14 SMTP mailer now supports non-AUTH setups 15 set_status() can take symbolic codes like :not_found 16 JRuby compat fixes 17 Speed boost, esp. with rendering 18 Fix spec_helper running against development database 19 Fix major bug with sessions not working 20 21 * 0.4.0 22 .... trunk/Rakefile
r965 r974 138 138 end 139 139 140 task :release => :package do 141 sh %{rubyforge add_release merb merb #{VERSION} pkg/#{NAME}-#{VERSION}.gem} 142 end 143 140 144 ############################################################################## 141 145 # SVN trunk/app_generators/merb/templates/config/router.rb
r744 r974 25 25 # r.resources :posts 26 26 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 28 31 r.default_routes 29 32
