lib/tanshuku/engine.rb in tanshuku-0.0.19 vs lib/tanshuku/engine.rb in tanshuku-0.0.20

- old
+ new

@@ -1,14 +1,14 @@ # frozen_string_literal: true module Tanshuku - # Tanshuku's Rails engine. + # Tanshuku’s Rails engine. # # @note # The example below generates a routing +GET `/t/:key` to `Tanshuku::UrlsController#show`+. When your Rails app # receives a request to +/t/abcdefghij0123456789+, +Tanshuku::UrlsController#show+ will be called and a # +Tanshuku::Url+ record with a key +abcdefghij0123456789+ will be found. Then the request will be redirected to the - # +Tanshuku::Url+ record's original URL. + # +Tanshuku::Url+ record’s original URL. # # @example To mount Tanshuku to your Rails app # # config/routes.rb # Rails.application.routes.draw do # mount Tanshuku::Engine, at: "/t"