Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
@allenwei
高级会员
第 366 位会员 / 2011-12-02

[email protected]
西安
10 篇帖子 / 299 条回帖
5 关注者
0 正在关注
1 收藏
GitHub Public Repos
  • Postgresql-Web 5

    A web interface of Postgresql for Rails

  • sidekiq-rollbar 5

    Report exception to Rollbar

  • bull 1

    Premium Queue package for handling distributed jobs and messages in NodeJS.

  • JSON-encode-benchmark 1

    JSON encode benchmark across Ruby, JRuby, NodeJS, Go

  • representable 1

    Maps representation documents from and to Ruby objects. Includes XML and JSON support, plain prop...

  • redmine-cookbook 1

    An OpsCode Chef cookbook for Redmine.

  • mask 1

  • mjml-utils 1

    The utility belt for MJML developers

  • graphql-code-generator 0

    GraphQL code generator with flexible support for custom plugins and templates

  • react-native-elements 0

    Cross Platform React Native UI Toolkit

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 西安的 Rubyist 们一起去 RubyConfChina 相聚 at 2012年11月16日

    #21 楼 @seansay 明年我和@yorzi 准备组织一下

  • falcon 的 ruby patch 真的能提高 Rails 启动速度么 at 2012年11月15日

    #1 楼 @yorzi 这个我知道,我想提高服务器的启动时间

  • Upload 文件的速度很慢,是什么原因呢? at 2012年11月11日

    最简单的方法用 ajax polling,把进度保存在数据库里,ajax polling 去取结果 进阶办法,websocket

  • Practical Object-Oriented Design in Ruby 征询译者 at 2012年11月10日

    支持

  • rspec 自定义方法的问题 at 2012年11月10日

    一般要自己 require 吧

    Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}
    

    如果要加方法最好是用 module,然后在 spec_helper 里面 include,详细看 rspec 的文档 https://www.relishapp.com/rspec/rspec-core/docs/helper-methods/define-helper-methods-in-a-module

  • 西安的 Rubyist 们一起去 RubyConfChina 相聚 at 2012年11月08日

    #17 楼 @huobazi 我老婆下个月预产,@yorzi 一个月前生的女孩,据说程序员都生女孩,我也想要女孩,但总预感会生个男孩

  • RubyConfChina 2012 参会指南 at 2012年11月06日

    没想到参加 Ruby 大会还有 show girl,福利啊

  • 西安的 Rubyist 们一起去 RubyConfChina 相聚 at 2012年11月06日

    在北京的时候懒没参加几次活动,到西安宅的一塌糊涂

  • ActiveRecord unscoped 一定要用 block 的写法? at 2012年11月02日

    #4 楼 @poshboytl 之前发现的,现在我都忘记这个东西了

  • An existing connection was forcibly closed by the remote host at 2012年11月01日

    你本地用的 webrick 还是 nginx/apache?试一下传一个很小的文件看会不会出错

  • 能够切换 “正在升级” 页面的 nginx 部署辅助工具? at 2012年11月01日

    可以再 nginx 里面加入

    if (-f $document_root/system/maintenance.html) {
      return 503;
    }
    location @503 {
      rewrite  ^(.*)$  /system/maintenance.html break;
    }
    

    需要 maintenance 的时候,就把 maintenance.html 拷贝到 public/system/maintenance.htm 也可以写个 cap recipe 做这个

  • 两个 Ruby China 代码建的网站怎么打通用户 at 2012年11月01日

    我们在 production 用的这个 https://github.com/songkick/oauth2-provider

  • 请问有人用 Capybara 做 Integration test 么? at 2012年10月29日

    #10 楼 @aquajach webkit 会快一点,但是有些功能和 selunium 不兼容,如果你想在本地调试不太方便

  • 请问有人用 Capybara 做 Integration test 么? at 2012年10月22日

    #5 楼 @aquajach 熟了也很块不到哪去,跑起来慢,几天回来再写,又很慢,step 多了维护重用都很麻烦,但是确实能很好的从用户角度做 End to End 的测试,所以又爱又恨啊

  • Ruby 库函数如何方便的查看 at 2012年10月22日

    如果你用 Mac 推荐你一个工具 Dash http://kapeli.com/dash/

  • 请问有人用 Capybara 做 Integration test 么? at 2012年10月20日

    哎,又爱又恨啊,调试起来太慢,跑起来也慢,不过确实是好东西,我们一直在用

  • 今年有 Rails Rumble 大家不要错过哟. at 2012年09月25日

    觉得 Rails Rumble 就是考验美工和 idea

  • 自己写 ruby 代码的语法分析工具 at 2012年09月22日

    做火车的时候。。。怪不得 @flyerhzm 产出高呢

  • RubyConfChina 2012 开始接受报名和售票 at 2012年09月18日

    已购,上海见

  • iterm 裡面用 vim 感覺光標移動速度有點卡。 at 2012年09月09日

    同问

  • WEBrick 无法从外部访问??? at 2012年09月01日

    确认一下 binding ip 是不是 0.0.0.0

  • ruby 定向爬虫设计 at 2012年08月29日

    把调度和执行,解析都分开做,用 redis 串起来,可扩展性强些,其中任何组件都可以横向扩展

  • 请问大家用什么看 API? at 2012年08月26日

    @cqpx 正解,这个 Rails 的文档里也不会提及的

    看 API 的话有个免费的 Mac App Dash 非常不错 http://kapeli.com/dash/

  • TextMate2 Ruby execute path issue at 2012年08月22日

    作者说的有道理,用全路径会比较好,

  • railscast 274 at 2012年08月15日

    怎么会呢 self[column] 每次随机在变,这里是为了确保生成唯一 column

  • omniauth facebook 求助 at 2012年08月14日

    #2 楼 @zhangjingqiang 正解,本地修改一下 Host 可以绕过去

  • screen vs tmux at 2012年08月09日

    tmux 功能更强大些,我一直在用

  • Happycasts: git diff 实战 at 2012年08月06日

    @happypeter 很喜欢你是视频,能发布到 itunes podcast 么?

  • 支持 whitelist_attributes 比较麻烦,有没有简单的办法? at 2012年08月01日

    config.active_record.whitelist_attributes = false

  • [北京] 二次创业团队招聘 ROR 研发工程师,一起感受财富第五波! at 2012年07月27日

    支持一下,创业不易

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