sass-import_once 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTEyNDNkMmE1YTQwN2QwMzk5MWViYTRhMjhmMDYxMDBlYzQ2YjY2NA==
4
+ OGUyMmM4NTNiMjcxMzk5NTFlN2YxZTdhMmViZDQwNmEzNDM0ZTk3Mg==
5
5
  data.tar.gz: !binary |-
6
- YjhjMjc0NGRkNjJhMzY3M2JkNzgzMWJiMjY1YTRkMGYwYTNiMjI0Yw==
6
+ ZGQ3NTQ3ZTEzZTBjMmUzNGRmMzUwNGFkNTRkZmY2YjIyOGYyODM1ZQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTliNDgwNWM1YWU2Yzk1NjIxM2NiOWRkOTM4ZDM4M2VkNTM2NjdjODBiMGRh
10
- YTQ2MjUwYzY1YWQwOTFkM2ZkMmVlZDVmNTBhNTE5Mzc1NWZiZjQ5MDYxYjM2
11
- YWQ4YzlmN2E4MDJjNGIyMzVjNmNhYjVkYjc5M2QyNGJmNTAxMTk=
9
+ Zjk5ZTVmOWMwMjhkZTA0YmM3NTdjOWQyZWVlMTQ3ZGUzM2U0ODMyNGE2NzVk
10
+ MDIwZDE1NDRjNzJjYzBmYzg1NTliM2M0N2IwMGYzMWZlYmI5ZDJkOWQ3NWNj
11
+ MTRlYzI2NGQ3ZDk1MmM3MDI0ZjU3OGVmMDY3Mzg4ZTE1ZTg1MmI=
12
12
  data.tar.gz: !binary |-
13
- YjMzMGY4MDA1ZjdmMTAyM2VkMzU4NWY3ZmNjMGEyMmJhMGQwM2QwMzMwNWM3
14
- OWMyZjY3OGNjMzViYmQ3OWFhZjY0NDM5YTE2MTJkNmI2ZTAwMzBiYTNhNzdm
15
- YWEyNDI3NThiNmE0ZDVmN2FlNjI4MmNiN2U4ZGJhOWQ1N2U3NmM=
13
+ YTNjYTYwODRkYjY1ODE4NDY5YTE0NWE5MzVmZTNiNGFlNDcyZWMzMTdjMzRm
14
+ YTEwOTE1OTRmNWFkNDRmYTYzMTc3MTAzMmY2ODI5MDI4OTkxNzk2ZmVmYzgz
15
+ YWE0ZjIzNGQ2Nzc1ZTk3MzkzY2JiOGY5YWFmNTM0ODMxMGFhMTI=
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,12 @@
1
+ # 0.1.2
2
+
3
+ Adds require 'sass' to importer.rb
4
+
5
+ # 0.1.1
6
+
7
+ Updates gemspec description and homepage.
8
+ Updates "Use with compass" section of README.
9
+
1
10
  # 0.1.0
2
11
 
3
12
  Initial release.
@@ -1,3 +1,5 @@
1
+ require 'sass'
2
+
1
3
  class Sass::ImportOnce::Importer < ::Sass::Importers::Filesystem
2
4
 
3
5
  attr_accessor :root, :staleness_check, :imported, :original_filename
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module ImportOnce
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
@@ -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 = "http://theblacksmithhq.com/"
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.0
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\n\n This gem will MODIFY the default
28
- behaviour of Sass.\n\n Sass @import directive imports the file requested everytime
29
- it's called\n this has been default behaviour, as far as I know, from the beginning
30
- of\n Sass's life. But sometimes, or most of the time, this behaviour isn't \n
31
- \ desireable. When working with modularized sass styles and sass frameworks\n
32
- \ out there we usually want a file to be imported only once.\n "
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: http://theblacksmithhq.com/
54
+ homepage: https://github.com/theblacksmith/sass-import_once
54
55
  licenses: []
55
56
  metadata: {}
56
57
  post_install_message: