masterview_gem_pack 0.2.1 → 0.2.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 +2 -0
 - data/RELEASE_NOTES +24 -0
 - data/Rakefile +2 -0
 - metadata +5 -5
 
    
        data/CHANGELOG
    CHANGED
    
    
    
        data/RELEASE_NOTES
    CHANGED
    
    | 
         @@ -1,5 +1,29 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            = MasterView - Rails-optimized (x)html friendly template engine 
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            == Recent changes (Release 0.2.2)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Fixes problem when rails encounters exception in either compiling or
         
     | 
| 
      
 6 
     | 
    
         
            +
            involving RuntimeError in the generated rhtml. The rails TemplateError
         
     | 
| 
      
 7 
     | 
    
         
            +
            class looks at the file system for the template contents. So when 
         
     | 
| 
      
 8 
     | 
    
         
            +
            generate_rhtml is false (no file is generated) rails was not able to 
         
     | 
| 
      
 9 
     | 
    
         
            +
            find source and was not outputting an error page. Rails TemplateError
         
     | 
| 
      
 10 
     | 
    
         
            +
            class was extended to look at MasterView store first and then fallback
         
     | 
| 
      
 11 
     | 
    
         
            +
            to file system.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            == Recent changes (Release 0.2.1)
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            Release 0.2.1 adds Mongrel support, a new image_tag directive
         
     | 
| 
      
 16 
     | 
    
         
            +
            and some additional illustrations and links to videos. Also 
         
     | 
| 
      
 17 
     | 
    
         
            +
            javascript_include and stylesheet_link directives can infer the
         
     | 
| 
      
 18 
     | 
    
         
            +
            path from the src attribute if the attr_value is empty.
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            Also added additional logging around startup and the version of 
         
     | 
| 
      
 21 
     | 
    
         
            +
            MasterView that is running and a new admin page to visually
         
     | 
| 
      
 22 
     | 
    
         
            +
            see what MasterView features are currently loaded (tidy,
         
     | 
| 
      
 23 
     | 
    
         
            +
            auto parsing on change, parse on startup, reading rhtml direct
         
     | 
| 
      
 24 
     | 
    
         
            +
            from masterview (eliminating rhtml file generation))
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
       3 
27 
     | 
    
         
             
            == Recent changes (Release 0.2.0)
         
     | 
| 
       4 
28 
     | 
    
         | 
| 
       5 
29 
     | 
    
         
             
            Release 0.2.0 features a number of significant improvements.
         
     | 
    
        data/Rakefile
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -3,8 +3,8 @@ rubygems_version: 0.8.11 
     | 
|
| 
       3 
3 
     | 
    
         
             
            specification_version: 1
         
     | 
| 
       4 
4 
     | 
    
         
             
            name: masterview_gem_pack
         
     | 
| 
       5 
5 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       6 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
       7 
     | 
    
         
            -
            date: 2006-06- 
     | 
| 
      
 6 
     | 
    
         
            +
              version: 0.2.2
         
     | 
| 
      
 7 
     | 
    
         
            +
            date: 2006-06-30 00:00:00 -05: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 
     | 
    
         
             
            - .
         
     | 
| 
         @@ -54,7 +54,7 @@ dependencies: 
     | 
|
| 
       54 
54 
     | 
    
         
             
                requirements: 
         
     | 
| 
       55 
55 
     | 
    
         
             
                - - ">="
         
     | 
| 
       56 
56 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       57 
     | 
    
         
            -
                    version: 0.2. 
     | 
| 
      
 57 
     | 
    
         
            +
                    version: 0.2.2
         
     | 
| 
       58 
58 
     | 
    
         
             
                version: 
         
     | 
| 
       59 
59 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       60 
60 
     | 
    
         
             
              name: masterview_generator
         
     | 
| 
         @@ -63,7 +63,7 @@ dependencies: 
     | 
|
| 
       63 
63 
     | 
    
         
             
                requirements: 
         
     | 
| 
       64 
64 
     | 
    
         
             
                - - ">="
         
     | 
| 
       65 
65 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       66 
     | 
    
         
            -
                    version: 0.2. 
     | 
| 
      
 66 
     | 
    
         
            +
                    version: 0.2.2
         
     | 
| 
       67 
67 
     | 
    
         
             
                version: 
         
     | 
| 
       68 
68 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       69 
69 
     | 
    
         
             
              name: masterview_plugin_generator
         
     | 
| 
         @@ -72,5 +72,5 @@ dependencies: 
     | 
|
| 
       72 
72 
     | 
    
         
             
                requirements: 
         
     | 
| 
       73 
73 
     | 
    
         
             
                - - ">="
         
     | 
| 
       74 
74 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       75 
     | 
    
         
            -
                    version: 0.2. 
     | 
| 
      
 75 
     | 
    
         
            +
                    version: 0.2.2
         
     | 
| 
       76 
76 
     | 
    
         
             
                version: 
         
     |