Displaying 6 results from an estimated 6 matches for "mower".
Did you mean:
power
2008 Jun 04
8
Not running correct specs under autotest:
...held over from the previous runs). If I
ctrl+c to run all specs it runs the controller spec again. If I resave
the controller the change is again detected but the spec is not run.
I''m using Rails 2.1, edge rspec & rspec-rails, and ZenTest 3.9.2
Anyone else seen this?
Matt.
--
Matt Mower :: http://matt.blogs.it/
2008 Jun 04
6
any_instance
...didn''t seem to
be having an effect. I emailed Brian but I think he was at rails conf
so I guess he may be fighting a backlog of work/email.
Is there any likelyhood of any_instance making it into RSpec proper?
If not, has anyone else had any luck implementing it?
Regards,
Matt.
--
Matt Mower :: http://matt.blogs.it/
2008 Jun 13
1
View spec failures without stack traces?!?
...sts/show.rss.builder should render
playlist RSS feed''
You have a nil object when you didn''t expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.size
But no stack trace. Shouldn''t I get a stack trace?
Regards,
Matt.
--
Matt Mower :: http://matt.blogs.it/
2005 Jun 24
9
new mysql gem
Hi everyone,
For those who have/had problems with Webrick not properly closing MySQL
connections, there is a new MySQL gem. (Actually the version was
released some time ago, just nobody took the time to make a gem)
So run "gem update" or just "gem install mysql" to update (not sure if
the latter also updates).
Special thanks to Tobias Luetke, who forwarded the gem to Chad
2006 Jul 18
0
Two backgroundrb questions
On Jul 18, 2006, at 6:24 AM, Matt Mower wrote:
> Hi Ezra,
>
> I''m converting some code I have which basically ran Enumerable#map
> asynchronously using a thread-per-value to use backgroundrb
> (recommended by zedas). That code works but I have a scaling problem
> and needed to introduce throttling.
>
> H...
2008 Jun 04
5
controller filters running twice in 1.1.4?
since upgrading to 1.1.4 (I had been running without issue on a git
snapshot), I''m noticing that my filter actions initiated from application.rb
seem to be running twice. I created a test rails project with the rspec
scaffold and am also seeing the same behavior here too.
Adding this code to application.rb:
before_filter :foo
def foo
"foo"
end
and an example