rails_heroicon 2.1.0 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/compressed/icons.json +854 -854
- data/lib/rails_heroicon/helper.rb +8 -2
- data/lib/rails_heroicon/rails_heroicon.rb +7 -1
- data/lib/rails_heroicon/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c05e0e840f77c1ed3b127f6f61c8a77b9a34d6358c3e2490dae2931c09802fa6
|
4
|
+
data.tar.gz: 78c3553ef3abfbeb08368e4e36331e34ed2d5ceeb5593d38d693a41792896e2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 574f9b4af442063bf2df10f1ab4076b96a21f5418d2e520fb9bf4e1928ba0a27d81eadb949179e85ea05fd234f88d2f92b626bf255fe46709d54bc77cc911da2
|
7
|
+
data.tar.gz: 16241eadfb99b0e778c32ecbbbebe722f6e9be39acebc44fdab110133b1cdf2ea2b3c347f7f1a544dfe595af86468252ee8fdca31f44eb78c02728d19d59ee05
|
data/README.md
CHANGED
@@ -3,7 +3,9 @@
|
|
3
3
|
Ruby on Rails views helper for the awesome heroicons by Steve Schoger. To see
|
4
4
|
all the icons visit [heroicons](https://heroicons.com/).
|
5
5
|
|
6
|
-
|
6
|
+
The latest version of this gem is built with heroicons
|
7
|
+
[v2.0.16](https://github.com/tailwindlabs/heroicons/releases/tag/v2.0.16) (292
|
8
|
+
icons).
|
7
9
|
|
8
10
|
> This gem has no official affiliation with [Tailwind Labs](https://github.com/tailwindlabs),
|
9
11
|
> yet.
|
@@ -37,6 +39,7 @@ This will generate the following html:
|
|
37
39
|
|
38
40
|
```html
|
39
41
|
<svg
|
42
|
+
xmlns="http://www.w3.org/2000/svg"
|
40
43
|
aria-hidden="true"
|
41
44
|
width="24"
|
42
45
|
height="24"
|
@@ -61,7 +64,7 @@ This will generate the following html:
|
|
61
64
|
</svg>
|
62
65
|
```
|
63
66
|
|
64
|
-
> Note: Indentation is for
|
67
|
+
> Note: Indentation is for readability purpose.
|
65
68
|
|
66
69
|
### Variant
|
67
70
|
|
@@ -110,6 +113,11 @@ display a tooltip on hover.
|
|
110
113
|
- Run `bundle install`, or run `./bin/setup`
|
111
114
|
- Run `bundle exec rake` to run the tests to see if it passing
|
112
115
|
|
116
|
+
## Publishing
|
117
|
+
|
118
|
+
- `gem build rails_heroicon.gemspec`
|
119
|
+
- `gem push rails_heroicon-x.x.x.gem`
|
120
|
+
|
113
121
|
## Contributing
|
114
122
|
|
115
123
|
Bug reports and pull requests are welcome. This project is intended to be a
|