Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Provides a helper for using Google Webfonts in Rails or Sinatra.
Add this line to your application's Gemfile:
gem 'google-webfonts'
And then execute:
$ bundle
Or install it yourself as:
$ gem install google-webfonts
google_webfonts_link_tag :font_name => [sizes], ...
Basic usage:
google_webfonts_link_tag :droid_sans => [400, 700],
:yanone_kaffeesatz => [300, 400]
The sizes are optional, and do not have to be in an Array if you are only including one size. For example:
google_webfonts_link_tag :droid_sans
# => generates a tag for Droid+Sans without specifying the font weight
google_webfonts_link_tag :droid_sans => 400
# => generates a tag for Droid+Sans with 400 weight
google_webfonts_link_tag :droid_sans => [400, 700]
# => generates a tag for Droid+Sans with 400 and 700 weights
You can also use a String instead of a Symbol if you'd prefer. For example:
google_webfonts_link_tag "Droid Sans", "Yanone Kaffeesatz" => 400
# includes Droid+Sans without a specified weight
# and Yanone+Kaffeesatz with weight 400
No additional work required to use this gem in a Rails application. Just add it to your application's Gemfile, and it is automatically available in your views.
You will, however, need to include Google::Webfonts::Helper
if you want to use
it outside of a view.
Here is a simple "Hello World" example for using Google::Webfonts in a Sinatra app:
# app.rb
require 'rubygems'
require 'sinatra'
require 'google-webfonts' # <= this must be required after 'sinatra'
get '/' do
erb :index
end
# views/index.erb
<html>
<head>
<%= google_webfonts_link_tag "Droid Sans" %>
</head>
<body>
<p style="font-family: 'Droid+Sans', sans-serif;">
Hello World!
</p>
</body>
</html>
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)rspec spec
)FAQs
Unknown package
We found that GoogleWebfonts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.