octicons_v2_helper 0.0.0.pre.ff67761 → 0.0.0.pre.117d2c0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +36 -2
- data/lib/build/data.json +1 -1
- data/lib/build/svg/{device-desktop-24.svg → desktop-device-24.svg} +0 -0
- data/lib/build/svg/grabber-3-24.svg +3 -0
- data/lib/build/svg/light-bulb-16.svg +1 -1
- data/lib/build/svg/lightbulb-24.svg +3 -0
- data/lib/build/svg/people-24.svg +1 -2
- data/lib/build/svg/person-24.svg +2 -1
- data/lib/build/svg/{diff-24.svg → request-changes-24.svg} +0 -0
- data/lib/octicons_v2_helper/version.rb +1 -1
- metadata +8 -11
- data/lib/build/svg/light-bulb-24.svg +0 -3
- data/lib/build/svg/no-entry-16.svg +0 -1
- data/lib/build/svg/no-entry-24.svg +0 -1
- data/lib/build/svg/report-16.svg +0 -1
- data/lib/build/svg/report-24.svg +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82230fbc211f9e42d62f36a5cf6b4175afec6c3cc0f5a5609e2463082addfbf4
|
4
|
+
data.tar.gz: 334a047f068088ed2f28856e5c38127a575037529dd48f5ecb752869f6ee4f2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 246d45275c6ea4dd9149773065131300f2704b8b19a974555cbb7d7aee0dffc6fea474d8ca2e848cc4079dedc322ba93c7e7ea41a705fb6edb53decdd3ee7a81
|
7
|
+
data.tar.gz: bc8e02859ec442bcb7394f0fc723ce79001853ff6499e98e6c93ef82cfa26b25c0ebabe12f6cdb8ad53cb4ce9609e58bcff642630464ce13e232eddb315f2ce9
|
data/README.md
CHANGED
@@ -1,5 +1,39 @@
|
|
1
|
-
#
|
1
|
+
# Octicons rails helper
|
2
2
|
|
3
3
|
[![Gem version](https://img.shields.io/gem/v/octicons_helper.svg)](https://rubygems.org/gems/octicons_helper)
|
4
|
+
[![Build Status](https://travis-ci.org/primer/octicons.svg?branch=master)](https://travis-ci.org/primer/octicons)
|
4
5
|
|
5
|
-
|
6
|
+
> A rails helper that inlines SVG octicons
|
7
|
+
|
8
|
+
This rails helper let's you easily include svg [octicons][octicons-docs] in your rails apps.
|
9
|
+
|
10
|
+
## Install
|
11
|
+
|
12
|
+
1. Add this to your `Gemfile`
|
13
|
+
|
14
|
+
```rb
|
15
|
+
gem 'octicons_helper'
|
16
|
+
```
|
17
|
+
|
18
|
+
3. Use this tag in your erbs
|
19
|
+
|
20
|
+
```rb
|
21
|
+
<%= octicon "alert", :height => 32, :class => "right left", :"aria-label" => "hi" %>
|
22
|
+
```
|
23
|
+
|
24
|
+
We recommend including the CSS in the [octicons_node](../octicons_node/) module. You can also npm install that package and include `build/build.css` in your styles.
|
25
|
+
|
26
|
+
## Documentation
|
27
|
+
|
28
|
+
For a full list of options available, see the [octicons_gem documentation](../octicons_gem/#documentation)
|
29
|
+
|
30
|
+
## License
|
31
|
+
|
32
|
+
(c) GitHub, Inc.
|
33
|
+
|
34
|
+
When using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).
|
35
|
+
|
36
|
+
[MIT](./LICENSE)
|
37
|
+
|
38
|
+
[octicons]: https://github.com/primer/octicons
|
39
|
+
[octicons-docs]: https://octicons.github.com/
|