本地测试 railscasts-china 的 github 登录是好的,是不是 ENV 的 RAILSCASTS_GITHUB_CLIENT_ID 和 RAILSCASTS_GITHUB_CLIENT_SECRET 有问题 @yedingding @poshboytl
支持,看了 rails 的 mindmap,细分的好多。大家一起来完善。
5K ... 您在开玩笑么?
我也觉得一个月太长了,有些人可能真的有问题,如果要这么做,需要有一个专门给别人用回复方式发问的帖子。
因为你用了preload_app true
http://unicorn.bogomips.org/SIGNALS.html
HUP - reloads config file and gracefully restart all workers. If the “preload_app” directive is false (the default), then workers will also pick up any application code changes when restarted. If “preload_app” is true, then application code changes will have no effect; USR2 + QUIT (see below) must be used to load newer code in this case. When reloading the application, Gem.refresh will be called so updated code for your application can pick up newly installed RubyGems. It is not recommended that you uninstall libraries your application depends on while Unicorn is running, as respawned workers may enter a spawn loop when they fail to load an uninstalled dependency.
[**s, a=>3]
应该是 [**s, :a=>3]
#16 楼 @poshboytl 什么情况 AT 错了 我没和@Saito 住
顶,很期待这一期
哪位有信用卡的同学来帮个忙?
真心佩服,作者会出一本《Redis 设计与实现》,有兴趣的可以跟进一下。http://www.douban.com/note/264302057/
昨天因为准备不是最充分,所以讲的不是很流畅,各位见谅。
顶,都是很棒的课程
把 format 字符串的双引号换成单引号
我可以贡献个主题,关于 arel 的源码解读和工作原理,rails 中的配合使用 arel。就是不确定我下周二时间能不能敲定!有人有兴趣么?
model 名不取一样的就好了啊,用self.table_name =
指定表名
走在潮流的尖端啊
大赞,诚意十足
同意@Ddl1st 用乐观锁
太佩服了
如果想用 google 的搜索,又不想显示 google 的结果页,可以尝试google custom search
@saberma 请教个问题,shopqi 本身用 haml 做模板引擎,但是店铺的可以定制模版用的是 liquid,为什么在用户自定义模版选 liquid,是 liquid 在这方面有独特的优势么?
你用 mac 为啥不用 homebrew,brew install imagemagick
不错,如果能有 ack --types 的支持就更好了
你这种情况要么在相关类都加载完后去执行 include,可以试试在 config.after_initialize 中执行,但是这对于一些 rails 启动时未加载,后续加载的类或者动态加载的类就无效了。
禁止子类或者 module 覆盖方法好像没这功能,但是有绕个圈来实现的,通过 method_added 来做,这个文章里有写,gem 比较老了,不知道能不能用,实现方式很简单,不能用可以自己再写个。
http://scie.nti.st/2008/9/17/making-methods-immutable-in-ruby/ https://github.com/up_the_irons/immutable
这需求类似 java 的 final method