masterview_gem_pack 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +9 -0
 - data/RELEASE_NOTES +8 -1
 - data/Rakefile +0 -1
 - data/TODO +9 -0
 - metadata +7 -6
 
    
        data/CHANGELOG
    CHANGED
    
    | 
         @@ -1,3 +1,12 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            0.3.2 - February 20, 2007
         
     | 
| 
      
 2 
     | 
    
         
            +
            Fix bug in mv:attr directive where multiparam eval method like :a => #{hello 1,2} was not being parsed properly
         
     | 
| 
      
 3 
     | 
    
         
            +
            Added mv:select to alphabetical list on bottom of directives html doc page
         
     | 
| 
      
 4 
     | 
    
         
            +
            Fix incompatibility with Rails 1.2 template error - blank page on erb error
         
     | 
| 
      
 5 
     | 
    
         
            +
            Use template_changed_since? for compile checking when it is available Rails changeset 5587
         
     | 
| 
      
 6 
     | 
    
         
            +
            Added config.admin_auth_mixin allowing configurable authorization for masterview admin
         
     | 
| 
      
 7 
     | 
    
         
            +
            Change generator to use request, flash, params rather than @request, @flash, @params which are deprecated
         
     | 
| 
      
 8 
     | 
    
         
            +
            Tested with Rails 1.2.2
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
       1 
10 
     | 
    
         
             
            0.3.1 - November 20, 2006
         
     | 
| 
       2 
11 
     | 
    
         
             
            Fixed problem with deprecated/directive_base was missing registry include
         
     | 
| 
       3 
