Skip to content

Instantly share code, notes, and snippets.

View meriororen's full-sized avatar
🎯
Focusing

Isa Ansharullah meriororen

🎯
Focusing
  • PT Hardtmann Mekatroniske Indonesia
  • Jakarta, Indonesia
View GitHub Profile
@meriororen
meriororen / capybara cheat sheet
Created June 27, 2012 03:24 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')
@meriororen
meriororen / mr_status_bar_app.rb
Created May 17, 2012 16:41 — forked from rubiojr/mr_status_bar_app.rb
MacRuby StatusBar Application
#
# Initialize the stuff
#
# We build the status bar item menu
def setupMenu
menu = NSMenu.new
menu.initWithTitle 'FooApp'
mi = NSMenuItem.new
mi.title = 'Hellow from MacRuby!'
mi.action = 'sayHello:'