elia 2.4.1 → 2.4.2.pre
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/VERSION +1 -1
 - data/lib/sass_support.rb +12 -4
 - data/lib/sass_support/_background_gradient.sass +3 -0
 - metadata +19 -8
 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            2.4. 
     | 
| 
      
 1 
     | 
    
         
            +
            2.4.2.pre
         
     | 
    
        data/lib/sass_support.rb
    CHANGED
    
    | 
         @@ -1,7 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            require 'sass'
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'sass/plugin'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
               
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            module Sass
         
     | 
| 
      
 6 
     | 
    
         
            +
              ELIA_SASS_SUPPORT = File.join( File.dirname(__FILE__), 'sass_support' )
         
     | 
| 
      
 7 
     | 
    
         
            +
            end
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            [
         
     | 
| 
      
 10 
     | 
    
         
            +
              # Sass::Engine::DEFAULT_OPTIONS, 
         
     | 
| 
      
 11 
     | 
    
         
            +
              Sass::Plugin.options
         
     | 
| 
      
 12 
     | 
    
         
            +
            ].each do |hash|
         
     | 
| 
      
 13 
     | 
    
         
            +
              hash[:load_paths] ||= ["."]
         
     | 
| 
      
 14 
     | 
    
         
            +
              hash[:load_paths] << File.join( Sass::ELIA_SASS_SUPPORT )
         
     | 
| 
      
 15 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            +gradient(!color1, !percent1, !color2, !percent2)
         
     | 
| 
      
 2 
     | 
    
         
            +
              background: -webkit-gradient(linear,left bottom,left top,color-stop(#{!percent2 / 100.0}%, #{!color2}),color-stop(#{!percent1 / 100.0}%, #{!color1}))
         
     | 
| 
      
 3 
     | 
    
         
            +
              background: -moz-linear-gradient(center bottom,#{!color2} #{!percent2}%,#{!color1} #{!percent1}%)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,12 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: elia
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
               
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 961915980
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: true
         
     | 
| 
       5 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       6 
7 
     | 
    
         
             
              - 2
         
     | 
| 
       7 
8 
     | 
    
         
             
              - 4
         
     | 
| 
       8 
     | 
    
         
            -
              -  
     | 
| 
       9 
     | 
    
         
            -
               
     | 
| 
      
 9 
     | 
    
         
            +
              - 2
         
     | 
| 
      
 10 
     | 
    
         
            +
              - pre
         
     | 
| 
      
 11 
     | 
    
         
            +
              version: 2.4.2.pre
         
     | 
| 
       10 
12 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       11 
13 
     | 
    
         
             
            authors: 
         
     | 
| 
       12 
14 
     | 
    
         
             
            - Elia Schito
         
     | 
| 
         @@ -14,16 +16,18 @@ autorequire: 
     | 
|
| 
       14 
16 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       15 
17 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       16 
18 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            date: 2010- 
     | 
| 
      
 19 
     | 
    
         
            +
            date: 2010-09-04 00:00:00 +02:00
         
     | 
| 
       18 
20 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       19 
21 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       20 
22 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       21 
23 
     | 
    
         
             
              name: rspec
         
     | 
| 
       22 
24 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       23 
25 
     | 
    
         
             
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 26 
     | 
    
         
            +
                none: false
         
     | 
| 
       24 
27 
     | 
    
         
             
                requirements: 
         
     | 
| 
       25 
28 
     | 
    
         
             
                - - ">="
         
     | 
| 
       26 
29 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 30 
     | 
    
         
            +
                    hash: 13
         
     | 
| 
       27 
31 
     | 
    
         
             
                    segments: 
         
     | 
| 
       28 
32 
     | 
    
         
             
                    - 1
         
     | 
| 
       29 
33 
     | 
    
         
             
                    - 2
         
     | 
| 
         @@ -64,6 +68,7 @@ files: 
     | 
|
| 
       64 
68 
     | 
    
         
             
            - lib/ruby19/tmm1-fiber18-a37a4c3/lib/fiber18.rb
         
     | 
| 
       65 
69 
     | 
    
         
             
            - lib/ruby19/tmm1-fiber18-a37a4c3/test/test_fiber.rb
         
     | 
| 
       66 
70 
     | 
    
         
             
            - lib/sass_support.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
            - lib/sass_support/_background_gradient.sass
         
     | 
| 
       67 
72 
     | 
    
         
             
            - lib/sass_support/_border_radius.sass
         
     | 
| 
       68 
73 
     | 
    
         
             
            - lib/sass_support/_box_shadow.sass
         
     | 
| 
       69 
74 
     | 
    
         
             
            - lib/sass_support/_css3.sass
         
     | 
| 
         @@ -93,23 +98,29 @@ rdoc_options: 
     | 
|
| 
       93 
98 
     | 
    
         
             
            require_paths: 
         
     | 
| 
       94 
99 
     | 
    
         
             
            - lib
         
     | 
| 
       95 
100 
     | 
    
         
             
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 101 
     | 
    
         
            +
              none: false
         
     | 
| 
       96 
102 
     | 
    
         
             
              requirements: 
         
     | 
| 
       97 
103 
     | 
    
         
             
              - - ">="
         
     | 
| 
       98 
104 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 105 
     | 
    
         
            +
                  hash: 3
         
     | 
| 
       99 
106 
     | 
    
         
             
                  segments: 
         
     | 
| 
       100 
107 
     | 
    
         
             
                  - 0
         
     | 
| 
       101 
108 
     | 
    
         
             
                  version: "0"
         
     | 
| 
       102 
109 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 110 
     | 
    
         
            +
              none: false
         
     | 
| 
       103 
111 
     | 
    
         
             
              requirements: 
         
     | 
| 
       104 
     | 
    
         
            -
              - - " 
     | 
| 
      
 112 
     | 
    
         
            +
              - - ">"
         
     | 
| 
       105 
113 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 114 
     | 
    
         
            +
                  hash: 25
         
     | 
| 
       106 
115 
     | 
    
         
             
                  segments: 
         
     | 
| 
       107 
     | 
    
         
            -
                  -  
     | 
| 
       108 
     | 
    
         
            -
                   
     | 
| 
      
 116 
     | 
    
         
            +
                  - 1
         
     | 
| 
      
 117 
     | 
    
         
            +
                  - 3
         
     | 
| 
      
 118 
     | 
    
         
            +
                  - 1
         
     | 
| 
      
 119 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
       109 
120 
     | 
    
         
             
            requirements: []
         
     | 
| 
       110 
121 
     | 
    
         | 
| 
       111 
122 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       112 
     | 
    
         
            -
            rubygems_version: 1.3. 
     | 
| 
      
 123 
     | 
    
         
            +
            rubygems_version: 1.3.7
         
     | 
| 
       113 
124 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       114 
125 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       115 
126 
     | 
    
         
             
            summary: Elia Schito's utility belt
         
     |