无法运行咆哮通知,gem Growl_notify 会抛出错误
当我运行 $guard 时,我无法收到咆哮通知 我需要growl_notify 的任何特定版本吗? Growl 版本 = 1.2 这是我的 gem 文件。 gem 'rails', '3.1.3' gem '…
限制来自 Cucumber 的咆哮通知(仅限失败)(使用guard、spork、ruby_gntp)
如何阻止某些 Cucumber 消息出现在 Growl 中?例如,待处理的步骤或指示成功的通知。我只想在我破坏了什么东西时被打扰。…
Rspec 更快,但在 Spork 上仍然很慢
我的规范(仅 1 个测试)使用 rspec 运行大约需要 40 秒。我现在运行了 spork,它确实将时间缩短到了大约 17 秒,但对于仅 1 次测试来说,这似乎仍然…
需要“红宝石”;守卫失败?
我肯定已经安装了 RubyGems,但是“guard”失败: /usr/local/bin/guard:9:in `require': no such file to load -- rubygems (LoadError) from /usr/l…
在 OS 10.6.6 上,使用 Guard 和 Spork 的 Growl 会静默失败
当测试通过或失败时,我没有收到 Growl 通知。我已经浏览了我能找到的所有设置指南。 详细信息 我运行 guard 并且它启动 Spork 正常: Using RSpec Pr…
当尝试运行 rspec 时,我得到“未初始化的常量 ActiveModel”
当我运行 rspec spec 时,我得到以下信息: /usr/local/lib/ruby/gems/1.9.1/gems/rspec-rails-2.7.0/lib/rspec/rails/extensions/active_record/base…
如何使 Guard gem 因语法错误而非致命地失败?
Rails 3.1、guard 0.8.8、Fedora 13 我将guard 配置为监视 jquery 模板的更改并使用链轮重新编译 javascript 资产。每当我处理模板并生成语法错误时,…
为什么我使用 Guard 时的速度这么慢?
当我仅使用 spork 运行我的规范时,我获得了相当显着的性能提升 $ time rspec . ..... Finished in 11.39 seconds 5 examples, 0 failures real 0m11.…
规格直接运行时通过,但在 Guard 中运行时崩溃
我有一个奇怪的情况,我不太明白。 当我使用 rspec spec 运行我的规范时,它们都通过了。然而,截至今天,当我运行守卫并调用规范时,它崩溃并出现以…
使用 Guard-Spork 时 Guard 会导致 Spork 崩溃
我已经关注了 RailsCasts 上的“我如何测试”截屏视频,但是我遇到了spork 的问题 $ guard Guard is now watching at '/Users/darth/projects/auth-be…
如何使用guard和pry暂停执行?
我的 Rails 3.1.1 应用程序带有此保护文件: guard 'bundler' do watch('Gemfile') end guard 'rails' do watch('Gemfile.lock') watch(%r{^(config|l…
Xcode 4:由于 iPad 模拟器的 dylib 错误,无法使用启用 Guard Malloc
在 Xcode 4.x 中,我已将运行方案编辑为“启用 Guard Malloc”,因为我有一个需要追踪的不伦不类的 malloc 错误。我知道我需要在模拟器中运行才能使用…
守护宝石在开始时运行所有触发器
如何为 Guardfile 中的所有守卫触发“run_all”? 当我在 shell 中运行“guard”时,我希望它能够假装所有文件都已更改并触发所有防护。 从 Guardfile…
Ruby GuardFile - 为什么进程重新启动两次
我有一个 Guard 设置(对文件系统事件做出反应的 Ruby gem - https://github.com/guard/ )将 Coffee 文件编译为 Javascript,并在相关 js 文件发生更…