Ruby Shoes不适用于符号

时间:2013-11-03 11:23:30

标签: ruby linux ubuntu shoes

我在Ubuntu安装了Shoes,但它无法正常工作。 例如:

它不起作用

     Shoes.app :width => 200 :height => 300 do
    button("Hello"){
        alert("DaBuDi")
    }
end

它在鞋子窗口中写了“语法错误”......

 Shoes.app do
    button("Hello"){
        alert("DaBuDi")
    }
end

它有效。

我按照https://github.com/shoes/shoes/wiki/Building-Shoes-on-Linux

的说明安装了鞋子

1 个答案:

答案 0 :(得分:2)

你错过了哈希对之间的,

Shoes.app :width => 200, :height => 300 do

也许最好()

Shoes.app(:width => 200, :height => 300) do