Skip to content

Instantly share code, notes, and snippets.

@vsalbaba
Created August 19, 2009 13:47
Show Gist options
  • Save vsalbaba/170355 to your computer and use it in GitHub Desktop.
Save vsalbaba/170355 to your computer and use it in GitHub Desktop.
require "my_script"
Shoes.app do
button "run my_script" do
Thread.new do
call_method_in_script
end
end
end
def call_method_in_script
alert "I am a method in my_script!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment