sass-import_once 0.1.0 → 0.1.2
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 +8 -8
- data/CHANGELOG.markdown +9 -0
- data/lib/sass/import_once/importer.rb +2 -0
- data/lib/sass/import_once/version.rb +1 -1
- data/sass-import_once.gemspec +4 -5
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OGUyMmM4NTNiMjcxMzk5NTFlN2YxZTdhMmViZDQwNmEzNDM0ZTk3Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGQ3NTQ3ZTEzZTBjMmUzNGRmMzUwNGFkNTRkZmY2YjIyOGYyODM1ZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Zjk5ZTVmOWMwMjhkZTA0YmM3NTdjOWQyZWVlMTQ3ZGUzM2U0ODMyNGE2NzVk
|
10
|
+
MDIwZDE1NDRjNzJjYzBmYzg1NTliM2M0N2IwMGYzMWZlYmI5ZDJkOWQ3NWNj
|
11
|
+
MTRlYzI2NGQ3ZDk1MmM3MDI0ZjU3OGVmMDY3Mzg4ZTE1ZTg1MmI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTNjYTYwODRkYjY1ODE4NDY5YTE0NWE5MzVmZTNiNGFlNDcyZWMzMTdjMzRm
|
14
|
+
YTEwOTE1OTRmNWFkNDRmYTYzMTc3MTAzMmY2ODI5MDI4OTkxNzk2ZmVmYzgz
|
15
|
+
YWE0ZjIzNGQ2Nzc1ZTk3MzkzY2JiOGY5YWFmNTM0ODMxMGFhMTI=
|
data/CHANGELOG.markdown
CHANGED
data/sass-import_once.gemspec
CHANGED
@@ -7,18 +7,17 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["The Blacksmith (a.k.a. Saulo Vallory)"]
|
9
9
|
s.email = ["me@saulovallory.com"]
|
10
|
-
s.homepage = "
|
10
|
+
s.homepage = "https://github.com/theblacksmith/sass-import_once"
|
11
11
|
s.summary = %q{Makes Sass @import directives only import a file once.}
|
12
12
|
s.description = %q{
|
13
|
-
Sass ImportOnce Importer
|
14
|
-
|
15
|
-
This gem will MODIFY the default behaviour of Sass.
|
16
|
-
|
13
|
+
The Sass ImportOnce Importer MODIFIES the default behaviour of Sass.
|
17
14
|
Sass @import directive imports the file requested everytime it's called
|
18
15
|
this has been default behaviour, as far as I know, from the beginning of
|
19
16
|
Sass's life. But sometimes, or most of the time, this behaviour isn't
|
20
17
|
desireable. When working with modularized sass styles and sass frameworks
|
21
18
|
out there we usually want a file to be imported only once.
|
19
|
+
|
20
|
+
For more information check the readme at github.
|
22
21
|
}
|
23
22
|
|
24
23
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-import_once
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Blacksmith (a.k.a. Saulo Vallory)
|
@@ -24,12 +24,13 @@ dependencies:
|
|
24
24
|
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.1'
|
27
|
-
description: ! "\n Sass ImportOnce Importer
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
27
|
+
description: ! "\n The Sass ImportOnce Importer MODIFIES the default behaviour
|
28
|
+
of Sass.\n Sass @import directive imports the file requested everytime it's called\n
|
29
|
+
\ this has been default behaviour, as far as I know, from the beginning of\n Sass's
|
30
|
+
life. But sometimes, or most of the time, this behaviour isn't \n desireable.
|
31
|
+
When working with modularized sass styles and sass frameworks\n out there we
|
32
|
+
usually want a file to be imported only once.\n\n For more information check
|
33
|
+
the readme at github.\n "
|
33
34
|
email:
|
34
35
|
- me@saulovallory.com
|
35
36
|
executables: []
|
@@ -50,7 +51,7 @@ files:
|
|
50
51
|
- test/fixtures/partials/_imported.scss
|
51
52
|
- test/fixtures/test.scss
|
52
53
|
- test/sass_import_once_test.rb
|
53
|
-
homepage:
|
54
|
+
homepage: https://github.com/theblacksmith/sass-import_once
|
54
55
|
licenses: []
|
55
56
|
metadata: {}
|
56
57
|
post_install_message:
|