sass-embedded 0.9.3 → 0.10.0

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.
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Sass
4
- class Embedded
5
- # The {RenderResult} of {Embedded#render}.
6
- class RenderResult
7
- attr_reader :css, :map, :stats
8
-
9
- def initialize(css, map, stats)
10
- @css = css
11
- @map = map
12
- @stats = stats
13
- end
14
- end
15
-
16
- # The {RenderResultStats} of {Embedded#render}.
17
- class RenderResultStats
18
- attr_reader :entry, :start, :end, :duration
19
-
20
- def initialize(entry, start, finish, duration)
21
- @entry = entry
22
- @start = start
23
- @end = finish
24
- @duration = duration
25
- end
26
- end
27
- end
28
- end