Displaying 7 results from an estimated 7 matches for "zachdenni".
Did you mean:
zachdennis
2010 Apr 16
1
Failure compiling 1.0.19 on OSX 10.5.8
...[bin/bin_quartzcompact-quartzcompact.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
Thanks,
--
Zach Dennis
http://www.continuousthinking.com (personal)
http://www.mutuallyhuman.com (hire me)
http://ideafoundry.info/behavior-driven-development (first rate BDD
training)
@zachdennis (twitter)
2004 Jul 13
0
Adding to the wiki
...; >
> > I assume, you know how to use and edit wiki pages, so I won''t cover that
> > (unless you tell me I''m wrong). but first (if you haven''t done so),
click
> > wiki''s "Preferences" link and create a username (like
> > "ZachDennis") so that
> > your contributions will be credited to you instead of an anonymous
> > ip-address.
> >
> > Start by editing the main tutorial page
> > (http://wxruby.rubyforge.org/wiki/wiki.pl?WxRuby_Tutorial) and add a new
> > entry to the table of contents....
2012 Apr 04
5
Simple code dosn't work
I think you have a syntactical error on the line thats throwing the
error, you state:
> j.even?should be true #throws an error on j == 2, j == 4
should this line not read as:
j.even?.should be true
--
Posted via http://www.ruby-forum.com/.
2009 Nov 10
4
Model spec for file upload with paperclip and fastercsv
I just started my ImportsController and was this was really the way to
go:
////////import.rb/////////////////
class Import < ActiveRecord::Base
has_attached_file :csv
validates_attachment_presence :csv
after_save :process_csv
private
def process_csv
FasterCSV.foreach( csv.path) do |row|
#TODO
end
end
end
/////////import_spec.rb/////////////////
require
2009 Oct 14
14
spec-ing private methods?
On Wed, Oct 14, 2009 at 5:49 PM, Scott Taylor <scott at railsnewbie.com> wrote:
>
> On Oct 14, 2009, at 3:36 PM, Joaquin Rivera Padron wrote:
>
> hello there,
> how do you tipically spec private methods? The thing is ? have something
> like this:
>
> def some_method
> ?? complex_method + other_complex_methods
> end
>
> private
> def complex_method...
2004 Jul 12
28
Windows compilation problems
Last week I was struggling to get xrc built into wxRuby and finally got
it to compile. The problem I am now having is that the normal samples
are not working at all (have not even tried any xrc stuff yet). So to
test if it is a problem with xrc or my build process I tried compiling
wxRuby without XRC, this caused the same error to be printed out as the
failed XRC build.
The output (in both
2009 Sep 20
11
describe block proc parameter as alternative to before blocks?
I''ve been reading through the Rspec book to see if I missed any
tricks, and the discussion of before block use for context setup in
sec 12.6 struck me as interesting and something I had a knee-jerk
reaction to.
I think that when you are using nested examples to describe a context
change it is bad practice to allow any example within that group to
run outside of that context. This could