openproject-octicons_helper 19.6.5 → 19.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/build/data.json +1 -1
- data/lib/build/svg/pin-slash-16.svg +1 -1
- data/lib/build/svg/pin-slash-24.svg +1 -1
- data/lib/build/svg/repo-clone-16.svg +1 -1
- data/lib/build/svg/repo-clone-24.svg +1 -0
- data/lib/build/svg/repo-pull-16.svg +1 -1
- data/lib/build/svg/repo-pull-24.svg +1 -0
- data/lib/octicons_helper/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72ce90b8514d87d6bfca006b20f1a09d5df68befa2ae1b3ccf6958d0071d11f0
|
4
|
+
data.tar.gz: 7ee860755df9f046cf17dddd16fc4f581279c439dc5a58552f5ca66d597107ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc1bd405a2108403b6a53205d775fe5d6a53fe855c39297e753e5a55fd10575e973b4a9712c2f2cfc9a0a20464b518da2a7f84e7f5dc1db6fa2339b3d91f797
|
7
|
+
data.tar.gz: 90df43929372bd462892e5770396b1175d9d6781c1624635bb0464b63507c146207cbf60e24592b91542198e52d6ffd4dd9dc6aa99aa275bb6dad0a34169162b
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# octicons_helper
|
2
2
|
|
3
|
-
[![Gem version](https://img.shields.io/gem/v/octicons_helper.svg)](https://rubygems.org/gems/octicons_helper)
|
3
|
+
[![Gem version](https://img.shields.io/gem/v/openproject-octicons_helper.svg)](https://rubygems.org/gems/openproject-octicons_helper)
|
4
4
|
|
5
5
|
|
6
6
|
This rails helper lets you easily include svg octicons in your rails apps.
|
@@ -10,7 +10,7 @@ This rails helper lets you easily include svg octicons in your rails apps.
|
|
10
10
|
1. Add this to your `Gemfile`
|
11
11
|
|
12
12
|
```rb
|
13
|
-
gem 'octicons_helper'
|
13
|
+
gem 'openproject-octicons_helper'
|
14
14
|
```
|
15
15
|
|
16
16
|
3. Use this tag in your erbs
|
@@ -18,4 +18,4 @@ This rails helper lets you easily include svg octicons in your rails apps.
|
|
18
18
|
```rb
|
19
19
|
<%= octicon "alert", :height => 32, :class => "right left", :"aria-label" => "hi" %>
|
20
20
|
```
|
21
|
-
We recommend including the CSS in the [`@
|
21
|
+
We recommend including the CSS in the [`@openproject/octicons-angular`](/packages/javascript) npm module. You can also npm install that package and include `@openproject/octicons-angular/styles/index.scss` in your styles.
|