Tag: IntelliJ/Rails
gem install rails --version "=3.2.13" gem install rspec-rails
gem install ruby-debug-base19x -v 0.11.30.pre10 gem install ruby-debug-ide -v 0.4.17.beta14 curl -L "http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem" -o /tmp/linecache19-0.5.13.gem gem install /tmp/linecache19-0.5.13.gem
$ gem install ruby-debug-base19x --pre
$ gem install ruby-debug-base19x -v 0.11.30.pre3
/.gemにいろいろ入れているみたいなので一旦消してIntelliJを起動しなおす。
MiniTest framework was detected. It is a lightweight version of original Test::Unit framework. RubyMine/IDEA Ruby plugin test runner requires 'minitest-reporters' (>= 0.5.0) for integration with MiniTest framework (see http://www.jetbrains.com/ruby/webhelp/minitest.html). Or you can use full-featured Test::Unit framework version, provided by 'test-unit' gem, otherwise default console tests reporter will be used instead.
group :test do if RUBY_PLATFORM =~ /(win32|w32)/ gem "win32console", '1.3.0' end gem "minitest" gem "minitest-reporters", '>= 0.5.0' end
ENV["RAILS_ENV"] = "test" require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' require 'minitest/reporters' MiniTest::Reporters.use! class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. # # Note: You'll currently still have to declare fixtures explicitly in integration tests # -- they do not yet inherit this setting fixtures :all # Add more helper methods to be used by all tests here... end