以后到西安了也参加
很愿意去,不过这几周都没时间,不过希望收到课程资料分享 ([email protected] ) Thanks to @happypeter
@happypeter “八维一校区综合办公楼”标志右转,爱心第二幼儿园院内,综合办公楼 C 区 2,二层 222 室; 是上面的地址吧?[email protected] 谢谢,报名!
看了下,西安好像只有 3,4 家公司招聘 ruby 的
酷站提交直接给链接吗?@huacnlee 面列出了基于 Ruby 语言开发的网站。如果你知道还有不在此列表的,请帮忙补充。 没有入口提交啊? 妈妈晒 http://www.mamashai.com/ 也是基于 ruby 开发的
支持老乡,学习了!加油!
支持,初级报名学习
#21 楼 @tiseheaini 有我学习的地方,就是好的。
做的不错,学习
Factory.sequence :name do |n|
"0+#{n}种疾病保障 国寿康宁重大疾病保险"
end
Factory.define :product do |p|
p.seo_title {|v| v.seo_title}
p.title "0+10种疾病保障 国寿康宁重大疾病保险"
p.name { Factory.next(:name) }
end
product=Factory(:product,:seo_title=>"title_name")
《桃花庵--程序员版》写字楼里写字间,写字间中程序员;程序人员写程序,又将程序换酒钱;酒醒只在屏前坐,酒醉还来屏下眠;酒醉酒醒日复日,屏前屏下年复年;但愿老死电脑间,不愿鞠躬老板前;奔驰宝马贵者趣,公交自行程序员;别人笑我太疯癫,我笑自己命太贱;但见满街漂亮妹,哪个归得程序员;
现象 1 你是自己手动 创建的 rspec 测试文件吧?一般工程创建后,执行 rails generate rspec:install,以后每创建一个 scaffold 就会自动生成其对应的 controller,modle,view 的测试文件框架http://pobing.iteye.com/blog/1286199
rake spec #执行所有测试 rspec spec/models/mymodel_spec.rb # 只测试一个文件
rake 执行: 查看 rake 中所有的 RSpec 任务: rake --tasks spec
rake spec # Run all specs in spec directory (excluding plugin specs) rake spec:controllers # Run the code examples in spec/controllers rake spec:helpers # Run the code examples in spec/helpers rake spec:lib # Run the code examples in spec/lib rake spec:mailers # Run the code examples in spec/mailers rake spec:models # Run the code examples in spec/models rake spec:rcov # Run all specs with rcov rake spec:requests # Run the code examples in spec/requests rake spec:routing # Run the code examples in spec/routing rake spec:views # Run the code examples in spec/views
网速不给力,好几次 http://en.gravatar.com/ ,都打不开,至今还没头像,更重要的是没发现自己最喜欢的头像
上面提到的我就不说了: exit cp mv scp ssh tar unzip reboot,poweroff which whereis pwd ln -s ps aux |grep xx netstat xx --help ....
#11 楼 @vwangzhen unicorn +nginx 的配置具体要用到的代码不多
#10 楼 @jialezhang 一般都是文件权限的问题,但不能确定具体什么原因。
一段配置参考下
` http {
...
passenger_root /home/dong/.rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.9;
passenger_ruby /home/dong/.rvm/wrappers/ruby-1.9.2-p290/ruby;
...
}
server {
listen 80;
server_name www.yourhost.com;
root /somewhere/public; # <--- be sure to point to 'public'!
passenger_enabled on;
#rails_env development; nginx 的 passenger 模块默认是生产模式,如果是在本机进行开发
} `
#4 楼 @sunsonavaj 是的,好的范例是必须的,看优秀的代码更是学习呢