Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
@feipinghuang
高级会员
第 278 位会员 / 2011-11-26

北京
11 篇帖子 / 59 条回帖
0 关注者
5 正在关注
17 收藏
GitHub Public Repos
  • feishu 1

  • aliyun_sms_ruby 0

  • rubocoping-generator 0

    Ruby application template to configure RuboCop with Standard and plugins

  • dingtalk 0

    Dingtalk ruby sdk

  • martian-library 0

  • quote-editor 0

  • classy-yaml 0

    Rails helper to allow yaml configurations for utility css frameworks

  • vultr.rb 0

    Ruby bindings for VULTR API.

  • logidze 0

    Database changes log for Rails

  • activestorage_qiniu 0

    Wraps the Qiniu Storage Service as an Active Storage service

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • rbenv 发布了 v1.1.0 版本 at 2016年11月28日

    #2 楼 @huacnlee https://github.com/rbenv/rbenv-installer#readme

  • GitHub API 有什么实际的用途了 at 2014年12月26日

    #5 楼 @luffycn 试试 https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site

  • GitHub API 有什么实际的用途了 at 2014年12月26日

    楼主肯定没有用过类似的: https://shrinkray.io

  • [已解决] namespaced controller 用到的 view 里面的 form_for 需要注意的问题 at 2014年10月23日

    @oppih28 http://guides.rubyonrails.org/form_helpers.html#dealing-with-namespaces

  • [已解决] namespaced controller 用到的 view 里面的 form_for 需要注意的问题 at 2014年10月22日

    不存在覆盖的问题,就是两个不同的 Controller 检查你 views/admin/posts/edit.html.erb

    注意 Namespaces

    <%= form_for [:admin, @post] do |f| %>
    ......
    <%= f.submit "Submit", :disable_with => 'Submiting...' %>
    
  • OSX 快捷键 at 2014年06月26日

    http://recordit.co/

  • OSX 快捷键 at 2014年06月25日

    #1 楼 @yuhaidonghd 好吧 我太 low 了 :

  • 靠,遇到骗子了!大家过年了小心点啊! at 2014年01月18日

    20 块钱也来骗!!!

  • [UCloud 开源接力]#[email protected]#Ember Todo at 2013年09月25日

    自己也能抢吗

  • 我们不应该为开源项目提供特别支持么?赠送 Ruby Conference VIP 门票如何? at 2013年09月23日

    @el09xc 好了 一下给我发了 6 条

  • 我们不应该为开源项目提供特别支持么?赠送 Ruby Conference VIP 门票如何? at 2013年09月23日

    欢迎来抢楼 http://ruby-china.org/topics/14317

  • 我们不应该为开源项目提供特别支持么?赠送 Ruby Conference VIP 门票如何? at 2013年09月23日

    @el09xc 注册 UCloud 收不到手机验证码

  • 一个关于 Ember.js 的网站 at 2013年09月21日

    @tyaccp_guojian http://emextensions.org/plugins/3

  • 一个关于 Ember.js 的网站 at 2013年09月18日

    Nice job.

    我加了一个:http://emberjs-ext.herokuapp.com/plugins/2

  • 你看过的电影推荐 at 2013年07月22日

    浪潮
    海盗电台
    守法公民

  • 一个极其好用的取色网站 at 2013年07月22日

    http://colourco.de/

  • 关于不同用户有不同的字段验证,该采用什么样的策略? at 2013年06月03日

    https://github.com/nathanl/authority

  • [福利] 七牛新后台上线 携手 Ruby China 放送现金券 at 2013年06月02日

    [email protected] 正准备用七牛

  • Devise 可以不要 email 吗?把别的设置为登录名称。 at 2013年06月02日

    class User < ActiveRecord::Base def email_required? false end end

  • 关于 Devise 的页面问题 at 2012年12月05日

    https://github.com/plataformatec/simple_form

  • 如何实现 2 个 model 之间的多组 many-to-many association at 2012年11月30日

    class Membership < ActiveRecord::Base belongs_to :member belongs_to :group end

    class Member < ActiveRecord::Base has_many :memberships end

    class Group < ActiveRecord::Base has_many :memberships has_many :female_members, through: :memberships, source: : member, conditions: "memberships.gender = 'female'" has_many :male_members, through: :memberships, source: : member, conditions: "memberships.gender = 'male'" end

    http://feipinghuang.lue.so/2012/11/27/has_many-magic/

  • RubyConfChina 2012 新浪 SAE Ruby 平台激活码和七牛云存储现金券 at 2012年11月28日

    huang900107#163.com

  • ActiveRecord 求救?? at 2012年11月06日

    #8 楼 @jimrokliu 能贴一个简单的 thread 例子吗 不太明白它是来干嘛的

    #10 楼 @fresh_fish 非常感谢

    #12 楼 @woaigithub MessageRecipient 模型就是 receiver

  • ActiveRecord 求救?? at 2012年11月06日

    #3 楼 @knwang 请问这个 thread 需要哪些字段

  • ActiveRecord 求救?? at 2012年11月06日

    #1 楼 @tumayun 我要查的是两个人的对话,不是查他们两各自发过的 message

  • 再问一个问题,关于那些只有一个页面的页面. at 2012年09月17日

    直接写个 html 放 public 文件夹下就好了

  • [吐血之作] 你可能错过的 Rails 技巧 at 2012年08月31日

    学习了:thumbsup:

  • 关于 rails 中子查询的问题 at 2012年08月24日

    换一种思路:Program.where(name: '0').order('created_at DESC').limit(1)

  • 分享几个 Vim 的教学视频 URL at 2012年07月26日

    补充一个:http://vimcasts.org/

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