octicons_helper 17.12.0 → 18.1.0
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 +17 -1
- data/lib/build/data.json +1 -1
- data/lib/build/svg/issue-tracked-by-16.svg +1 -1
- data/lib/build/svg/issue-tracked-by-24.svg +1 -1
- data/lib/build/svg/issue-tracks-16.svg +1 -0
- data/lib/build/svg/issue-tracks-24.svg +1 -0
- data/lib/build/svg/passkey-fill-16.svg +1 -0
- data/lib/build/svg/passkey-fill-24.svg +1 -0
- data/lib/build/svg/shield-slash-24.svg +1 -0
- data/lib/octicons_helper/version.rb +1 -1
- metadata +9 -6
- data/lib/build/svg/issue-tracked-in-16.svg +0 -1
- data/lib/build/svg/issue-tracked-in-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: 82a45301361757889b50457452ef7649c294b1c99677712b621b4a530d58ce79
|
4
|
+
data.tar.gz: 9c7fb5a2c33d32b58faeca5d6dd8016147a816286bef22ae500c10c4a8047686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b843dd44aa33b6fd9475b73ec257c65e6f2cc3b2ea8a47753c4e7bcef14ba1bacb3d231ad3f8e24f01aef14440e00bad53993d43667e86c49e51581908b8a65
|
7
|
+
data.tar.gz: 8ef182dab9dc0b52dac6a5036a4fa8097b268cf2df081691f5e0e6371680eb028f75b8663ad483c653c7108183c5e45596bf22bc9e84c00376e0a0cc04fdc5da
|
data/README.md
CHANGED
@@ -2,4 +2,20 @@
|
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/octicons_helper)
|
4
4
|
|
5
|
-
|
5
|
+
|
6
|
+
This rails helper lets you easily include svg octicons in your rails apps.
|
7
|
+
|
8
|
+
## Install
|
9
|
+
|
10
|
+
1. Add this to your `Gemfile`
|
11
|
+
|
12
|
+
```rb
|
13
|
+
gem 'octicons_helper'
|
14
|
+
```
|
15
|
+
|
16
|
+
3. Use this tag in your erbs
|
17
|
+
|
18
|
+
```rb
|
19
|
+
<%= octicon "alert", :height => 32, :class => "right left", :"aria-label" => "hi" %>
|
20
|
+
```
|
21
|
+
We recommend including the CSS in the [`@primer/octicons`](/packages/javascript) npm module. You can also npm install that package and include `build/build.css` in your styles.
|