Sha256: 679443e94f7e8921b9728f6e7a7f41951808b4255c3edecc1cd188e10c635309

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 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"
  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.3 spec/internal/config/routes.rb