Re: [Rails-core] Re: Running the Rails Test Suite

2009-12-16 Thread Matteo Vaccari
On Wed, Dec 16, 2009 at 10:41 AM, taryneast taryne...@gmail.com wrote: 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

Re: [Rails-core] Re: Running the Rails Test Suite

2009-12-16 Thread Agustin Nicolas Viñao Laseras
Do you put your gem list in Gemfile? if there is, give the git repo for the gem. I guess you're try with rails 3 pre, if you're ussing that version, put the gem like this: #gem name, version, source gem rails, 3.0.pre, :git = git://github.com/rails/rails.git Download and install bundler as a

[Rails-core] Re: define_schema for Active Resource

2009-12-16 Thread Joshua Peek
Looks good. DHH would recommend using instance_eval for the schema block just to clean up the s. On Dec 15, 3:58 am, taryneast taryne...@gmail.com wrote: So, following on from the original discussion-thread here:http://groups.google.com/group/rubyonrails-core/browse_thread/thread/... I've

[Rails-core] Re: ActiveSupport for Rails 3

2009-12-16 Thread botanicus
First of all thanks all you guys for useful discussions. Yehuda wants some concrete things I don't like on AS, so: 1) There is no reason why AS should have an executables. bin/ generate_tables is just messing my $PATH. It matter especially in bundled environment where I want to have my bin/

Re: [Rails-core] Re: ActiveSupport for Rails 3

2009-12-16 Thread Ryan Bigg
As requested I have filed a ticket: https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/3589-array-extension-standalone. Looking for further cases where this is broken too. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Core group.

[Rails-core] ActionMailer with Mail - new version

2009-12-16 Thread Mikel Lindsaar
$ git clone git://github.com/mikel/rails.git $ cd rails/actionmailer $ gem install mail $ rake You should get 0 errors and 0 failures. This is tested on Ruby 1.8.6, 1.8.7, 1.9.1 and 1.9.1-head (1.9.2) Please feel free to test with your favourite ActionMailer rails app. The major changes from

[Rails-core] test this is a test do vs def this_is_a_test

2009-12-16 Thread Andrew Kaspick
The test method copied below complains when another test of the same name if found in another test file. The following doesn't work... test/integration/users_test.rb test this is a test do ... end test/integration/forums_test.rb test this is a test do ... end but this does work...