Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Juanito Fatas
@juanito
VIP
NO. 1510 / 2012-03-19

[email protected]
https://Buildkite.com
Tokyo
71 Topics / 454 Replies
113 Followers
11 Following
51 Favorites
GitHub Public Repos
  • ruby-style-guide 128

    Ruby Style Guide (Chinese)

  • - 3

  • fast_uuid 2

  • rails 1

    Ruby on Rails

  • rails-versions 1

    A common repository of Rails version metadata.

  • scim.cloud 0

    SCIM Community Website

  • dalli 0

    High performance memcached client for Ruby

  • renovate 0

    Universal dependency update tool that fits into your workflows.

  • zed-mcp-server-buildkite 0

    Buildkite Integration for Zed - Access your Buildkite CI/CD pipelines and builds directly from yo...

  • rdoc 0

    RDoc produces HTML and online documentation for Ruby projects.

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • 如何评定自己技术到底属于哪个层次的呢? at March 06, 2014

    第二章:从新手到专家的例程 — huangz/note

  • 在 routes.rb 里添加 match 配置典型路由后,不能使用 rails 命令 at March 04, 2014

    錯誤訊息裡面有提示:

    You should not use thematchmethod in your router without specifying an HTTP method. (RuntimeError)
    If you want to expose your action to both GET and POST, addvia: [:get, :post]option.
    If you want to expose your action to GET, usegetin the router:
    Instead of: match "controller#action"
    

    Rails 4 要聲明 http 動詞 => match 可傳入 via: 選項。 另外可以用 controller#action 的形式來寫路由,這種 match ':controller(/:action(/:id(.:format)))' 不推薦使用。

    可以參考: 拥抱 Rails 4 —— 详述 Rails 4 的新变化 ActionDispatch::Routing::Mapper::Base

  • 有嵌套路由的情况下,出错时,在 create Action 中如何修改 render new Action 才能将错误带到表单页面? at January 14, 2014

    @diguage 加個 notice: '哎呀,出錯啦' ?

  • Ruby Conference 2013 视频已经全了 at January 01, 2014

    批次下載 => https://gist.github.com/JuanitoFatas/8201628

  • 大家新年快乐! at January 01, 2014

    Feliz Año Nuevo

  • 基本上改成了早睡早起的作息了,谢谢 @beenhero at December 31, 2013

    之前基本上都是 1 点以后睡觉,10 点后起床。 老婆天天说我黑眼圈,而且似乎食欲也不太好了。最最糟糕的是,每天到了晚上 7、8 点,还感觉一天没做什么事情。 然后某天,受 @beenhero 同学的 http://beenhero.com/improve-remote-work-productivity/ 这篇帖子影响,加上上个月劲椎出了点问题,开始觉得不能再熬夜了。 某天在知乎上看到一句鸡汤“熬夜是因为没有勇气结束这一天,赖床是因为没有勇气开始这一天”。顿时觉得,X, 确实是这样啊!

    一模一樣啊,昨天夜裡頸椎痛得不行,新年新希望就是早睡早起。

  • Active Model Basics 译文 at December 25, 2013

    #2 楼 @ChanceDoor 🎅 🎄 🎁 🔔 聖誕快樂! 🔔 🎁 🎄 🎅

  • Sublime Text 2 的 sidebar 里面的字体能否调的大一些? at December 18, 2013

    在 Sublime Packages 目錄 (OSX: ~/Library/Application Support/Sublime Text 2/Packages ) 找到你的 Theme 目錄(Theme - ThemeName),修改 ThemeName.sublime-theme 文件裡面 "class":"sidebar_label",添加 "font.size": 16.0 : ( 16.0 換成你要的大小),如:

    ...
    {
        "class": "sidebar_label",
        "color": [212, 212, 213],
        "shadow_offset": [0, 0],
        "font.size": 16.0
    },
    ...
    

    參考:http://stackoverflow.com/questions/13781833/sublime-text-2-how-to-change-the-font-size-of-the-file-sidebar

  • Rails 4 的 Observer 为什么会去掉? at December 11, 2013

    移除的 commit: https://github.com/rails/rails/commit/ccecab3

    https://github.com/resque/resque/issues/780

    No clue. Just so you know, we've extracted Observers to a plugin in Rails 4 because we consider them to be not a good idea, generally speaking.

    http://blog.remarkablelabs.com/2012/12/observers-gem-extraction-rails-4-countdown-to-2013 http://stackoverflow.com/questions/15165260/rails-observer-alternatives-for-4-0 https://github.com/rails/rails/pull/7064

  • 你不需要这些 Gems at November 24, 2013

    #69 楼 @yanhao Hacker and Painters by Paul Graham.

  • ruby 2.1.0? at November 23, 2013

    浮點數解析存在溢出風險 (CVE-2013-4164)

  • ruby 2.1.0? at November 23, 2013

    #10 楼 @towonzhou 1.9 https://bugs.ruby-lang.org/projects/ruby-193/issues?set_filter=1&status_id=5 2.0 https://bugs.ruby-lang.org/projects/ruby-200/issues?set_filter=1&status_id=5

  • ruby 2.1.0? at November 22, 2013

    現在已經出 2.1.0-preview2 啦,穩定版可以升級至 Ruby 2.0.0-p353 or Ruby 1.9.3-p484 :D

  • Ruby 官网新设计 (結果公布) at November 22, 2013

    #58 楼 @kaka 已修正,謝謝。

  • Ruby 官网新设计 (結果公布) at November 21, 2013

    結果公布。

  • Ruby on Rails 升级指南 (3.2 => 4.0) at November 20, 2013

    #18 楼 @guojia

    試試:

    Rails < 4.0

    $ bundle exec bundle install

    Rails 4.0+

    $ bin/bundle install

  • Ruby on Rails 升级指南 (3.2 => 4.0) at November 17, 2013

    #13 楼 @zgm 臺北,其實就是翻譯。我 Rails 水平很差。

  • Ruby on Rails 升级指南 (3.2 => 4.0) at November 16, 2013

    #10 楼 @kgen 😄

  • Ruby on Rails 升级指南 (3.2 => 4.0) at November 16, 2013

    #7 楼 @kgen http://ready4rails4.net

  • Ruby 官网新设计 (結果公布) at November 13, 2013

    #44 楼 @yesmeck 加上了,謝謝。

    另外加上了評分標準。

  • Ruby 官网新设计 (結果公布) at November 08, 2013

    六號好驚艷!

  • Ruby 官网新设计 (結果公布) at November 08, 2013

    有 5 位參賽者了!

  • Ruby 官网新设计 (結果公布) at November 08, 2013

    #8 楼 @song940 目前 4 位参赛者...

  • Ruby 官网新设计 (結果公布) at November 07, 2013

    #4 楼 @chunlea 立馬來了個二號。

  • Ruby 官网新设计 (結果公布) at November 07, 2013

    @chunlea 目前只看到一個 Pull Request。

  • 为什么是 binding.pry 而不是 pry.binding? at November 07, 2013

    #5 楼 @046569 是的,不好意思,請看 2-4 樓的專業回復。

  • 应邀撰写一个新的系列,请大家试读一部分,看看反响 at November 07, 2013

    類似這種風格,有本冒號學堂很不錯,可以看看。

  • Enums for Active Record at November 06, 2013

    Rails 枚舉字段

  • RubyConfChina 2013 幻灯片汇集 at October 30, 2013

    合集下载: 百度云网盘:http://pan.baidu.com/s/19WJzx Dropbox:https://www.dropbox.com/s/p6jk475z1idbqz0/RubyConfChina%202013%20Presentations.zip

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