Sha256: 30a6eb2bf71a95246768e9e600a6c62b8e19a722d2a03d89b2ea3485b52021b8

Contents?: true

Size: 1.22 KB

Versions: 4

Compression:

Stored size: 1.22 KB

Contents

# Do yourself a favor and set these up right when you install the engine.

ZhuleiCanonicalRails.setup do |config|

  # Force the protocol. If you do not specify, the protocol will be based on the incoming request's protocol.

  config.protocol#= 'https://'

  # This is the main host, not just the TLD, omit slashes and protocol. If you have more than one, pick the one you want to rank in search results.

  config.host# = 'www.mywebstore.com'
  config.port# = '3000'

  # http://en.wikipedia.org/wiki/URL_normalization
  # Trailing slash represents semantics of a directory, ie a collection view - implying an :index get route;
  # otherwise we have to assume semantics of an instance of a resource type, a member view - implying a :show get route
  #
  # Acts as a whitelist for routes to have trailing slashes

  config.collection_actions# = [:index]

  # Parameter spamming can cause index dilution by creating seemingly different URLs with identical or near-identical content.
  # Unless whitelisted, these parameters will be omitted

  config.whitelisted_parameters# = []

  # Output a matching OpenGraph URL meta tag (og:url) with the canonical URL, as recommended by Facebook et al
  config.opengraph_url#= true
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
zhulei-canonical-rails-1.0.1 lib/generators/zhulei_canonical_rails/install/templates/zhulei_canonical_rails.rb
zhulei-canonical-rails-1.0.0 lib/generators/canonical_rails/install/templates/canonical_rails.rb
zhulei-canonical-rails-0.1.1 lib/generators/canonical_rails/install/templates/canonical_rails.rb
zhulei-canonical-rails-0.1.0 lib/generators/canonical_rails/install/templates/canonical_rails.rb