Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Bin568
@robinwu
高级会员
第 429 位会员 / 2011-12-09

温州
0 篇帖子 / 66 条回帖
0 关注者
0 正在关注
0 收藏
GitHub Public Repos
  • snippets 2

  • echarts-auto-tooltip 1

    echarts 数据自动轮播插件

  • spree-demo 1

    Full-featured demo application built with the Spree e-commerce framework

  • ASP.NET-Core-2.0-RESTf... 1

    ASP.NET Core 2.0 RESTful API Tutorial code

  • jquery-demo 1

  • markitup 1

  • css3-demo 1

  • android-dummynote-demo 1

  • em-websocket-demo 1

  • ansible 1

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 大家在服务器端 ruby 环境是怎么搭建的? at 2011年12月31日

    rvm +1

  • 为什么要升级? at 2011年12月31日

    支持

  • 哪位能推荐个 ror 主机? at 2011年12月23日

    VPS http://www.grandcloud.cn/ http://www.linode.com/

  • CSDN 600 余万个明文的注册邮箱帐号和密码被黑客公开,你中招没? at 2011年12月22日

    汗啊

  • Rails 4.0.0.beta 来了。。。 at 2011年12月21日

    时代变的太快,跟不上了

  • 技术能力遇到瓶颈期了,我想进一步增强我 Rails 能力,请各位 Rails 前辈指条道路给我吧 at 2011年12月21日

    提问 + 实际项目 = 提高能力

  • 感觉遇到瓶颈了,求指教~ at 2011年12月21日

    推荐:开源 http://www.redmine.org/

  • 中文 Railscasts 第二期发布 at 2011年12月20日

    支持

  • Basecamp Next at 2011年12月20日

    我喜欢 37signal 的设计风格。图标一个字“酷” ^_^

  • 看 Ruby 程序源码,很晕,求推荐相关工具! at 2011年12月20日

    #5 楼 @clc3123 补充: code sudo apt-get install ctags sudo apt-get install vim-gnome git clone [email protected]:RobinWu/vim-dev-env.git ~/.vim ln -s ~/.vim/vimrc ~/.vimrc code

  • 看 Ruby 程序源码,很晕,求推荐相关工具! at 2011年12月20日

    #5 楼 @clc3123 我的 VIM 开发环境 https://github.com/RobinWu/vim-dev-env VIM 常用命令 http://robinwu.iteye.com/blog/983244

  • 看 Ruby 程序源码,很晕,求推荐相关工具! at 2011年12月19日

    先了解 Gem 的结构,再根据测试看代码。 Gem 学习文档:http://guides.rubygems.org/

  • Github 的 Sourse 始终显示为 Javascript,明明是 Ruby 啊 at 2011年12月17日

    我觉得这不影响 github 的使用,只是不完美。所以,他不是 BUG。

  • 在 rails3.1 下使用 paperclip 上传图片 无法 migrate at 2011年12月17日

    支持 2 楼

  • 啥时候搞个客户端出来 :P at 2011年12月16日

    支持 Mobile web

  • intridea 是一家什么样的公司? at 2011年12月16日

    ruby 或 rails 大会的赞助商。赞一个!!!

  • Rails3.2 is coming? at 2011年12月16日

    哎。rails 版本太快。累 ... ...

  • 三个对象关联问题 at 2011年12月16日

    http://guides.rubyonrails.org/association_basics.html#the-has_many-through-association The has_many :through Association 我想这个能帮到你

  • 这本书的目的就是给任何人学 Ruby 的入门介绍书 at 2011年12月16日

    http://guides.rubyonrails.org/ http://rubyonrails.org/screencasts

    我想差不多了

  • rails 自动化测试外,还用什么测试工具 at 2011年12月16日

    #6 楼 @pobing selenium-webdriver : selenium ide 保存成 rspec 有很多方法不支持;痛苦。

  • Rails 真的不适合企业级开发么? at 2011年12月15日

    #10 楼 @wowbeing 我们的产品都是用 rails 开发的

  • 请问 drop_breadcrumb render_list 这两个函数是在哪里定义的呢? at 2011年12月15日

    你需要一个搜索命令 grep -rn '**'

    [~/projects/github/bootstrap-rails] (master) 400h51m $ grep -rn 'drop_breadcrumb' .
    ./lib/bootstrap-rails/breadcrumb.rb:21:      def drop_breadcrumb(title=nil, url=nil)
    [~/projects/github/bootstrap-rails] (master) 400h51m $ grep -rn 'render_list' .
    ./lib/bootstrap-rails/helper.rb:86:    # TODO: hot about render_list( *args )
    ./lib/bootstrap-rails/helper.rb:87:    def render_list(list=[], options={})
    
    
  • 问一个功能的实现,图片组合的功能是怎么实现的 at 2011年12月15日

    看源码就知道了

    <div class="setarea-static">
      <img src="http://img.sfeed.com/437924a5f30ea7a18e2b6779430d96a1.jpg" width="500">
      <a href="/item/10185/" class="component" style="top:0px; left:0px; z-index:10; width:206px; height:285px"></a>
      <a href="/item/10167/" class="component" style="top:73px; left:165px; z-index:12; width:208px; height:375px"></a>
       ...
    </div>
    ```code``` 
    
  • rails 自动化测试外,还用什么测试工具 at 2011年12月15日

    我们采用 thoughtworks 的 CruiseControl.rb 做集成测试。selenium 做 web 界面测试。

  • rails 生成的页面源码中 js/css 后面都会带上随机字串是怎么回事? at 2011年12月14日

    顶 1 楼

  • Rails 真的不适合企业级开发么? at 2011年12月14日

    用事实说话,我们已完成 N 个企业项目。请看:http://agideo.com/products

  • 部署 Rails 应用时出错,大家来看看出错原因,谢谢! at 2011年12月14日

    我建议默认值不要写到 migrate, 写到 model -> before_save; 这样有利于数据结构 与 数据分离,方便以后修改。

  • 上一页
  • 1
  • 2
  • 3
  • 下一页
关于 / RubyConf / Ruby 镜像 / RubyGems 镜像 / 活跃会员 / 组织 / API / 贡献者
由众多爱好者共同维护的 Ruby 中文社区,本站使用 Homeland 构建,并采用 Docker 部署。
服务器由 赞助 CDN 由 赞助
iOS 客户端 / Android 客户端 简体中文 / English