2.3.x 时候也能用 mock_model 啊。
插个话,是什么原因令你考虑这两者,是什么需求是现在 Ruby on Rails 所不能提供的?
Array.new(8) {Array.new(8, 0)} 好像我之前问过你这个问题,不知道是不是现在的 API 注释清楚了。
new(size=0, obj=nil) new(array) new(size) {|index| block }
Returns a new array. In the first form, the new array is empty. In the second it is created with size copies of obj (that is, size references to the same obj). The third form creates a copy of the array passed as a parameter (the array is generated by calling #to_ary on the parameter). In the last form, an array of the given size is created. Each element in this array is calculated by passing the element’s index to the given block and storing the return value.
#37 楼 @zhangjinzhu 右下角的在线客服,这是请人作客服,还是也要你自己来回答问题?
::ActiveRecord::Base.send :include, Kaminari::ActiveRecordExtension
我的理解是 ActiveRecord include 了 Kaminari 所以就能使调用 page 这个方法。而 ActiveRecord::Relation 只是 ActiveRecord::Base 内部的中间层。所以并不需要在插件去 include ActiveRecord::Relation。
右面小贴士:回帖里面当“喜欢”的数量达到 5 人以上,此回帖将会以高亮显示。 喜欢达到 5 个以上就能上'popular' scope :popular, where(:likes_count.gt => 5)
8380 元。苹果团一部机器 200 元都赚不到?
#10 楼 @ruby_sky 先说我喜欢怎么的讨论,或者讨教。我喜欢的是 straight talk,直接到点的对话,而不是在学校去问老师题目般的启发式对话,你喜欢啥,你去留意。
我喜欢招聘信息是怎么样?我明白你问这个的潜台词是工资报酬。 单从网上文字贴,我喜欢是靠谱的信息,最好直接附上工作地点,工资区间,还有技术负责人。 而工资区间要不要注上,我是看招聘方的网上信誉度,如果是我认为对方靠谱,我就先不看工资 [这个我之前就和@yggg私底聊过]。当然不看重工资是骗人的,但我个人会是一个平衡的选择,工资只是其中一个因素,地域,做的东西是否得到我的认同这些同样重要。
PS:我并不在@yzhrain 其公司工作,我也没应聘这个岗位的打算。所以我并不构成任何利益关系。
#8 楼 @ruby_sky 正如一楼我所说,我知道这个区间,在 twitter 也和 yzhrain 有过交流。按我判断,@yzhrain 绝对能付得起你的工资。
看了几个招聘的,随便贴一些出来,都差不多。
http://ruby-china.org/topics/4335 (薪资范围这事儿跟能力、经验等直接挂钩,所以因人而异,你们懂的!)
http://ruby-china.org/topics/4304 薪资待遇:面议(有竞争力)
http://ruby-china.org/topics/3221 待遇面议(视能力而定)。
没画大饼,实实在在。比其它招聘实在的是可以通过 twitter 看到你将来主管之前发表过的言论,猜到你和他的想法合不合,而且工资对得住能力 (我知道范围)。
怕删错的时候,脚本的话,我会 print 出来,然后贴到相关 Ticket 的记录里。或者 transaction+log 到一个表里。
#8 楼 @fresh_fish #7 楼 @Rei 我自己搞错了,以为是在说单表继承。STI.
#4 楼 @yedingding 举两个例子来看看?
#7 楼 @qichunren #18 楼 @ashchan spawn. https://github.com/yinhm/spawn
不过我也很久没看这个 b .
灵感是来自 Backbone 的,是作者认为 backbone 一些地方不爽,所以他才弄出 spine 来。 在 spine 的 documentation 里也有'Lightweight controller implementation (based on Backbone's API)'
PS: 使用权 File.open,直接接 block,这样能保证 close,就不用自己 close 了。
我想到的比较简单的是,用户下载文件时,马上计算所下的文件大小。迅雷那个‘高速下载’就是这样。