
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
This is a simple gem to make it easier to handle styles for HTML elements.
It treats the styles as a hash, allowing styles to be merged easily.
It responds to to_s, producing CSS output
Add this line to your application's Gemfile:
gem 'autostyle'
And then execute:
$ bundle
Or install it yourself as:
$ gem install autostyle
style = Autostyle[background: { color: :red }]
# Both of these are equal
style.merge!(background: { color: :blue })
style[:background].merge!(color: :blue)
# Don't need to worry about nil errors
style[:text][:size] = '14px'
puts "style=\"#{style}\"" # implicitly converted to a string when needed
# style="background-color: blue; text-size: 14px"
# Merging a value for a style with "children" works as so:
style.merge!(background: 'no-repeat')
puts style.to_s # background-color: blue; background: no-repeat; text-size: 14px
# Or you can overwrite it:
style[:background] = '#ffffff'
puts style.to_s # text-size: 14px; background: #ffffff
# And with a hash:
style[:background] = { color: :red }
puts style.to_s # text-size: 14px; background-color: red
Bug reports and pull requests are welcome on GitHub at https://github.com/automeow/autostyle.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that autostyle 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.