sassc 2.1.0.pre2-x86-mingw32 → 2.1.0.pre3-x86-mingw32
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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +3 -0
 - data/README.md +1 -1
 - data/Rakefile +1 -1
 - data/lib/sassc/version.rb +1 -1
 - data/sassc.gemspec +1 -1
 - data/test/native_test.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 2627506f288e5f9dc0d72f50e1b21becd2934e6339a0f7e1b44eac6969c28678
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 2b1ea3ad074bdeb4b3bfbe83240be257f32b5255fc601c6b9aacf434dfd47d22
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 0a0acd357370424014fac68e1c681d15e7cc2a8c3ad8bf38d5745b0fa09744e494008677b9b0398893e92a1b1ebf93d8819be1231c85c82959da310c39e0e7d7
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 8d7e48c7e0a97aa4c9a5c798b8cd41a47a8ec76c13ea87db8a84a5ba5bbd05610b7c2629cdbb91efc24b2c56e850fc4a71ce4d429cbb7b00c0064d71b9f85035
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,3 +1,6 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            - **2.1.0.pre3**
         
     | 
| 
      
 2 
     | 
    
         
            +
              - [extconf.rb: Always write VERSION if we have .git](https://github.com/sass/sassc-ruby/pull/131)
         
     | 
| 
      
 3 
     | 
    
         
            +
              - [Update libsass to 3.6.1](https://github.com/sass/sassc-ruby/pull/130)
         
     | 
| 
       1 
4 
     | 
    
         
             
            - **2.1.0.pre2**
         
     | 
| 
       2 
5 
     | 
    
         
             
              - [Reduce Ruby warnings](https://github.com/sass/sassc-ruby/pull/124)
         
     | 
| 
       3 
6 
     | 
    
         
             
              - [prefer equal? to determine object identity](https://github.com/sass/sassc-ruby/pull/122)
         
     | 
    
        data/README.md
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -43,7 +43,7 @@ task 'gem:native' do 
     | 
|
| 
       43 
43 
     | 
    
         
             
                                  "RUBY_CC_VERSION=2.6.0 CLEAN=1"
         
     | 
| 
       44 
44 
     | 
    
         
             
            end
         
     | 
| 
       45 
45 
     | 
    
         | 
| 
       46 
     | 
    
         
            -
            CLEAN.include 'tmp', 'pkg', 'lib/sassc/libsass.so', 'ext/libsass/VERSION',
         
     | 
| 
      
 46 
     | 
    
         
            +
            CLEAN.include 'tmp', 'pkg', 'lib/sassc/libsass.{so,bundle}', 'ext/libsass/VERSION',
         
     | 
| 
       47 
47 
     | 
    
         
             
                          'ext/*.{o,so,bundle}', 'ext/Makefile'
         
     | 
| 
       48 
48 
     | 
    
         | 
| 
       49 
49 
     | 
    
         
             
            desc "Run all tests"
         
     | 
    
        data/lib/sassc/version.rb
    CHANGED
    
    
    
        data/sassc.gemspec
    CHANGED
    
    | 
         @@ -48,7 +48,7 @@ Gem::Specification.new do |spec| 
     | 
|
| 
       48 
48 
     | 
    
         
             
              end
         
     | 
| 
       49 
49 
     | 
    
         | 
| 
       50 
50 
     | 
    
         
             
              # Write a VERSION file for non-binary gems (for `SassC::Native.version`).
         
     | 
| 
       51 
     | 
    
         
            -
              if  
     | 
| 
      
 51 
     | 
    
         
            +
              if File.exist?(File.join(libsass_dir, '.git'))
         
     | 
| 
       52 
52 
     | 
    
         
             
                libsass_version = Dir.chdir(libsass_dir) do
         
     | 
| 
       53 
53 
     | 
    
         
             
                  %x[git describe --abbrev=4 --dirty --always --tags].chomp
         
     | 
| 
       54 
54 
     | 
    
         
             
                end
         
     | 
    
        data/test/native_test.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: sassc
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2.1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.1.0.pre3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Ryan Boland
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2019-06- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2019-06-18 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: minitest
         
     |