Sha256: 0d154b2d81cd96012a92944a222bbe32be78c134b936b4ea2d773bc54a992823
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# UrlShortly A simple Ruby gem for generating short URLs using Base62 encoding. ## Installation Add this line to your application's Gemfile: ```ruby gem 'url_shortly' ``` And then execute: ```bash $ bundle install ``` Or install it yourself as: ```bash $ gem install url_shortly ``` ## Usage Generate short URLs using short.ly domain: ```ruby require 'url_shortly' UrlShortly.shorten('https://really-long-url.com/with/lots/of/parameters') # => "http://short.ly/bK92m" # Invalid URLs will raise an error UrlShortly.shorten('not-a-valid-url') # => raises Shortly::Error, "Invalid URL format" UrlShortly.shorten('') # => raises UrlShortly::Error, "URL cannot be empty" ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/Inzmam/shortly. ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
url_shortly-0.1.0 | README.md |