Displaying 11 results from an estimated 11 matches for "jcfischer".
Did you mean:
fischer
2006 Oct 18
6
Win32 release coming?
Hi there
what''s the status of the 0.13.4 release on Windows? I want to wrap up
a project in the next 2 weeks and I''d wait for the new release if
it''s coming in that timeframe. Otherwise I''d stay with the current
windows version.
thanks
Jens-Christian Fischer
2007 Jul 06
3
stubbing helper methods for View specs
Hi there
I have several view specs, that include the following snippet in
their "before" block to stub the methods by acts_as_authenticated
before :each do
@u = mock_model(User)
@u.should_receive(:name).and_return("Hans Muster")
template.should_receive(:logged_in?).and_return(true)
template.should_receive(:current_user).and_return(@u)
end
this
2006 May 04
14
Rails Reference 1.1.2
As part of my 3 day training course on Rails, I hand out a 24 page
"short reference" of Rails. It''s collection of the most used calls,
methods, functions across a wide range of Rails functionality.
I have released it under a Creative Commons license, so feel free to
grab it and use it and improve it. It''s a bit rough around some of
it''s edges, and I
2007 Feb 23
11
Problems getting mongrel service working
Hello list!
I have mongrel service 0.1.0 working on my current production machine.
Upgrading to a new server and also moving to mongrel service 0.3.1
has not worked yet. I am hoping someone will have an idea as to why.
I have mongrel installed properly (I think):
C:\rails\igacc>gem list --local
*** LOCAL GEMS ***
...
mongrel (1.0.1)
A small fast HTTP library and server that runs
2011 Oct 18
8
rspec 1.3.2, Rails 2.3.14 - plugins not loading
Hi there
I have a weird situation. I have inherited a project in Rails 1.2.3
that has been upgraded to Rails 2.3.14 (and is running). I have
installed Cucumber and Rspec to start to write features/tests for the
new code that needs to be written. In my Gemfile, these Gems are
loaded:
group :test do
gem ''rspec-rails'', ''~> 1.3.4'', :require =>
2007 Nov 29
5
Webrat 0.1.0 released - Ruby Acceptance Testing for Web applications
Hey guys,
We developed this plugin while writing my first real set of RSpec
stories. It''s still missing a lot of functionality, but it''s useful to
us as is, so I''m shipping 0.1.0. (Patches welcome. :) )
Code is available at: http://svn.eastmedia.net/public/plugins/webrat/
What do you think?
-Bryan
Here''s the README:
2006 Oct 04
0
do_work and long running rails tasks?
Hi there
I have some long running queries against a nice litte database (20
million new records per day) that I have offloaded to backgroundRB.
The trouble is, that backgroundrb seems to be blockin on Model.find
calls.
Here''s the code
--- worker.rb --
def do_work(args)
@rows = []
@percent = 0
@host = Host.find( args[:id])
ips = @host.ipaddresses
step
2007 Oct 02
0
Rails 2.0 & rspec edge - not protected_against_forgery?
The new forgery protection is throwing of rspec:
NoMethodError in ''ApplicationHelper login-logout when logged in
should show the name of the current user''
undefined method `protect_against_forgery?'' for #<#<Class:0x3219118>:
0x34e1f94>
/Users/jcf/dev/work/sim/vendor/plugins/rspec_on_rails/lib/spec/rails/
dsl/behaviour/rails_example.rb:41:in
2007 Feb 24
0
Swiss Ruby User Group Meeting on 1.3.2007
The SwissRUG is meeting again on 1.3.2007, 19:30 at Ergon Informatik
AG in Zürich. See the website[1] for details and a plan on how to get
there.
We''ll have some presentations (a project and "refactoring ruby with
RDT"), some pimp-my-code roundtable discussions and pizza.
Anyone in the greater area is invited. Please email to "jcf(at)
invisible(dot)ch" if you
2006 Nov 04
0
[ADV] Ruby on Rails Workshop in Zurich, 27.-29.9.2006
I''m pleased to announce our fourth Ruby on Rails Workshop in Zurich,
Switzerland.
This is a workshop, not a frontal lecture, so participants will have
the time and opportunity to build a (almost) complete Rails
application in the course of the three day workshop.
Short details:
Time: 27. - 29. September 2006
Location: Zurich, Switzerland
Price: CHF 1450.--
Details:
2006 Sep 08
4
Namespace collions "cluster"
Hi there
I have a rails application that has been deployed with
mongrel_cluster. My application contains a model "Cluster.rb" and now
I run into namespacing problems when accessing the Cluster class (the
Mongrel:Cluster module get''s to try to resolve method calls which
leads to a embarrassing NoMethodFound errors)
I have started renaming my model, but I wonder what the