bootstrap_icons_rubygem 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d22d0e3627f834edf56c10c9864123b35c00c7895bb4d1d405bed59226b913bb
4
+ data.tar.gz: 1ddf2aabbd3ead1dd19959fe8be288d09f59c1388fed55a4e41ec058b02d235a
5
+ SHA512:
6
+ metadata.gz: a28b1687d6bd48889287516414ec27856b0877fd63e346fd90e723b19f05538fa13375c6b1b9a5db1cbd4e43e15cc370be33c5521c5225ba5d2258b4363100f2
7
+ data.tar.gz: d180baa55d336a11d229c167b51114b7e68a8d334952c1be9557dda2d218fb139a097a5b4a0fd8a07e3744169e42ea82635de552bfa1b72dfa63ad16df8c3c07
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2022 hfpp2012
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # bootstrap_icons_rubygem
2
+
3
+ bootstrap_icons_rubygem provides the Bootstrap icons web fonts and stylesheets as a Rails engine for use with the asset pipeline.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'bootstrap_icons_rubygem'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install bootstrap_icons_rubygem
20
+
21
+ In your `application.css`, include the css file:
22
+
23
+ ```css
24
+ *= require bootstrap-icons
25
+ ```
26
+
27
+ or if you prefer scss add this to your `application.scss` file:
28
+
29
+ ```scss
30
+ @import "bootstrap-icons"; //application.scss
31
+ ```
32
+
33
+ ## My other open source projects
34
+
35
+ [railstart-niceadmin](https://github.com/hfpp2012/railstart-niceadmin)
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]