evh-stripes 0.0.0 → 0.0.1
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 +4 -4
- data/README.md +26 -11
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 270fa4fbc22538555af8fc95faea654200b57f93
|
4
|
+
data.tar.gz: 5c9b530025610319837d78843e257b7c82c7d82f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 850532296d58ea999484d94b5a2df1ffe2a0ebad31cb370aadc598cb40021c48caf59e6eb76165b4202175355c7e0d95018ea5387dd3c6c810a557eff9fd3b27
|
7
|
+
data.tar.gz: df89dbbc3d75baddaf90fae34fbfdcc44cb9e4f1549f0c7984443fc0dbc722d72b887a48bc5e2ede42e9ac4f2ac11e44fd84c4f89bbf7b10dff66b3184e8c287
|
data/README.md
CHANGED
@@ -1,16 +1,15 @@
|
|
1
|
-
#
|
1
|
+
# EVH Stripes
|
2
2
|
|
3
|
-
|
3
|
+
This [Compass](compass-style.org) extension provides you with a mixin that allows you to use a Eddie Van Halen red and black-and-white stripes as a CSS3 background for your HTML elements.
|
4
|
+
|
5
|
+

|
4
6
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
9
10
|
Add this line to your application's Gemfile:
|
10
11
|
|
11
|
-
|
12
|
-
gem 'evh-stripes'
|
13
|
-
```
|
12
|
+
gem 'evh-stripes'
|
14
13
|
|
15
14
|
And then execute:
|
16
15
|
|
@@ -22,17 +21,33 @@ Or install it yourself as:
|
|
22
21
|
|
23
22
|
## Usage
|
24
23
|
|
25
|
-
|
24
|
+
Import it into your main stylesheet:
|
25
|
+
|
26
|
+
@import 'evh-stripes';
|
27
|
+
|
28
|
+
### frankenstein
|
29
|
+
|
30
|
+
Provides the elements that includes this mixin with a red-black-white striped pattern by applying a CSS3 background.
|
31
|
+
|
32
|
+
@include frankenstein;
|
33
|
+
|
34
|
+
Example:
|
35
|
+
|
36
|
+
.welcome {
|
37
|
+
@include frankenstein;
|
38
|
+
}
|
39
|
+
|
26
40
|
|
27
|
-
##
|
41
|
+
## Roadmap
|
28
42
|
|
29
|
-
|
43
|
+
* Add the bumblebee
|
44
|
+
* Add the black-white striped pattern
|
45
|
+
* Add the black-white striped with circles pattern
|
30
46
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
47
|
|
33
48
|
## Contributing
|
34
49
|
|
35
|
-
1. Fork it ( https://github.com/
|
50
|
+
1. Fork it ( https://github.com/bazzel/evh-stripes/fork )
|
36
51
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
37
52
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
38
53
|
4. Push to the branch (`git push origin my-new-feature`)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evh-stripes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Baselier
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
|
-
description: Use Eddie Van Halen's guitar designs to decorate your backgrounds
|
27
|
+
description: Use Eddie Van Halen's guitar designs to decorate your backgrounds
|
28
28
|
email:
|
29
29
|
- patrick.baselier@gmail.com
|
30
30
|
executables: []
|
@@ -39,7 +39,7 @@ files:
|
|
39
39
|
- stylesheets/mixins/_lines.scss
|
40
40
|
- templates/project/manifest.rb
|
41
41
|
- templates/project/screen.scss
|
42
|
-
homepage: https://
|
42
|
+
homepage: https://github.com/bazzel/evh-stripes
|
43
43
|
licenses: []
|
44
44
|
metadata: {}
|
45
45
|
post_install_message:
|