shortener icon indicating copy to clipboard operation
shortener copied to clipboard

Shortener makes it easy to create shortened URLs for your rails application.

Results 9 shortener issues
Sort by recently updated
recently updated
newest added

when generating a shortened URL for the same link, and sending a new expiration date, it doesn't update the expiration. example: generate a link today, with 6.month.from_now expiration date with...

This gem uses https://github.com/biola/Voight-Kampff for bot detection. This gem has not been updated in 3 years and is not Ruby 3.0 incompatible. Several PRs and issues have been pending there...

Adds the following 2 settings: - `Shortener.cache_urls` (boolean, default: `false`) - `Shortener.cache_expiration` (numeric, default: `nil`)

Today morning i encountered that links' ability to expire does not function properly. Turned out that unexpired links were filtered using ::Time::current::to_s(:db) routine, which outputs incorrect time for my country...

Here's the simple request responsible for generating expiry links,which simply delegates the work to shortener api. ```ruby def form_expiry_link link = Shortener::ShortenedUrl.generate('https://facebook.com', expires_at: DateTime.now) render json: link end ``` However,...

We would like to generate thousands of alphanumeric links like this: ``` foo.com/1Gk82 foo.com/MB8d3 ... ``` However sometimes we also would like to make a "permashortlink" ``` foo.com/flash_sale ``` As...

Hi, thanks for this gem, it made our work easier. One thing though - in the readme you are mentioning that it is possible to forbid some words from being...

Hi, I am trying to generate a short url using the provided helper method but it gives me a undefined method `short_url' so I had to hack a similar method...

I was curious whether it would make sense to add a gem configuration of specifying an expiration header? In a lot of use cases these urls do not change so...