inesita-rb / inesita

Frontend web application framework in Ruby using Opal.
https://inesita.fazibear.me/
MIT License
259 stars 15 forks source link

bug creating an app with the latest version of gem #43

Closed jeezs closed 6 years ago

jeezs commented 6 years ago

with the latest version(0.8.2) of the gem, the file router.rb miss some lines the routes are :

class Router
  include Inesita::Router
  def routes
    route '/', to: Home
    route '/description', to: Description
  end
end

but should be :

class Router
  include Inesita::Router

  def routes
    route '/', to: Home
    route '/description', to: Description
    route '/counters', to: Counters
    route '/repositories', to: Repositories
  end
end
fazibear commented 6 years ago

Thanks, but just /counters route was added