
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Yet Another gem for generating slug strings suitable for URLs (or whatever your slug business may be).
What makes this one different? This gives you tools for ensuring the uniqueness of your slugs, and if your slug is not unique it allows you to plug in different strategies for generating unique slugs.
Add this line to your application's Gemfile:
gem 'slug_fu'
And then execute:
$ bundle
Or install it yourself as:
$ gem install slug_fu
include SlugFu
SlugFu(string) # doesn't need to check uniqueness, just make a slug string
SlugFu(string, context: %w(one two)) # generated slug will unique as far as `context.include?(slug)` is concerned
class NamingStrategy
def initialize(str)
@str = str
end
def next
@next = @next.nil? ? @str : @next + "-"
end
end
SlugFu("one", context: %w(one one-), naming_strategy: NamingStrategy) # Use a custom strategy for naming, calling #next until a unique name is found
SlugFu supplies SlugFu::ModelContext
for ensuring uniqueness on Rails models.
include SlugFu
SlugFu(str, context: SlugFu::ModelContext.new(Book)) # slug will be unique for the `Book#slug` attribute
SlugFu(str, context: SlugFu::ModelContext.new(Book.where(language: "en")) # slug will be unique for the `Book#slug` attribute in the given scope
SlugFu(str, context: SlugFu::ModelContext.new(Book, :url_slug)) # slug will be unique for the `Book#url_slug` attribute
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
Bug reports and pull requests are welcome on GitHub at https://github.com/soulcutter/slug_fu
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that slug_fu 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
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.