sassc 2.1.0.pre2-x86-linux → 2.1.0.pre3-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad04ef35e4718a6b9fe624367b48b31346ac3277dcff7f1f1ff097afeb65b2d5
4
- data.tar.gz: 37d763e20efded0e5277e529eed455e1ff5c6ded96ff340e260d2d831f9a7dbb
3
+ metadata.gz: ee74794aeda3e0df6eca4fad8e0d9d8aa415c9f27d6aed8fa85c6c0efdd2d619
4
+ data.tar.gz: 2bbbe41c082d8ce3fc2e61abaeaa727924e43ff530f63ebda56957a589848558
5
5
  SHA512:
6
- metadata.gz: d45a58b52184f18979904eec2e550dec094bf8d90c46238708f6bc19594812c5ba895dffdf6b32502e68a82a44896415ebd89c3fc4962f05c0a9cfc7f0478dc7
7
- data.tar.gz: 165a788a95eb33feecdab2d8fbf66f21e3f61980afef461f29760dddeebfb7487ff41fc51fc97079d737331713e3f71621788cf814dd5ad5402dfba2c3d32be4
6
+ metadata.gz: d128226ce47afa58bc5f77eacbbcaad5db771556ef3b0a047278737594e223fe6826593479e0e26ed4812516be3a29246309b418e794debf80c01edbc8481517
7
+ data.tar.gz: 12c4376a0bd3c7e0ae1ab6a708f7e79a1692cc86baaaf923402c4278dc894429be941a00bb07a5bfbc13f8989bba6ec8a8bed8bb45267767d5324d27229d33e4
@@ -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
@@ -6,7 +6,7 @@ This gem combines the speed of `libsass`, the [Sass C implementation](https://gi
6
6
 
7
7
  ### libsass Version
8
8
 
9
- [3.6.0](https://github.com/sass/libsass/releases/3.6.0)
9
+ [3.6.1](https://github.com/sass/libsass/releases/3.6.1)
10
10
 
11
11
  ## Installation
12
12
 
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SassC
4
- VERSION = "2.1.0.pre2"
4
+ VERSION = "2.1.0.pre3"
5
5
  end
@@ -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 !File.exist?(File.join(libsass_dir, 'VERSION'))
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
@@ -11,7 +11,7 @@ module SassC
11
11
 
12
12
  class General < MiniTest::Test
13
13
  def test_it_reports_the_libsass_version
14
- assert_equal "3.6.0", Native.version
14
+ assert_equal "3.6.1", Native.version
15
15
  end
16
16
  end
17
17
 
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.pre2
4
+ version: 2.1.0.pre3
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Ryan Boland
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-05 00:00:00.000000000 Z
11
+ date: 2019-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest