compass-import_once 0.1.2 → 0.1.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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmI0ZjE2MWU0NTUwY2ZjODJlMDFkN2Q4ZTlkOTY0MDNlODZiY2ViOQ==
4
+ ZDgxN2U5MWQ2NGUzMDdhODA4YjIwZWY4MzE5YTkyODgxYWYyNDliZQ==
5
5
  data.tar.gz: !binary |-
6
- YzNkMTc1MmEyODg5OGJmODJlM2M3MTFiNWYyNDUwYzQ0ZTEzOGViMw==
6
+ ZmNiMzZiYTYwMzRjYTM5OGUzZjMyOGY0NjI5ZTdlMDkyNmY3YzY0ZQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDZjMGFkYWM0N2I3Mjc1MjdiYzMyMDRlM2U5NmY2N2VmOWRmMjExMjg5YWZj
10
- YjUwZjhiZDE4MmVjZmJiODU0Y2ViNzA1ZGM2YzNmZTljZmUwZDAxYzRlN2Qx
11
- ODI2NjIxNjlmYmE5Yjg1YWNmNmQ0NTRjOGIyYTUxNGZjZGJhOTc=
9
+ YTBiZmM0NWQyMGE0MjE1MzVkYTM0ZWNmOWM1YTg4YWJkOGNlMzM2MmNmNWFi
10
+ MGRjMTU3MjM0OGU1Y2QxOTA1Yjc4ODdjNjE5NzM4YzM4ODczM2JkMWU2MjBk
11
+ NjVkYzQxN2YwNWRlMmRjMDc2OGJkM2FkNjg5ODEzM2Y3OWY4ZTY=
12
12
  data.tar.gz: !binary |-
