随笔分类 -  Ruby

摘要:Windows环境下,Rails安装Bootstrap总会失败,提示therubyracer无法安装。这是因为Bootstrap使用的less文件依赖therubyracer实时执行js将less转换成css,而therubyracer这个gem并没有对应的Windows版本。 Hiran Peiris在github上提供了提供了解决方案,他编译了所有的dll和gem。这下,我们终于可以在Windows下用Bootstrap啦。 阅读全文
posted @ 2012-12-16 00:12 BetaRabbit 阅读(300) 评论(0) 推荐(0)
摘要:今天,下面这段程序让我纠结了很久,Ruby中private的概念真的很奇怪。。。 class Test private def test_print puts 'test' endendclass Test2 < Test def test_print2 # self.test_print #=> 这里加上self就不能调用,private method `test_print' called for # (NoMethodError) test_print #=> 不加self就能调用 endendTest2.new.test_print2 为什么不 阅读全文
posted @ 2012-11-08 23:41 BetaRabbit 阅读(266) 评论(0) 推荐(0)