Sha256: 885f21cfd1dd970c81b62ce01a432931f56e69aace65a0bbef4e241178f60985

Contents?: true

Size: 898 Bytes

Versions: 17

Compression:

Stored size: 898 Bytes

Contents

Rails.application.routes.draw do

  mount JasmineRails::Engine => '/specs' if defined?(JasmineRails)
  root to: 'pages#start'

  get 'method_test/:action', controller: 'method_test'
  post 'method_test/:action', controller: 'method_test'

  get 'binding_test/:action', controller: 'binding_test'
  get 'css_test/:action', controller: 'css_test'
  get 'error_test/:action', controller: 'error_test'
  post 'error_test/:action', controller: 'error_test'
  get 'replace_test/:action', controller: 'replace_test'
  get 'hash_test/:action', controller: 'hash_test'
  get 'reveal_test/:action', controller: 'reveal_test'
  get 'motion_test/:action', controller: 'motion_test'

  namespace :form_test do
    resource :basic, only: [:new, :create]
    resource :upload, only: [:new, :create]
    resource :redirect, only: [:new, :create] do
      member do
        get :target
      end
    end
  end

end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
unpoly-rails-0.57.0 spec_app/config/routes.rb
unpoly-rails-0.56.7 spec_app/config/routes.rb
unpoly-rails-0.56.6 spec_app/config/routes.rb
unpoly-rails-0.56.5 spec_app/config/routes.rb
unpoly-rails-0.56.4 spec_app/config/routes.rb
unpoly-rails-0.56.3 spec_app/config/routes.rb
unpoly-rails-0.56.2 spec_app/config/routes.rb
unpoly-rails-0.56.1 spec_app/config/routes.rb
unpoly-rails-0.56.0 spec_app/config/routes.rb
unpoly-rails-0.55.1 spec_app/config/routes.rb
unpoly-rails-0.55.0 spec_app/config/routes.rb
unpoly-rails-0.54.1 spec_app/config/routes.rb
unpoly-rails-0.54.0 spec_app/config/routes.rb
unpoly-rails-0.53.4 spec_app/config/routes.rb
unpoly-rails-0.53.3 spec_app/config/routes.rb
unpoly-rails-0.53.2 spec_app/config/routes.rb
unpoly-rails-0.53.1 spec_app/config/routes.rb