under-os/under-os

View on GitHub
app/pages/home_page.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HomePage < UnderOs::Page

  def initialize
    find('#buttons button').each do |button|
      button.on :tap do
        page = (button.data('page').capitalize + "Page").constantize
        history << page.new
      end
    end
  end
end