Tag: ruby

我怎样才能检查一个值是一个数字?

我想简单地检查一个表单文本字段的返回值是一个数字,例如:12,12.5或12.75。 有没有一个简单的方法来检查这一点,特别是如果该值被拉为param ?

运行`rails generate controller`时跳过创buildtesting,资产和助手的语法是什么?

我阅读帮助和尝试以下命令跳过生成的testing,资产和帮手文件 $ bin/rails generate controller home index –helper false –assets false –controller-specs false –view-specs false create- app/controllers/home_controller.rb route get "home/index" invoke erb create app/views/home create app/views/home/index.html.erb invoke rspec error false [not found] error false [not found] 正如你可能注意到这个工程&唯一controller, routes上面的输出,会生成controller, routes和views 。 但是最后两行很有意思: error false [not found] error false [not found] 显然,rails似乎不喜欢–option-name false语法。 所以这个错误,因为我使用了错误的语法? 如果是,那么正确的方法是什么? 谢谢

Rails:在数据库中没有元素时显示消息的一种优雅的方式

我意识到,我正在写很多类似于这个的代码: <% unless @messages.blank? %> <% @messages.each do |message| %> <%# code or partial to display the message %> <% end %> <% else %> You have no messages. <% end %> Ruby和/或Rails中是否有构造可以让我跳过第一个条件? 那么,迭代器/循环将不会进入一次? 例如: <% @messages.each do |message| %> <%# code or partial to display the message %> <% and_if_it_was_blank %> You have no […]

如何使用gem在Ubuntu上安装Rails

错误消息: Building native extensions. This could take a while… ERROR: Error installing rails: ERROR: Failed to build gem native extension. /usr/bin/ruby2.1 -r ./siteconf20150328-1540-hff2f0.rb extconf.rb checking if the C compiler accepts … *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for […]

在Ruby 1.9.3中安装debugger-linecache时出错

我需要一个项目的debugger-linecache版本1.0.1,并且在尝试安装时遇到以下错误。 trunk ☺ gem install debugger-linecache -v '1.0.1' Building native extensions. This could take a while… ERROR: Error installing debugger-linecache: ERROR: Failed to build gem native extension. /Users/jordanscales/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb checking for vm_core.h… no checking for vm_core.h… no Makefile creation failed ************************************************************************** No source for ruby-1.9.3-p194 provided with debugger-ruby_core_source gem. ************************************************************************** *** extconf.rb failed *** Could […]

在Rails中生成slu((人类可读的ID)的最佳方法

你知道,就像myblog.com/posts/donald-e-knuth。 我应该使用内置的parameterize方法来做到这一点吗? 怎么样一个插件? 我可以想象一个插件是很好的处理重复slu,,等等。这里有一些stream行的Github插件 – 有没有人有任何经验与他们? http://github.com/rsl/stringex/tree/master http://github.com/norman/friendly_id/tree/master 基本上,slu seems似乎是一个彻底解决的问题,我不想重新发明轮子。

Pure-Ruby并发哈希

实现一个可以在多个线程中修改的Hash的最佳方式是什么,但是锁的数量是最less的。 为了这个问题的目的,你可以假设哈希将是重读的。 它必须在所有Ruby实现中都是线程安全的,包括那些以真正同步的方式运行的实现,比如JRuby,它必须以纯Ruby(不允许C或Java)编写。 随意提交一个总是locking的天真的解决scheme,但这不可能是最好的解决scheme。 优雅的点,但较小的可能性locking胜过较小的代码。

obj.nil? vs. obj == nil

使用obj.nil?更好obj.nil? 或obj == nil和两者的好处是什么?

Ruby的疯狂:类与对象?

我刚开始玩JRuby。 这是我的第一个rubypost。 我很难理解Ruby中的类和对象。 它并不意味着像其他面向对象的语言中的类和对象。 举一个例子 Class.is_a? Object 返回true和 Object.is_a? Object 也是 。 所以class&Object都是对象 这里是另一个 Class.is_a? Class 返回true和 Object.is_a? Class 也是 。 等等,我还没有完成 Object.instance_of? Class Class.instance_of? Class 两者都是事实 Object.instance_of? Object Class.instance_of? Object 两者都是假的。 对,没有什么可以是对象的实例。 和 Class.kind_of? Class Object.kind_of? Class 两者都是真实的 Class.kind_of? Object Object.kind_of? Object 两者都是真实的 所以两者是完全一样的,那为什么我们有这两个呢? 经过一些挖掘,我写了这个简单的方法返回两个支持的方法列表 irb(main):054:0> def print_methods(obj) irb(main):055:1> obj.methods.each do |mm| irb(main):056:2* puts […]

Sinatra与Rails

我已经完成了一些Sinatra和Rails示例,但是我很难弄清哪些function属于哪种技术。 我使用Sinatra / Rails获得了什么特别的function? 它只是ActionPack / ActionView? 纠正我,如果我错了,但我可以只使用Webrick / Mongrel和服务我的.erb文件的权利? 我可以在这些文件中使用ActiveRecord技术,并且仍然可以访问postvariables,会话状态和查询stringvariables吗? 所以,我问你们,如果我从上面的PHP的情况开始, Webrick + ERB + ActiveRecord,使用Sinatra可以获得什么? 而且我还能通过使用Rails获得什么?