Tag: ruby

我如何比较两个哈希?

我正在尝试使用以下代码比较两个Ruby哈希: #!/usr/bin/env ruby require "yaml" require "active_support" file1 = YAML::load(File.open('./en_20110207.yml')) file2 = YAML::load(File.open('./locales/en.yml')) arr = [] file1.select { |k,v| file2.select { |k2, v2| arr << "#{v2}" if "#{v}" != "#{v2}" } } puts arr 屏幕上的输出是来自file2的完整文件。 我知道一个事实,即文件是不同的,但脚本似乎并没有拿起它。

Rails 3使用longtext进行迁移

我需要在我的Rails脚本中将列types从文本更改为longtext,但无法find关于如何执行此操作的任何内容。 有没有人跑过这个? 谢谢! 丹尼斯

Ruby中的私有模块方法

我有两个部分的问题 最佳实践 我有一个algorithm,使用公共接口对数据结构执行一些操作 它目前是一个拥有众多静态方法的模块,除了一个公共接口方法外,都是私有的。 有一个实例variables需要在所有方法之间共享。 这些是我可以看到的选项,哪个最好? 模块与静态(ruby模块)的方法 类与静态方法 Mixin模块包含在数据结构中 重构出修改该数据结构的algorithm部分(非常小),并调用一个调用algorithm模块静态方法的mixin 技术部分 有没有办法做一个私人的模块方法 ? module Thing def self.pub; puts "Public method"; end private def self.priv; puts "Private method"; end end 那里的private似乎没有任何影响 ,我仍然可以叫Thing.priv没有问题。

Faker在factory_girl中使用时会产生重复的数据

我试图使用Faker gem填充一些伪造的数据到工厂: Factory.define :user do |user| user.first_name Faker::Name::first_name user.last_name Faker::Name::last_name user.sequence(:email) {|n| "user#{n}@blow.com" } end 但是,当我期望这产生具有不同first_name和last_names的用户时,每个用户都是一样的: >> Factory(:user) => #<User id: 16, email: "user7@blow.com", created_at: "2011-03-18 18:29:33", updated_at: "2011-03-18 18:29:33", first_name: "Bailey", last_name: "Durgan"> >> Factory(:user) => #<User id: 17, email: "user8@blow.com", created_at: "2011-03-18 18:29:39", updated_at: "2011-03-18 18:29:39", first_name: "Bailey", last_name: "Durgan"> 我怎样才能让Faker gem为每个用户生成新的名字,而不是只重用原来的名字?

Rails:如何获取基于控制器类名的模型类名?

class HouseBuyersController < … def my_method # How could I get here the relevant model name, ie "HouseBuyer" ? end end

无法与RSpec比较时间

我正在使用Ruby on Rails 4和rspec-rails gem 2.14。 对于我的对象,我想比较当前时间与控制器操作运行后updated_at对象属性,但我有麻烦,因为规范没有通过。 也就是说,鉴于以下是规范代码: it "updates updated_at attribute" do Timecop.freeze patch :update @article.reload expect(@article.updated_at).to eq(Time.now) end 当我运行上面的规范,我得到以下错误: Failure/Error: expect(@article.updated_at).to eq(Time.now) expected: 2013-12-05 14:42:20 UTC got: Thu, 05 Dec 2013 08:42:20 CST -06:00 (compared using ==) 我怎样才能使规范通过? 注意 :我也尝试了以下(注意utc另外): it "updates updated_at attribute" do Timecop.freeze patch :update @article.reload expect(@article.updated_at.utc).to eq(Time.now) end 但规格仍然没有通过(注意“有”价值差异): […]

由于readline错误,无法执行“rails控制台”

由于此错误,我无法执行rails console : localhost:TwitterForZombies wiz$ rails c /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/irb/completion.rb:9:in `require': dlopen(/Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/x86_64-darwin12.2.1/readline.bundle, 9): Library not loaded: /usr/local/opt/readline/lib/libreadline.6.2.dylib (LoadError) Referenced from: /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/x86_64-darwin12.2.1/readline.bundle Reason: image not found – /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/x86_64-darwin12.2.1/readline.bundle from /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/irb/completion.rb:9:in `<top (required)>' from /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.9/lib/rails/commands/console.rb:3:in `require' from /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.9/lib/rails/commands/console.rb:3:in `<top (required)>' from /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.9/lib/rails/commands.rb:38:in `require' from /Users/wiz/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.9/lib/rails/commands.rb:38:in `<top (required)>' from script/rails:6:in `require' from script/rails:6:in `<main>' 我已经通过自制软件安装了readline。 我想继续使用rbenv而不是rvm。 感谢您阅读我的问题。

Ruby的|| =(或等于)在JavaScript中?

我喜欢Ruby的||=机制。 如果一个variables不存在或者nil ,那么创build它并将其设置为等于某事: amount # is nil amount ||= 0 # is 0 amount ||= 5 # is 0 我现在需要在JavaScript中做类似的事情。 什么是常规或正确的方法来做到这一点? 我知道||=是无效的语法。 处理它的两个明显的方法是: window.myLib = window.myLib || {}; // or if (!window.myLib) window.myLib = {};

无法在60秒内获得稳定的firefox连接(127.0.0.1:7055)

运行rspectesting时出现以下错误 无法获得稳定的60秒(127.0.0.1:7055)在轨道的Firefox连接 使用最新的ruby(1.9.2)和firefox(6.0) 使用rspec导轨,水豚和其他几个gem,但他们似乎不是一个问题。 这些testing在另一个环境(linux)中运行良好。

如何从string中去除非字母数字字符并保留空格?

我想要创build一个正则expression式来删除所有非字母字符,但保留空格。 这是干净的searchinput之前,击中数据库。 以下是我到目前为止: @search_query = @search_query.gsub(/[^0-9a-z]/i, '') 这里的问题是删除所有的空间。 如何保留空间的解决scheme?