12 
     | 
    
         
             
            Update image_tag docs, indicating that it now simply passes through width and height rather than setting size
         
     | 
    
        data/RELEASE_NOTES
    CHANGED
    
    | 
         @@ -1,11 +1,18 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            = MasterView - Rails-optimized (x)html friendly template engine
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            == Recent changes (Release 0.3.2 - Maintenance release plus custom admin auth
         
     | 
| 
      
 4 
     | 
    
         
            +
            This release addresses a compatibility problem with Rails 1.2 where a view syntax
         
     | 
| 
      
 5 
     | 
    
         
            +
            error would not display the normal debug output but instead displayed only a blank
         
     | 
| 
      
 6 
     | 
    
         
            +
            screen. Also fixed a parsing problem with multiple parameters in some directives.
         
     | 
| 
      
 7 
     | 
    
         
            +
            Added the ability to use custom mixin for authorization to MasterView admin screens.
         
     | 
| 
      
 8 
     | 
    
         
            +
            Changed the MasterView generator to use request, flash, and params rather than
         
     | 
| 
      
 9 
     | 
    
         
            +
            deprecated @request, @flash, and @params. Tested with Rails 1.2.2
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       3 
11 
     | 
    
         
             
            == Recent changes (Release 0.3.1 - Maintenance release
         
     | 
| 
       4 
12 
     | 
    
         
             
            This release addresses an issue with ruby 1.8.5, fixes a problem with the
         
     | 
| 
       5 
13 
     | 
    
         
             
            deprecated/directive_base used for custom directives, updates a few out of
         
     | 
| 
       6 
14 
     | 
    
         
             
            date docs, and accomodates a change to the API of the Rails 1.2 generator
         
     | 
| 
       7 
15 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
16 
     | 
    
         
             
            == Recent changes (Release 0.3.0 - Major update - refactoring of directive API (for developing directives)
         
     | 
| 
       10 
17 
     | 
    
         
             
            The directive API for creating directives has been refactored and simplified
         
     | 
| 
       11 
18 
     | 
    
         
             
            and improvements have been made to better support directive extensions through
         
     | 
    
        data/Rakefile
    CHANGED
    
    
    
        data/TODO
    CHANGED
    
    | 
         @@ -18,6 +18,9 @@ TODO LIST 
     | 
|
| 
       18 
18 
     | 
    
         
             
                - run spelling checker on our html and release docs; retrofit to rdoc comments
         
     | 
| 
       19 
19 
     | 
    
         
             
                - build utility to auto-generate directives reference doc from directive metadata and std. rdoc markup
         
     | 
| 
       20 
20 
     | 
    
         
             
                - add doc on directive impl unit test helper and techniques/examples
         
     | 
| 
      
 21 
     | 
    
         
            +
                - document directive dir metadata :ignores list option in Developer doc
         
     | 
| 
      
 22 
     | 
    
         
            +
                - add discussion in Configuration doc on directive load path configuration
         
     | 
| 
      
 23 
     | 
    
         
            +
                    (adding directories, providing metadata overrides)
         
     | 
| 
       21 
24 
     | 
    
         
             
            - more tests
         
     | 
| 
       22 
25 
     | 
    
         
             
            - build improvements
         
     | 
| 
       23 
26 
     | 
    
         
             
                - add release tasks to automate archiving trunk to tags/masterview-N.N.N, resetting tags/masterview
         
     | 
| 
         @@ -50,3 +53,9 @@ TODO LIST 
     | 
|
| 
       50 
53 
     | 
    
         
             
            - more docs and examples about directive API and helpers
         
     | 
| 
       51 
54 
     | 
    
         | 
| 
       52 
55 
     | 
    
         
             
            - sitemesh style directives
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            - not getting good template error messages on latest rails 1.2
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            - link_to can now take simple string as options rather than hash, but the implied name thing causes a problem since we don't know whether name was passed or not
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            - REST generator
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,10 +1,10 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
     | 
    
         
            -
            rubygems_version: 0. 
     | 
| 
      
 2 
     | 
    
         
            +
            rubygems_version: 0.9.0
         
     | 
| 
       3 
3 
     | 
    
         
             
            specification_version: 1
         
     | 
| 
       4 
4 
     | 
    
         
             
            name: masterview_gem_pack
         
     | 
| 
       5 
5 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       6 
     | 
    
         
            -
              version: 0.3. 
     | 
| 
       7 
     | 
    
         
            -
            date:  
     | 
| 
      
 6 
     | 
    
         
            +
              version: 0.3.2
         
     | 
| 
      
 7 
     | 
    
         
            +
            date: 2007-02-21 00:00:00 -06:00
         
     | 
| 
       8 
8 
     | 
    
         
             
            summary: A (x)html friendly template engine for rails with the power of layouts, and partials. This gem package includes the other masterview gems for easy installation
         
     | 
| 
       9 
9 
     | 
    
         
             
            require_paths: 
         
     | 
| 
       10 
10 
     | 
    
         
             
            - .
         
     | 
| 
         @@ -25,6 +25,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement 
     | 
|
| 
       25 
25 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       26 
26 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       27 
27 
     | 
    
         
             
            cert_chain: 
         
     | 
| 
      
 28 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
       28 
29 
     | 
    
         
             
            authors: 
         
     | 
| 
       29 
30 
     | 
    
         
             
            - Jeff Barczewski
         
     | 
| 
       30 
31 
     | 
    
         
             
            files: 
         
     | 
| 
         @@ -54,7 +55,7 @@ dependencies: 
     | 
|
| 
       54 
55 
     | 
    
         
             
                requirements: 
         
     | 
| 
       55 
56 
     | 
    
         
             
                - - ">="
         
     | 
| 
       56 
57 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       57 
     | 
    
         
            -
                    version: 0.3. 
     | 
| 
      
 58 
     | 
    
         
            +
                    version: 0.3.2
         
     | 
| 
       58 
59 
     | 
    
         
             
                version: 
         
     | 
| 
       59 
60 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       60 
61 
     | 
    
         
             
              name: masterview_generator
         
     | 
| 
         @@ -63,7 +64,7 @@ dependencies: 
     | 
|
| 
       63 
64 
     | 
    
         
             
                requirements: 
         
     | 
| 
       64 
65 
     | 
    
         
             
                - - ">="
         
     | 
| 
       65 
66 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       66 
     | 
    
         
            -
                    version: 0.3. 
     | 
| 
      
 67 
     | 
    
         
            +
                    version: 0.3.2
         
     | 
| 
       67 
68 
     | 
    
         
             
                version: 
         
     | 
| 
       68 
69 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       69 
70 
     | 
    
         
             
              name: masterview_plugin_generator
         
     | 
| 
         @@ -72,5 +73,5 @@ dependencies: 
     | 
|
| 
       72 
73 
     | 
    
         
             
                requirements: 
         
     | 
| 
       73 
74 
     | 
    
         
             
                - - ">="
         
     | 
| 
       74 
75 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       75 
     | 
    
         
            -
                    version: 0.3. 
     | 
| 
      
 76 
     | 
    
         
            +
                    version: 0.3.2
         
     | 
| 
       76 
77 
     | 
    
         
             
                version: 
         
     |