apotonick / cells

Components for Rails.

This URL has Read+Write access

cells / CHANGES
100644 31 lines (25 sloc) 1.136 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
- 2.3
  * Cell::Base#new(controller, opts={})
    We got rid of the second argument cell_name, since it was completely useless.
  * when a state view couldn't be found there's no longer a warning message, but an exception.
  * moved Cell::Base to lib/cell/base.rb
  * moved Rails extension code to lib/rails_extensions.rb
  * removed all the boot code since we don't need it anymore
  
 
- trunk
  * Remove dependency on Engines
  * Improved support for helpers
 
- cells-1.0
  * view rendering rewritten, we now use a separate ActionView::Base instance
    that fixes bug #1
  * introduced view inheritance, so derived cells inherit view files from their
    superclass
  * introduced automatic view file finding, Cell::Base#path is no longer needed
  * added support for helpers in cell views
  * removed Cell::Registry in favor or a new cells autoloading mechanism
  
- zells-0.1
  * partly fixed bug #1 where cell instance variables could not be accessed
    when calling #render_cell under special circumstances
  * added lots of tests
  * tests use #assert_select now
 
- zells-0.1-rc1
  * first release into an unsuspecting world