Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Rei
@Rei
Admin
NO. 1 / 2011-10-28

[email protected]
深圳
182 Topics / 9132 Replies
727 Followers
0 Following
11 Favorites
中下水平 Rails 程序员
Reward
GitHub Public Repos
  • writings 940

    [Closed] Source code of writings.io

  • alipay 732

    Unofficial alipay ruby gem

  • code_campo 291

    [Closed] Source code of http://codecampo.com

  • asciidoctor-pdf-cjk-ka... 101

    **no longer maintained**

  • asciidoctor-htmlbook 31

    Asciidoctor HTMLBook is an Asciidoctor backend for converting AsciiDoc documents to HTMLBook docu...

  • material-ui 17

  • rich-text-editor 12

  • htmlrenderer 12

  • rails-chatgpt-demo 8

  • rails-app 7

    A Rails project template lets me start new projects quickly.

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • rails s 报错 Could not find erubis at February 26, 2015

    运行 bundle install 来安装缺少的宝石 运行 bundle install 来安装缺少的 运行 bundle install 来安装 运行 bundle install

  • rails s 报错 Could not find erubis at February 26, 2015

    https://translate.google.com/#en/zh-CN/Could%20not%20find%20erubis-2.7.0%20in%20any%20of%20the%20sources%0ARun%20bundle%20install%20to%20install%20missing%20gems.

    找不到 erubis-2.7.0 中的任何一种来源 运行 bundle install 来安装缺少的宝石。

  • Ruby 风格指导中的疑问 at February 25, 2015

    _ 可以写多个

    result = hash.merge(other_hash) { | _, ov, _| ov + 10 }
    

    我觉得声明未使用区块参数说不上差,不写的话下次看到这段代码还要犹豫这个忽略的参数是什么。1 楼用法综合了两方面考虑。

  • MySQL id 值越来越大,咋办? at February 25, 2015

    #6 楼 @luffycn 我看这个描述需要的是 Update。

  • 不知道为什么输入框不能输入,困扰好久了 (重新排版后) at February 24, 2015

    把代码排版好,看到这种情况要想到可能嵌套错误了。

  • 不知道为什么输入框不能输入,困扰好久了 (重新排版后) at February 24, 2015

    代码高亮有两个红色背景的逗号,去掉看看。

  • 有些网站用程序获取页面内容,跟用浏览器人工打开页面内容有区别 at February 23, 2015

    #9 楼 @luffycn 你真是要逼死答问题的人了,有什么不一样你说啊。

  • Gulp on Rails: Replacing the Asset Pipeline at February 20, 2015

    这不是替换 Assets Pipeline,而是被集成进 Assets Pipeline。Assets Pipeline 就是被设计为前端工具的胶水。

  • 祝福 Ruby China 越来越好, 简单的贺卡一枚 at February 19, 2015

    大家新年快乐!~

  • Go 语言的吉祥物 at February 18, 2015

    你看,我体内的怪物已经长得这么大了

  • Atom Editor 有 deb 包了 at February 16, 2015

    #33 楼 @mogodb 刚才打反了。

  • Atom Editor 有 deb 包了 at February 16, 2015

    #31 楼 @mogodb 编辑效率:Vim > Atom,入门难度 Vim >> Atom。

  • Atom Editor 有 deb 包了 at February 16, 2015

    #29 楼 @mogodb 除了服务器终端,其他都用 Atom。

  • Code Walkthrough? at February 16, 2015

    现在我觉得这里设计,Model 用 Likeable Concern 没问题,不过 Controller 不要用多态,因为不同对象的 Like 操作的逻辑是不同的,更新页面的方法也不同,应该分开到不同 Controller。

  • Atom Editor 有 deb 包了 at February 16, 2015

    #27 楼 @mogodb 不断学习新工具。

  • SSH 跳板主机如何配置(也许叫法不对) at February 16, 2015

    https://developer.github.com/guides/using-ssh-agent-forwarding/

    C 要传公钥。

  • 如何搜索某个软件包所有版本号呢? at February 16, 2015

    #7 楼 @mogodb 2.2.2

  • Agile Web Development with Rails 4 这本书好贵 at February 16, 2015

    国外书价就是这么贵的。

  • 如何写出这样的正则表达 '小明 2015/2/15 15:21:55' at February 15, 2015

    /^\p{Han}+\s\d{4}\/\d{1,2}\/\d{1,2}\s\d{2}:\d{2}:\d{2}$/

  • 如何写出这样的正则表达 '小明 2015/2/15 15:21:55' at February 15, 2015
    str.scan /^小明.*$/
     => ["小明 2015/2/15 15:21:55"]
    
  • 请教高手,中文字符匹配,始终匹配不上(已解决) at February 15, 2015

    先排版好,编辑器右上角有代码按钮。

  • 如何搜索某个软件包所有版本号呢? at February 15, 2015

    是不是 gem 版本旧了。

  • Ajax render 不使用 layout at February 15, 2015

    xhr? 是很古老的写法了,现在写法是:

    respond_to do |format|
      format.html { }
      format.js { }
    end
    

    xhr 走的就是 format.js 的 block。

  • Ajax render 不使用 layout at February 15, 2015

    xhr? 然后 format.html,这结果我无法预测啊。

  • 全栈学习有啥窍门? at February 15, 2015

    窍门:多写代码,少瞎扯淡

  • 如何搜索某个软件包所有版本号呢? at February 14, 2015

    gem search REGEXP

    gem search ^rails$

  • 如何搜索某个软件包所有版本号呢? at February 14, 2015

    gem search -h

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