Sha256: d0180b0dcdaf7b6952e21a76dab4ba722562ee0cd37ca138c5a39d879767eca3

Contents?: true

Size: 411 Bytes

Versions: 1

Compression:

Stored size: 411 Bytes

Contents

Rails.application.routes.draw do
  get "one", to: "test#one"
  
  mobile_optional do
    get "two", to: "test#two", as: :optional_mobile
    get "five", to: "test#path_checking"
    get "six", to: "test#redirect_checking"
    get "seven", to: "test#fixed_redirect_checking"
    get "eight", to: "test#path_rendering"
  end
  
  mobile_only do
    get "three", to: "test#three"
    root to: "test#four"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobile-enhancements-0.0.4 spec/internal/config/routes.rb