Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Rei
@Rei
管理员
第 1 位会员 / 2011-10-28

[email protected]
深圳
188 篇帖子 / 9165 条回帖
731 关注者
0 正在关注
11 收藏
中下水平 Rails 程序员
打赏作者
GitHub Public Repos
  • writings 941

    [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**

  • geeknote 34

  • 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

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 无限往下加载的页面,页脚该不该放东西? at 2013年06月12日

    不该放东西,页脚内容转到侧栏底部,参考 Twitter。

  • 请教一个关于 daemon-spawn 的问题 at 2013年06月11日

    用 rails runner script_name.rb 方式运行,或者在脚本 require config/environment.rb

  • 不敢相信这是真的:这样的女程序猿。 at 2013年06月11日

    PHP48

  • Rails 的一个坑 - order at 2013年06月09日

    这不是有么 http://guides.rubyonrails.org/active_record_querying.html#reorder

  • 请教生产环境 rake assets:precompile at 2013年06月09日

    搞不清楚的时候多做实验。

  • Heroku 再次推送到时候提示 everything up-to-date at 2013年06月09日

    #3 楼 @shangchen

    这也上添加了链接到 posts

    没看懂。

  • Heroku 再次推送到时候提示 everything up-to-date at 2013年06月08日

    意思是要把代码改动提交到 git 里面去。

  • 如何让邮件的内容为动态生成且是 HTML 格式? at 2013年06月08日

    #11 楼 @felixding 其实应该传数据库 ID,这样储存空间占用更小,也避免反序列化出现问题。

  • RubyMotion Runtime Guide 中文版 at 2013年06月08日

    #5 楼 @chunlea 可以借用一些工具 http://html2markdown.com/

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    #33 楼 @zhangyuxiu 如果你用 gnome-terminal,勾上这个

    https://rvm.io/integration/gnome-terminal/

  • Rails 4 在 Github 上的 issues 都清完了,是时候发布了吧? at 2013年06月08日

    已经用上了 strong_parameters,turbolinks,不用 activerecord,估计我的很好升。

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    #20 楼 @zhangyuxiu 刚才那个链接提到两个修复方法,我都试不了,不知道会不会有严重后果:

    1. yum remove ccache
    2. 找出哪个配置把 ccache 路径设错的,修复它
    grep -F CCACHE /etc/bashrc /etc/profile ~/.bash_profile ~/.bashrc /etc/profile.d/*sh
    
  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    #14 楼 @zhangyuxiu 我对 fedora 不太熟。

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    似乎是个 fedora 14 特定的问题 https://bugzilla.redhat.com/show_bug.cgi?id=651023

    ccache 的环境变量把 cache 路径设到了你没有权限访问的地方,导致编译的时候写入失败。

    ccache 这个包升级到最新了没?

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    贴到 https://gist.github.com/ ,然后链接贴过来

  • 别在服务器上安装 RVM at 2013年06月08日

    #34 楼 @aptx4869 自从用了 crontab(whenever),就不用考虑进程挂没挂的事啦。

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    找找 config.log,看内容

    find .rvm -name config.log

  • RVM 安装 Ruby 1.9.2 安装出错,如何解决啊。呜呜。。 at 2013年06月08日

    fedora 已经 18 了吧,旧版本的问题如果没人报 bug 就没人处理了。

  • 别在服务器上安装 RVM at 2013年06月08日

    #32 楼 @aptx4869 crontab 是系统服务更可靠,以前用 resque 的时候,如果程序异常,监视进程有可能会挂。

  • 别在服务器上安装 RVM at 2013年06月08日

    我用 whenever 生成 crontab 任务的时候是用 bash -l -c 的,-l 参数让它作为 login shell,应该就是和自己 ssh 登陆后行为一致了。

  • Language style at 2013年06月08日
    $('#banner-slides').slidesjs(
      width: 710
      height: 353
      navigation:
        active: false
      pagination:
        active: true
      play:
        active: false
        effect: "slide"
        interval: 5000
        auto: true
        swap: false
    )
    

    我看着没问题啊,而且即使用花括号也是这样排版

    $('#banner-slides').slidesjs({
      width: 710
      height: 353
      navigation: {
        active: false
      }
      pagination: {
        active: true
      }
      play: {
        active: false
        effect: "slide"
        interval: 5000
        auto: true
        swap: false
      }
    })
    
  • Language style at 2013年06月08日

    #10 楼 @jasl 花括号可以全去了。

  • 求职:Ruby 新手求带走 at 2013年06月08日

    不错,经历很多。另最近的工作经历是最有价值的,时间线应该倒过来。

  • RubyMotion Runtime Guide 中文版 at 2013年06月08日

    感谢建议,我会加入考虑。: )

  • ruby-china load 头像是怎么实现的? at 2013年06月07日

    仅仅是载入慢。

  • 一个 simple_form 下对两个 model 操作,并且一个更新,一个创建,请问如何设置? at 2013年06月07日

    如何更好地回答 http://ruby-china.org/topics/10251

    看得出楼主已经做过功课,顶楼也给了代码,不要这样回答。

  • 关于 Ruby 有什么有趣的应用吗? at 2013年06月07日

    #3 楼 @oicuicu 不要歪楼来提问。

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