sass-embedded 0.18.2 → 0.18.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9eeafb6dcad576b707936df8fe78e0de78712c7a1fb51c0adc372a83721d371
4
- data.tar.gz: 5f1a354a8c9b08f37f6215c9d9a53582b0eef7e48f62c84d910671ae960b2677
3
+ metadata.gz: cc4a508736aaa5f9027fdef79ee94818b654039c1f2d50466ef2143abb405028
4
+ data.tar.gz: 16f20ce568c5db54cf8612c7e7fcd238005f488b050fcf0a6f48b2fe93112be9
5
5
  SHA512:
6
- metadata.gz: 50ac1de6a47ac9becebe4f229ffd6befbc25a0a481a4551e88fc600ff8934f554ab1ecc35bee8e68847d5d2315058d9a21a4952cd4ee86b3ccf011c21ec62ed9
7
- data.tar.gz: daa53389ab4d49e5d8a6189eaf4391a978a640444b79279b401beac6070086db4903786b4df9d6ee9a0216a4391e3f4cb32a9be2c1c25c4ec9eae3a145f065c1
6
+ metadata.gz: 1354199d1d4816557ddb4f64a8c266fea74a4712dc36d8004e1ce26d249b8c2e46a74d83edce9c4fb4ad01c143d47d95326502366cfff8284d6e9d76515d439d
7
+ data.tar.gz: 6ff13850fabab22c14e40520e7f8bfd95bcb7d68cfe02b5b901bfa4c566a2b3ba4bcf6a3aa2bb28733684fec1c6731cd7e2d8ea3c3c194d975b5023313844f74
@@ -12,7 +12,7 @@ module Sass
12
12
  @span = span
13
13
  end
14
14
 
15
- def full_message(*_args, **_kwargs)
15
+ def full_message(*)
16
16
  if @full_message.nil?
17
17
  super
18
18
  else
@@ -122,8 +122,8 @@ module Sass
122
122
  when :number
123
123
  Sass::Value::Number.new(
124
124
  obj.value,
125
- obj.numerators,
126
- obj.denominators
125
+ obj.numerators.to_a,
126
+ obj.denominators.to_a
127
127
  )
128
128
  when :rgb_color
129
129
  Sass::Value::Color.new(
@@ -33,11 +33,11 @@ module Sass
33
33
  end
34
34
  end
35
35
 
36
- def add_observer(*args)
36
+ def add_observer(*)
37
37
  @observerable_mutex.synchronize do
38
38
  raise ProtocolError, 'half-closed compiler' if half_closed?
39
39
 
40
- super(*args)
40
+ super
41
41
 
42
42
  id = @id
43
43
  @id = @id.next
@@ -45,9 +45,9 @@ module Sass
45
45
  end
46
46
  end
47
47
 
48
- def delete_observer(*args)
48
+ def delete_observer(*)
49
49
  @observerable_mutex.synchronize do
50
- super(*args)
50
+ super
51
51
 
52
52
  close if half_closed? && count_observers.zero?
53
53
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  class Embedded
5
- VERSION = '0.18.2'
5
+ VERSION = '0.18.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.2
4
+ version: 0.18.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - なつき
@@ -164,8 +164,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
164
164
  licenses:
165
165
  - MIT
166
166
  metadata:
167
- documentation_uri: https://www.rubydoc.info/gems/sass-embedded/0.18.2
168
- source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v0.18.2
167
+ documentation_uri: https://www.rubydoc.info/gems/sass-embedded/0.18.3
168
+ source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v0.18.3
169
169
  funding_uri: https://github.com/sponsors/ntkme
170
170
  post_install_message:
171
171
  rdoc_options: []