Sorry for the "beginner" question but I've been having trouble getting
the test suite for rails running. When I do a "cd actionpack" "rake
test" for example, I get complaints about missing "rack" although the
submodule has been updated and it is clearly there.
There must be some sort of setup I'm missing and any guidance in the
proper directly is much appreciated.
Silly question (mainly because I'm stabbing in the dark) but have you
installed rack as a gem, or have you run "gem bundle"?
I found a lot of those messages cleared up when I ran gem bundle -
because that's the 'official' way to load gems now.
Silly question (mainly because I'm stabbing in the dark) but have you
installed rack as a gem, or have you run "gem bundle"?
I found a lot of those messages cleared up when I ran gem bundle -
because that's the 'official' way to load gems now.
gem bundle gives me:
Could not find gem 'arel (= 0.2.pre, runtime)' in any of the sources
Does that mean that the build depends on a non-released version of "arel"?
I'm also having trouble running the tests. I get a failure:
1) Failure:
test_database_middleware_doesn't_initialize_when_activerecord_is_not_in_frameworks
(ApplicationTests::InitializerCustomFrameworkExtensionsTest)
<nil> expected but was
<"constant">.
...
rake aborted!
There are errors relating to the arel-0.2.pre gem:
Using native SQLite3: undefined method `columns' for #<Hash:
0x101f0f5d0> (NoMethodError)
Using native MySQL: undefined method `columns' for #<Hash:0x10204e298>
(NoMethodError)
I also see errors about postgresql - which I have never used, so
probably haven't installed fully.
Anyone any ideas about the others? I feel like I'm going in circles
googling the errors, but no joy as yet