Sha256: c73006af442f2145cde5929c37d0cbcee7835908eeeabc799a87c0abedca6d2e

Contents?: true

Size: 268 Bytes

Versions: 4

Compression:

Stored size: 268 Bytes

Contents

require_dependency "mvp/application_controller"

module MinimumViableProduct
  class SeoController < ApplicationController
    def robots
      render text: %%
  User-agent: *
  Disallow:
  Sitemap: #{sitemap_url}
      %, content_type: "text/plain"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
minimum-viable-product-0.0.7 app/controllers/mvp/seo_controller.rb
minimum-viable-product-0.0.6 app/controllers/mvp/seo_controller.rb
minimum-viable-product-0.0.5 app/controllers/mvp/seo_controller.rb
minimum-viable-product-0.0.4 app/controllers/mvp/seo_controller.rb