めもめも のーと

ハマったこととか、覚えたこととか

2014-11-01から1ヶ月間の記事一覧

Rails4.1にてBundler could not find compatible versions for gem "sprockets" が出る件

Rails4.1.8(2014年11月24日現在で安定版最新)のプロジェクトを作る際に下記のエラーが出たのでメモ。 バージョン ruby 2.1.5p273 rails 4.1.8 Gemfile source 'https://rubygems.org' gem 'rails', '~>4.1.8' Gemfileがあるディレクトリに移動して、rails …

Rspecで "@controller is nil が出た件

タイトルのように、Rspec2でテストを書いて実行したら、以下のようなエラーが出ました。 @controller is nil: make sure you set it in your test's setup method. 結論から言うと、ここが間違ってました。 誤 describe "HogeController" do 正 describe Hog…