sass-embedded 0.9.3 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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