rails_icons 1.7.0 → 1.7.1
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/Gemfile.lock +3 -3
- data/README.md +2 -1
- data/lib/rails_icons/version.rb +1 -1
- data/rails_icons.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53d052de970b40fa2b2d56b1312fcb8571c7bc22eaed1a8d7a4b222699ee6d68
|
|
4
|
+
data.tar.gz: a67eb5e2314eb02a4372f336d69c8ee51306a3a21597a9b02523a74f09bf6dd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00deea25eab7ba7db2c90068d0f772e83ca4425144369111430a7001bbf6160ce684ad4f5fc38adcd9a586c85651ff3fe56c79bb3c53fecc854a2d5073c94f3d
|
|
7
|
+
data.tar.gz: e188f7d1dd7958dcc1e16444f122299be1660b03a0b15f879f1ee8914639cfdd9727096dbcbbe78a16940aca9c0d7740174ce37793308902c5257ca241338d57
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rails_icons (1.7.
|
|
5
|
-
icons (~> 0.8.
|
|
4
|
+
rails_icons (1.7.1)
|
|
5
|
+
icons (~> 0.8.1)
|
|
6
6
|
rails (>= 7.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
@@ -102,7 +102,7 @@ GEM
|
|
|
102
102
|
activesupport (>= 6.1)
|
|
103
103
|
i18n (1.14.7)
|
|
104
104
|
concurrent-ruby (~> 1.0)
|
|
105
|
-
icons (0.8.
|
|
105
|
+
icons (0.8.1)
|
|
106
106
|
nokogiri (~> 1.16, >= 1.16.4)
|
|
107
107
|
io-console (0.8.1)
|
|
108
108
|
irb (1.15.2)
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Rails Icons
|
|
2
2
|
|
|
3
|
-
Add any icon library to a Rails app. Rails Icons has first-party support for a [handful of libraries](#first-party-libraries). It is library agnostic so it can be used with any icon library using the same interface.
|
|
3
|
+
Add any icon library to a Rails app. Rails Icons has first-party support for a [handful of libraries](#first-party-libraries). It is library agnostic so it can be used with any icon library using the same interface. Rails Icons is a Rails gem for the [Icons Ruby gem](https://github.com/Rails-Designer/icons).
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -81,6 +81,7 @@ icon "check", stroke_width: 2
|
|
|
81
81
|
- [Feather](https://railsdesigner.com/open-source/rails-icons/feather/) (280+ icons)
|
|
82
82
|
- [Flags](https://railsdesigner.com/open-source/rails-icons/flags/) (540+ icons)
|
|
83
83
|
- [Heroicons](https://railsdesigner.com/open-source/rails-icons/heroicons/) (300+ icons)
|
|
84
|
+
- [Hugeicons](https://railsdesigner.com/open-source/rails-icons/hugeicons/) (4600+ icons)
|
|
84
85
|
- [Linear](https://railsdesigner.com/open-source/rails-icons/linear/) (170+ icons)
|
|
85
86
|
- [Lucide](https://railsdesigner.com/open-source/rails-icons/lucide/) (1500+ icons)
|
|
86
87
|
- [Phosphor](https://railsdesigner.com/open-source/rails-icons/phosphor/) (9000+ icons)
|
data/lib/rails_icons/version.rb
CHANGED
data/rails_icons.gemspec
CHANGED
|
@@ -19,5 +19,5 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.files = Dir["{bin,app,config,db,lib,public}/**/*", "Rakefile", "README.md", "rails_icons.gemspec", "Gemfile", "Gemfile.lock"]
|
|
20
20
|
|
|
21
21
|
spec.add_dependency "rails", ">= 7.0"
|
|
22
|
-
spec.add_dependency "icons", "~> 0.8.
|
|
22
|
+
spec.add_dependency "icons", "~> 0.8.1"
|
|
23
23
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_icons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rails Designer Developers
|
|
@@ -29,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.8.
|
|
32
|
+
version: 0.8.1
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.8.
|
|
39
|
+
version: 0.8.1
|
|
40
40
|
description: Add any icon library to a Rails app, from Heroicons, to Lucide to Tabler
|
|
41
41
|
(and others). Rails Icons is library-agnostic, so you can add any library while
|
|
42
42
|
using the same interface.
|
|
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
90
|
version: '0'
|
|
91
91
|
requirements: []
|
|
92
|
-
rubygems_version: 4.0.
|
|
92
|
+
rubygems_version: 4.0.8
|
|
93
93
|
specification_version: 4
|
|
94
94
|
summary: Add any icon library to a Rails app
|
|
95
95
|
test_files: []
|