Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 915 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 915 Bytes

Inesita Router Gem Version Code Climate Build Status

Router for Inesita framework.

Example

class Router
  include Inesita::Router

  def auth
    unless store.logged_in?
      go_to('/login')
    end
  end

  def routes
    route '/', to: Home, on_enter: method(:auth)
    route '/list', to: List, on_enter: method(:auth)
    route '/login', to: Login
  end
end

Thank you!

Become Patreon