<    March 2010    >
Su Mo Tu We Th Fr Sa
    1  2  3  4  5  6
 7  8  9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
00:29 pietia joined
01:12 ilpoldo joined
01:18 vesan joined
01:42 Fullmoon joined
02:01 blaxter joined
02:22 robholland joined
02:22 robholland joined
02:32 josephwilk joined
02:33 bronson joined
02:51 ashley_moran joined
03:52 <ashley_moran> hi - does the --drb option still exist in rspec 2? i'm trying and failing to get spork working in rails 3
04:03 mattwynne joined
04:07 bronson joined
04:37 jds joined
04:43 robholland joined
04:43 robholland joined
04:50 jschoolcraft joined
04:53 BobFunk joined
04:54 <BobFunk> hey - have a problem with the rspec-2.0.0.beta.3 gem not installing any spec binary
04:55 <BobFunk> theres a bin in JRUBY_HOME/lib/ruby/gems/1.8/gems/rspec-core-2.0.0.beta.3/bin/spec
04:55 <BobFunk> but it complains about no such file to load -- rspec/autorun
04:55 <BobFunk> if I try to run it
05:26 merboutpost joined
05:27 fermion joined
05:28 textarcana joined
05:28 textarcana joined
05:29 textarcana joined
05:29 hgimenez joined
05:49 spicycode joined
06:16 phinze joined
06:42 adamaig joined
07:24 jhenderson joined
07:26 textarcana joined
07:29 BobFunk joined
07:35 mattwynne joined
07:36 phinze joined
07:38 bronson joined
07:42 BobFunk joined
07:43 stepheneb joined
07:49 mabes joined
07:56 j_dana joined
07:57 s_dana joined
08:21 rds joined
08:21 nevans joined
08:27 linoj joined
08:29 bcardarella joined
08:57 mabes joined
09:02 stepheneb joined
09:08 patmaddox joined
09:12 jomz joined
09:25 adamaig joined
09:34 BrianTheCoder joined
09:42 altogether joined
09:55 dfr|work joined
09:57 amerine joined
10:01 paucor joined
10:04 tvw joined
10:07 eddanger joined
10:10 ilpoldo joined
10:11 a2ron joined
10:28 bronson joined
10:37 lucasbz joined
10:43 jakehow joined
10:46 malkomalko joined
10:52 jakehow joined
10:56 adamaig joined
11:00 spicycode joined
11:09 BobFunk joined
11:10 stepheneb joined
11:27 malesca left
11:30 stepheneb joined
11:42 zodiak joined
11:46 pietia joined
11:53 lucasbz left
12:01 josephwilk joined
12:22 technicalpickles joined
12:22 technicalpickles joined
12:43 s_dana joined
12:43 j_dana joined
13:04 adamaig_ joined
13:16 benlovell joined
13:28 fpauser1 joined
13:31 ilpoldo joined
13:33 adamaig joined
13:39 hgimenez joined
13:41 textarcana_ joined
13:42 adamaig_ joined
13:59 Licenser__ joined
14:05 stepheneb joined
14:26 jakehow joined
14:34 agile joined
14:35 mabes joined
14:49 jschoolc_ joined
14:52 altogether joined
15:16 aantix joined
15:27 PhilThompson joined
15:41 spicycode joined
16:48 PhilThompson left
16:52 charlenopires joined
16:54 beilabs joined
17:01 stepheneb joined
17:18 bdimcheff joined
17:20 adamaig joined
17:21 bakineggs joined
17:34 locks joined
17:52 danhealy joined
17:55 jschoolc_ joined
17:56 mabes joined
17:58 spicycode joined
18:18 jxson joined
18:22 TomV-415 joined
18:27 mabes joined
18:47 TomV-415 joined
18:57 hgimenez_ joined
18:59 WALoeIII joined
19:36 GitHub69 joined
19:36 <GitHub69> rspec-expectations: master Kabari Hendrick * ea852a5 (3 files in 2 dirs): Provide access to running_example in Matcher. Closes #2. - http://bit.ly/9tnAFL
19:36 GitHub69 left
19:44 fpauser joined
19:54 GitHub128 joined
19:54 <GitHub128> rspec-expectations: master David Chelimsky * bdb7966 (1 files in 1 dirs): tweak instance_exec
19:54 <GitHub128> rspec-expectations: master David Chelimsky * cad36b9 (0 files in 0 dirs): watch this
19:54 <GitHub128> rspec-expectations: master David Chelimsky * 5cfdcd3 (1 files in 1 dirs): what's wrong with super?
19:54 <GitHub128> rspec-expectations: master commits ea852a5...5cfdcd3 - http://bit.ly/dnVgzi
19:54 GitHub128 left
20:08 GitHub125 joined
20:08 <GitHub125> rspec-expectations: master David Chelimsky * 81be938 (2 files in 2 dirs): clean up the running_example speecs a bit - http://bit.ly/agpY7S
20:08 GitHub125 left
20:14 bronson joined
20:37 textarcana joined
20:38 TomV-415 joined
20:47 dchelimsky joined
20:51 dchelimsky joined
20:51 Topic for
20:53 Z32Kyle joined
20:53 <Z32Kyle> hello
20:54 <Z32Kyle> I'm attempting to run specs and recieving this error.
20:55 <Z32Kyle> "/spec/models/project_spec.rb:1:in `require': no such file to load -- spec_helper (LoadError)"
20:57 <Z32Kyle> anyone?
20:59 stepheneb joined
21:03 mabes joined
21:04 jxson joined
21:14 Z32Kyle left
21:16 bdimcheff joined
21:43 bakineggs joined
21:59 <foca> how does rspec determine that specs under spec/controllers are controller specs? I have an example group *outside* there but want it recognized as a controller (basically I need @controller present to test the methods added to it)
22:01 <foca> at first I thought :type => :controller would do it, but reading the code it's obvious it won't, and just calling controller_name 'my_test' blows up because 'undefined method `controller_name' for ActiveSupport::TestCase::Subclass_1::Subclass_4:Class'
22:03 <foca> and I can't find anything in rspec-rails that says "make this a controller spec"
22:04 bdimcheff joined
22:05 <foca> (I've obviously tried describe MyTestController do..end, but then it complains that @controller is nil if I do get :index or something like that)
22:05 <foca> so I'm not sure it's recognizing it as a subclass of ActionController::Base
22:13 zodiak joined
22:23 amerine joined
23:05 Fullmoon joined