13
- YjYxMzE0OGYyNGU3MzAyNzA2NzNkOTE0YWJlYTM3MTAwYTJmY2E1MmU2MDNl
14
- ODUyNDNlZjY3ZDkyNTcyOWM4OTlkMzY3ZTUyOTk3MTMwYjY1ODIwZmY2ZThi
15
- ZjA1ZGE1MThhMDRhZGRkMjhiZGNmZDE5OWMyYmE4MGNiN2FjMTc=
13
+ NTEwZTBlNTdmNjVjZjY4ZmQ4ZWIxZTQzOGUyYzNkMzcwZGQ5MWY1M2Y2YTg1
14
+ OTYxOGMyZTM3MGNjNDJiM2VjYWIwODg0ZmQ4NzhkN2ExZTQyZTJkYjg3ZmNl
15
+ ODUyZTBkOGQ0ODg1MTM1NTM2YWFhMDRmZGEyNWVmOWQxM2U4Y2M=
@@ -0,0 +1,12 @@
1
+ # 0.1.3
2
+
3
+ Updates required version of sass-import_once to 0.1.3 (which contains an important bug fix)
4
+ Adds MIT license
5
+
6
+ # 0.1.2
7
+
8
+ Fixes compass monkey patch and updates min version of sass-import_once
9
+
10
+ # 0.1.0
11
+
12
+ Initial release.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 The Blacksmith (a.k.a. Saulo Vallory)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,24 @@
1
+ # Compass Import Once Plugin
2
+
3
+ This gem makes [Sass Import Once][sass-import_once] work with compass while
4
+ [this issue](https://github.com/chriseppstein/compass/pull/1140) isn't fixed.
5
+
6
+ Sass import_once **changes the default behaviour of the sass @import** directive making it never require the same file twice.
7
+
8
+ It's awesome! [Check it out][sass-import_once]
9
+
10
+ ## Installation
11
+
12
+ $ gem install compass-import_once
13
+
14
+ ## Configuration
15
+
16
+ Add the following to your compass configuration:
17
+
18
+ require 'compass-import_once'
19
+
20
+ ## Stylesheet Syntax
21
+
22
+ The same as always :)
23
+
24
+ [sass-import_once]: https://github.com/theblacksmith/sass-import_once
@@ -3,12 +3,13 @@ require File.expand_path("../lib/compass/import_once/version", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "compass-import_once"
6
+ s.license = "MIT"
6
7
  s.version = Compass::ImportOnce::VERSION
7
8
  s.platform = Gem::Platform::RUBY
8
9
  s.authors = ["The Blacksmith (a.k.a. Saulo Vallory)"]
9
10
  s.email = ["me@saulovallory.com"]
10
- s.homepage = "http://theblacksmithhq.com/"
11
- s.summary = %q{Makes `sass-import_once` work with compass.}
11
+ s.homepage = "https://github.com/theblacksmith/compass-import_once"
12
+ s.summary = %q{Makes sass-import_once gem work with compass.}
12
13
  s.description = %q{
13
14
  Monkey patches compass to make `sass-import_once` work while
14
15
  this issue is not solved: https://github.com/chriseppstein/compass/pull/1140
@@ -19,6 +20,6 @@ Gem::Specification.new do |s|
19
20
  s.require_paths = ["lib"]
20
21
 
21
22
  s.add_runtime_dependency 'compass', '>= 0.12.2'
22
- s.add_runtime_dependency 'sass-import_once', '>= 0.1.2'
23
+ s.add_runtime_dependency 'sass-import_once', '>= 0.1.3'
23
24
 
24
25
  end
@@ -1,5 +1,5 @@
1
1
  module Compass
2
2
  module ImportOnce
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-import_once
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Blacksmith (a.k.a. Saulo Vallory)
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-31 00:00:00.000000000 Z
11
+ date: 2013-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: compass
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.2
33
+ version: 0.1.3
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.2
40
+ version: 0.1.3
41
41
  description: ! "\n Monkey patches compass to make `sass-import_once` work while
42
42
  \n this issue is not solved: https://github.com/chriseppstein/compass/pull/1140\n
43
43
  \ "
@@ -48,9 +48,10 @@ extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
50
  - .gitignore
51
- - CHANGELOG.markdown
51
+ - CHANGELOG.md
52
52
  - Gemfile
53
- - README.markdown
53
+ - LICENSE
54
+ - README.md
54
55
  - Rakefile
55
56
  - compass-import_once.gemspec
56
57
  - lib/compass-import_once.rb
@@ -59,8 +60,9 @@ files:
59
60
  - test/compass_import_once_test.rb
60
61
  - test/fixtures/partials/_imported.scss
61
62
  - test/fixtures/test.scss
62
- homepage: http://theblacksmithhq.com/
63
- licenses: []
63
+ homepage: https://github.com/theblacksmith/compass-import_once
64
+ licenses:
65
+ - MIT
64
66
  metadata: {}
65
67
  post_install_message:
66
68
  rdoc_options: []
@@ -81,7 +83,7 @@ rubyforge_project:
81
83
  rubygems_version: 2.1.10
82
84
  signing_key:
83
85
  specification_version: 4
84
- summary: Makes `sass-import_once` work with compass.
86
+ summary: Makes sass-import_once gem work with compass.
85
87
  test_files:
86
88
  - test/compass_import_once_test.rb
87
89
  - test/fixtures/partials/_imported.scss
@@ -1,3 +0,0 @@
1
- # 0.1.0
2
-
3
- Initial release.
@@ -1,21 +0,0 @@
1
- # Compass Import Once Plugin
2
-
3
- This gem makes [Sass Import Once](theblacksmith/sass-import_once) work with compass.
4
-
5
- Sass import_once changes the behaviour of the sass @import directive making never require the same file twice.
6
-
7
- It's awesome! [Check it out](theblacksmith/sass-import_once)
8
-
9
- ## Installation
10
-
11
- $ gem install compass-import_once
12
-
13
- ## Use with compass
14
-
15
- Add the following to your compass configuration:
16
-
17
- require 'compass-import_once'
18
-
19
- ## Stylesheet Syntax
20
-
21
- The same as always :)