
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
Ruby on Rails views helper method for rendering beautiful feather icons. See all the icons here.
Add this line to your application's Gemfile:
gem "rails_feather"
And then execute:
bundle install
Or install it yourself as:
gem install rails_feather
After installing the gem, call <%= feather_icon "activity" %>
on your erb
template.
The first argument is the icon name. All the icons are listed here.
This will generate the following html:
<svg
version="1.1"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>
</svg>
Specify a size
param in the helper method to set the height
and width
on the svg
icon.
<%= feather_icon "activity", size: 20 %>
size
defaults to 24
if not defined.
stroke-width
of the iconSpecify a stroke_width
param in the helper method to set the stroke-width
on the svg
icon.
<%= feather_icon "activity", stroke_width: 1 %>
stroke_width
defaults to 2
if not defined.
Any html
and eruby
attribute syntax is supported, for eg:
<%= feather_icon "activity", class: "custom-class", aria: { label: "User activity" } %>
rails_feather
automatically sets aria-hidden="true"
if aria-label
is not
set, and if aria-label
is set, then role=img
is set on the svg
.
bundle install
or ./bin/setup
rake
to run the testsBug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
Please refer to CONTRIBUTING.md for further instructions.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the rails_feather project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that rails_feather demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.