Hacker News new | ask | show | jobs
by kscaldef 5977 days ago
Really? That's the example you want to use. First thing I see on that page:

  get / 'orders' >> :orders > :index

  with route / :slug / 'order' >> :orders do
    get > :show
    put > :update
  end

  get {'item_images' => :controller} / :image > :show
That looks like Ruby all over the place. Yeah, it overloads operator methods more than most Ruby code, but it's very clear that it's Ruby.
1 comments

I and i think most people would disagree with you because above does not "feel like" Ruby.