rubicons 0.5.1 → 0.6.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/lib/rubicons/bootstrap.rb +12 -0
- data/lib/rubicons/box_icons.rb +12 -0
- data/lib/rubicons/circum_icons.rb +12 -0
- data/lib/rubicons/feather.rb +12 -0
- data/lib/rubicons/font_awesome5.rb +12 -0
- data/lib/rubicons/font_awesome6.rb +12 -0
- data/lib/rubicons/heroicons.rb +12 -0
- data/lib/rubicons/heroicons2.rb +12 -0
- data/lib/rubicons/ionicons4.rb +12 -0
- data/lib/rubicons/ionicons5.rb +12 -0
- data/lib/rubicons/line_awesome.rb +12 -0
- data/lib/rubicons/lucide.rb +12 -0
- data/lib/rubicons/material_design.rb +12 -0
- data/lib/rubicons/octicons.rb +12 -0
- data/lib/rubicons/phosphor_icons.rb +12 -0
- data/lib/rubicons/radix.rb +12 -0
- data/lib/rubicons/remix_icon.rb +12 -0
- data/lib/rubicons/simple_icons.rb +12 -0
- data/lib/rubicons/tabler_icons.rb +12 -0
- data/lib/rubicons/themify_icons.rb +13 -1
- data/lib/rubicons/typicons.rb +12 -0
- data/lib/rubicons/version.rb +1 -1
- data/lib/rubicons/weather_icons.rb +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3125d7e05a1fc81d7468a0f284e4ba08f8fb1b20b51e90e1992486f224ce8fe4
|
|
4
|
+
data.tar.gz: b2622c17c213fe34bab983559ce53072712552d991d12f4f5b86caf2644a7cd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f2be40d8c0da579e26ee4623b9c92a57b021222a33fb293e4e4ff6e830a0ec528d5d0d4dcb78d688aafdcef7ce40f59f257d5e08fd262fe636ec80c0f797759
|
|
7
|
+
data.tar.gz: b6f32622544f48269ca52ba8a327beab3897b4c8a2fe616622827c3f722e3488159900b3e0068e97c2f7a120a103bff66eb32bfc226b5988679efa3887633c29
|
data/lib/rubicons/bootstrap.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/bootstrap', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Bootstrap Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Bootstrap Icons is a free, high-quality icon library with over 1,500 icons. It is designed to work seamlessly with Bootstrap and other frameworks.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/box_icons.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/box_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Box Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Box Icons is a free collection of carefully crafted open source icons. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT/CC 4.0'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/circum_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Circum Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Circum Icons is a clean and consistent open-source icon library with a focus on circular design elements for modern interfaces.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MPL-2.0'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/feather.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/feather', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Feather Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Feather is a collection of simply beautiful open source icons designed by Cole Bemis. Each icon is designed on a 24×24 grid with an emphasis on simplicity, consistency, and readability.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/font_awesome5', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Font Awesome 5'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Font Awesome 5 is an icon set used by millions of designers, developers, and content creators with icons for web development, mobile apps, and desktop applications.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'Multiple'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/font_awesome6', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Font Awesome 6'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Font Awesome 6 is the latest version of the popular icon library with thousands of icons for web, mobile, and desktop applications across various styles and categories.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'Multiple'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/heroicons.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/heroicons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Heroicons v1'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Heroicons v1 is a set of free, MIT-licensed high-quality SVG icons for UI development, designed by the makers of Tailwind CSS.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/heroicons2.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/heroicons2', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Heroicons v2'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Heroicons v2 is the latest version of the beautiful hand-crafted SVG icons from the makers of Tailwind CSS, with solid and outline variants in multiple sizes.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/ionicons4.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/ionicons4', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Ionicons 4'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Ionicons 4 is a premium icon library for Ionic Framework with iOS, Material Design, and outline versions of commonly used icons.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/ionicons5.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/ionicons5', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Ionicons 5'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Ionicons 5 is the latest version of the icon pack for Ionic Framework applications with beautifully crafted icons optimized for web, iOS, and Material Design.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/line_awesome', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Line Awesome'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Line Awesome is a free alternative to Font Awesome with over 1,500 icons that can be easily swapped between Font Awesome and Line Awesome.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT/Good Boy'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/lucide.rb
CHANGED
|
@@ -9,6 +9,18 @@ module Rubicons
|
|
|
9
9
|
ICONS_PATH = File.expand_path('../../icons/lucide', __dir__)
|
|
10
10
|
|
|
11
11
|
class << self
|
|
12
|
+
def pack_name
|
|
13
|
+
'Lucide'
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def description
|
|
17
|
+
'Lucide is a beautiful and consistent icon toolkit made by the community. It is a fork of Feather Icons with hundreds of additional icons and active community development.'
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def license
|
|
21
|
+
'ISC'
|
|
22
|
+
end
|
|
23
|
+
|
|
12
24
|
def icon(name, **options)
|
|
13
25
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
14
26
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/material_design', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Material Design Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Material Design Icons is a collection of icons based on Google\'s Material Design guidelines, providing thousands of icons across various categories for modern web and app development.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'Apache 2.0'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/octicons.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/octicons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Octicons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Octicons are GitHub\'s open-source icon set, providing a clean and consistent way to add visual elements to your project with icons used across GitHub\'s interface.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/phosphor_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Phosphor Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Phosphor Icons is a flexible icon family for interfaces, diagrams, presentations and more with multiple weights and styles for versatile design applications.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/radix.rb
CHANGED
|
@@ -9,6 +9,18 @@ module Rubicons
|
|
|
9
9
|
ICONS_PATH = File.expand_path('../../icons/radix', __dir__)
|
|
10
10
|
|
|
11
11
|
class << self
|
|
12
|
+
def pack_name
|
|
13
|
+
'Radix UI Icons'
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def description
|
|
17
|
+
'Radix UI Icons is a crisp set of icons designed by the Radix UI team, primarily for use with Radix UI components and modern web applications.'
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def license
|
|
21
|
+
'MIT'
|
|
22
|
+
end
|
|
23
|
+
|
|
12
24
|
def icon(name, **options)
|
|
13
25
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
14
26
|
end
|
data/lib/rubicons/remix_icon.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/remix_icon', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Remix Icon'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Remix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike other icon sets, Remix Icon provides more than 2000 icons in various categories.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'Apache 2.0'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/simple_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Simple Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Simple Icons is a collection of SVG icons for popular brands and services, perfect for use in projects that require recognizable logos and brand marks.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'CC0 1.0'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/tabler_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Tabler Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Tabler Icons is a set of over 1,950 free MIT-licensed high-quality SVG icons for web design with a consistent style and optimized for clarity even at small sizes.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'MIT'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
|
@@ -4,9 +4,21 @@ module Rubicons
|
|
|
4
4
|
module ThemifyIcons
|
|
5
5
|
autoload :RailsHelper, 'rubicons/themify_icons/rails_helper'
|
|
6
6
|
|
|
7
|
-
ICONS_PATH = File.expand_path('../../icons/
|
|
7
|
+
ICONS_PATH = File.expand_path('../../icons/themify', __dir__)
|
|
8
8
|
|
|
9
9
|
class << self
|
|
10
|
+
def pack_name
|
|
11
|
+
'Themify Icons'
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def description
|
|
15
|
+
'Themify Icons is a complete set of icons for use in web design and apps, consisting of 320+ pixel-perfect, hand-crafted icons that are suitable for various projects.'
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def license
|
|
19
|
+
'SIL OFL 1.1'
|
|
20
|
+
end
|
|
21
|
+
|
|
10
22
|
def icon(name, **options)
|
|
11
23
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
12
24
|
end
|
data/lib/rubicons/typicons.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/typicons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Typicons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Typicons is a carefully crafted set of free-to-use vector icons with a minimal and modern style that can be used in both personal and commercial projects.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'SIL OFL 1.1'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|
data/lib/rubicons/version.rb
CHANGED
|
@@ -10,6 +10,18 @@ module Rubicons
|
|
|
10
10
|
ICONS_PATH = File.expand_path('../../icons/weather_icons', __dir__)
|
|
11
11
|
|
|
12
12
|
class << self
|
|
13
|
+
def pack_name
|
|
14
|
+
'Weather Icons'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'Weather Icons is a comprehensive collection of weather-themed icons designed for meteorological and forecast applications, featuring hundreds of detailed climate and weather symbols.'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def license
|
|
22
|
+
'SIL OFL 1.1'
|
|
23
|
+
end
|
|
24
|
+
|
|
13
25
|
def icon(name, **options)
|
|
14
26
|
BaseIconSet.render_icon(name, ICONS_PATH, **options)
|
|
15
27
|
end
|