dropcloth 0.1.1 → 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/{README.txt → README.md} +9 -10
- data/dropcloth.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjNkNmMxYThhMTcwNzk3ZmVkNGEzMDczMzVhZjY1MThhMzhjZGY0Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTkyZGQyNDk3NTJhMTM2ZDJhMGY2MTFmYjA0MTAwZWIwOTJmYWQyYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODRmZTI3YWM1MjBhNDZhZjM1NDhjMWZhOWNjNjkxMmE2MzZiNWMwMDkzMGVl
|
10
|
+
MjZkOTZjNWE3YTE2YjBkYjc4MTg0NTA1ODM3YWFlNDE1MmFiZDI2YWI2MjI1
|
11
|
+
MzJhNTEwYjAzMjM0OTNhMTk0NmRkYzExMzQyMzUyYWJlY2YyZGM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjhkY2ViNGE1YjBiZDg5YzBiZjczNDViYjBkOWU4NDRiMzAwZmYxMzg0ZTQ0
|
14
|
+
ZDYwMGJkMjBhMzE2OTg3ZGQxNDRlODE0NTZmNzdlZGRlNDI4OThhZDQ0YWY4
|
15
|
+
NDk2OGRiYmFlZTFkYTgxOWRhMWE1NDE4M2U4ZGZkN2M5MWZmMzk=
|
data/{README.txt → README.md}
RENAMED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
Dropcloth
|
2
|
+
=========
|
4
3
|
Dropcloth is a compass plugin and css neutralizer for Drupal. It provides a
|
5
4
|
lightweight reset, protection for non-theme elements, and practical mixins for
|
6
5
|
a cleaner Drupal theming experience. Originally designed for use with Zen,
|
7
6
|
Dropcloth can be used anywhere you use sass and compass.
|
8
7
|
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
Install
|
10
|
+
-------
|
12
11
|
|
13
12
|
Dropcloth is distributed as a Ruby Gem. On your computer, simply run:
|
14
13
|
|
15
|
-
sudo gem install dropcloth
|
14
|
+
$ sudo gem install dropcloth
|
16
15
|
|
17
16
|
|
18
|
-
|
19
|
-
|
17
|
+
Use
|
18
|
+
---
|
20
19
|
|
21
20
|
If you are using Compass (and you should!) then you can add it to an existing
|
22
21
|
project by editing the project's configuration file, config.rb, and adding this
|
@@ -30,14 +29,14 @@ of your .sass or .scss files and theme with confidence!
|
|
30
29
|
@import 'dropcloth';
|
31
30
|
|
32
31
|
|
33
|
-
|
32
|
+
Requirements
|
34
33
|
------------
|
35
34
|
|
36
35
|
- Sass 3.2 or later
|
37
36
|
- Compass 0.12 or later
|
38
37
|
|
39
38
|
|
40
|
-
|
39
|
+
License
|
41
40
|
-------
|
42
41
|
|
43
42
|
Available under the GPL v2 license. See LICENSE.txt.
|
data/dropcloth.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.homepage = 'http://awpny.com'
|
10
10
|
s.rubyforge_project =
|
11
11
|
|
12
|
-
s.version = '0.1.
|
12
|
+
s.version = '0.1.2'
|
13
13
|
s.date = '2013-10-05'
|
14
14
|
s.license = 'GPL-2'
|
15
15
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
|
22
22
|
s.files = %w[
|
23
23
|
LICENSE.txt
|
24
|
-
README.
|
24
|
+
README.md
|
25
25
|
lib/dropcloth.rb
|
26
26
|
stylesheets/base/_mixins.scss
|
27
27
|
stylesheets/base/_reset.scss
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dropcloth
|
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
|
- Kai Johnson
|
@@ -45,7 +45,7 @@ extensions: []
|
|
45
45
|
extra_rdoc_files: []
|
46
46
|
files:
|
47
47
|
- LICENSE.txt
|
48
|
-
- README.
|
48
|
+
- README.md
|
49
49
|
- lib/dropcloth.rb
|
50
50
|
- stylesheets/base/_mixins.scss
|
51
51
|
- stylesheets/base/_reset.scss
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubyforge_project: 0.1.
|
78
|
+
rubyforge_project: 0.1.2
|
79
79
|
rubygems_version: 2.1.5
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|