Tags: ozpos/green_shoes
Tags
Implemented Image#path and Image#path= methods and edited built-in ma… …nual. A test snippet is: require 'green_shoes' Shoes.app do img = image './loogink.png' p = para img.path img.move 200, 200 button 'change' do img.path = 'http://is.gd/c0mBtb' p.text = img.path end end