openproject-octicons_helper 19.6.5 → 19.6.7
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 +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7da73adc52ff3f482f9b4423c414f3474512dcb8806303e5d652ecfdf150ab03
|
4
|
+
data.tar.gz: d737a5805616248334abe7e44c7e3fad78944917b0b463c5524355dc20d03c8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4aea3ab13e51d9ca4d7e2710409c358263d8519045114c0eb10a38e92b64589388ce2341f22094a6d0df465a806c191414524a484b432326552caf13009a87b
|
7
|
+
data.tar.gz: dba75f95697259a2ed15c2498812fa2f4ef9a60ca477c09d7d891ef227989c8b7c1bc00a7405b8c7555d327d2acb7780ae082386480c009c48aa1ca654994dba
|
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.
|