similar to: it "should ...", encouraging "should" via it_should

Displaying 20 results from an estimated 1000 matches similar to: "it "should ...", encouraging "should" via it_should"

2007 Apr 11
10
DRYer controller specs
So, I''ve been following the recommendations for controller specs here: http://blog.davidchelimsky.net/articles/2006/11/09/tutorial-rspec-stubs-and-mocks Most notably: a single expectation per specify block; the setup block contains only stubs; mock expectations each get their own specify block. (I''m still using 0.8, so I haven''t gotten the describe/it goodness yet.) I
2007 Sep 29
1
templates with same name before extension are cached
Hi all, I was just wondering if this is the intended behavior. Here is my setup: controller def index respond_to do |f| f.xml { render :xml => true } f.html { render :layout => :none } end end In my views I have a file for each type index.herb index.xerb The first request I send is cached and interferes with the other one. For example, if I send an xml request
2015 Aug 21
2
samba shares does not exist or permission denied when connecting
Hi, We have the following shares listed in smb.conf users cannot access the samba share directly i.e. \\sambaserver\rixilr or \\sambaserver\bridges error messages '/ibe/dusty/RIXILE Share/Bridges' does not exist or permission denied when connecting to [bridges] Error was Permission denied Aug 21 10:09:12 dish sambaserver[27859]: [2015/08/21 10:09:12.964101, 0]
2015 Aug 24
0
samba shares does not exist or permission denied when connecting
In the smb.conf I have escaped the path to a samba share in quotes. path = "/ibe/dusty/RIXILE Share/RIXILE" all the users needs to do is go to \\sambaserver\rixilr but get's the following error message does not exist or permission denied when connecting to [rixilr] Error was Permission denied Is this correct syntax? On 24/08/15 11:18, Rowland Penny wrote: > On 24/08/15
2006 Jan 10
1
dhcp errors in logs
i recently setup a dhcp at my home and now i am getting these errors in my logs and was wondering if i set something up wrong? --------------------- dhcpd Begin ------------------------ Unknown Entries: Unable to add forward map from STEVEN-DELL.dusty.home to 192.168.1.100: timed out: 4 Time(s) Unable to add forward map from laptop.dusty.home to 192.168.1.104: timed out: 4
2015 Aug 24
2
samba shares does not exist or permission denied when connecting
On 24/08/15 10:49, Sundeep Singh Nanuwa wrote: > Hi, > > Is there any issues using spaces in directories paths? > > On 21/08/15 11:06, Sunny wrote: >> Hi, >> >> We have the following shares listed in smb.conf >> >> users cannot access the samba share directly i.e. >> >> \\sambaserver\rixilr >> or >> \\sambaserver\bridges >>
2002 Feb 15
0
Re: Locking Module?
Well I seem to have everything working now, I started up the daemons and the ran smbclient -L localhost and then smbstatus and everything looks good!Strange.. Thanks, -Dusty > -----Original Message----- > From: Dusty Hall [mailto:draper7@ziplip.com] > Sent: Friday, February 15, 2002, 8:01 AM > To: samba@lists.samba.org > Subject: [Samba] Locking Module? > > Hello everyone,
2002 Feb 16
1
Re: Linux EXT3 support? problems flushing?
Paul, I don't know if this helps but I'm running RH7.2 on ext3 with Samba 2.2.1a & Quotas, I haven't heard any users complain yet, (300 total users). I don't believe any of them are using Outlook though, but they are using the Samba for their Groupwise MailArchive. Hope this helps... -Dusty > -----Original Message----- > From: Gerald Carter
2012 Jul 19
5
Detecting unicorn / defining after_fork after master startup
Hey everyone, Working on an engine for rails that needs specialized behavior with forking and I had a couple questions. 1. What is the best way to determine whether the app is indeed running inside a unicorn server? Most of the attempts I can find to detect check to see if the main modules for Unicorn are defined, but this really only checks to see that Unicorn is present, not that you are
2008 Jun 02
3
GiT and RSpec
> > Message: 2 > Date: Thu, 29 May 2008 06:35:01 -0700 > From: David Chelimsky <dchelimsky at gmail.com> > Subject: Re: [rspec-users] Coloured output in rspec 1.1.4 > To: rspec-users at rubyforge.org > Message-ID: <175B70FE-B706-4C03-8B20-C5B207268AD6 at gmail.com> > Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes > > On May 29, 2008,
2013 Dec 06
0
CentOS-virt Digest, Vol 76, Issue 3
R Verzonden met mijn Windows Phone ________________________________ Van: centos-virt-request at centos.org<mailto:centos-virt-request at centos.org> Verzonden: ?6-?12-?2013 09:35 Aan: centos-virt at centos.org<mailto:centos-virt at centos.org> Onderwerp: CentOS-virt Digest, Vol 76, Issue 3 Send CentOS-virt mailing list submissions to centos-virt at centos.org To subscribe or
2008 Jun 13
0
rspec-users Digest, Vol 24, Issue 20
> > Message: 4 > Date: Fri, 13 Jun 2008 11:47:22 -0500 > From: David Chelimsky <dchelimsky at gmail.com> > Subject: Re: [rspec-users] rspec and rspec-rails install hell > To: rspec-users <rspec-users at rubyforge.org> > Message-ID: <EFE63242-19E9-42C5-AACD-16E239A9023B at gmail.com> > Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
2007 Apr 28
7
[ rspec-Patches-9605 ] Patch for ER 9472, shared behaviour
Hi all - I''ve applied (to trunk) Bob Cotton''s patch which supports shared behaviours (link to tracker below). I''m still toying w/ names, so please be aware that until this is released w/ 0.9 it should be considered experimental and there will NOT be translation support for it. It will definitely be included in some form - just the names (specifically
2007 Mar 24
0
Using spec fixtures with integration tests
Hi all, How can I use spec fixtures with rails integration tests ? I''ve tried adding {{ fixtures "../../spec/fixtures/myfixture" }} to the integration test but the fixtures are not loaded when I run the rake task. Rails doesn''t load symlinked fixtures either so I copied the files from spec/fixtures for the time being. Not very DRY. Any ideas ? Keith
2010 Nov 09
2
AMQP and Unicorn (mq gem)
Hi all, I''m having issues with Unicorn and connecting to RabbitMQ using the tmm1-amqp gem. I''ve tried lots of approaches. The classic initializer with Thread.new { EM.run } for the Rails app and even tried using the Qusion library. (https://github.com/danielsdeleo/qusion) I''ve made a simple mod to Qusion for it to monkey patch unicorn too. The code looks
2005 Jun 25
0
rubytorrent future plans
Hi all, I''m going to do my best to spend some time on RubyTorrent over the next week or so. Here''s what I plan to accomplish: 1. gem packaging 2. Slight API changes: move to Net::BitTorrent rather than RubyTorrent; remove the requirement for ''self'' being passed to on_event (not very Rubyish IMO); etc. 3. Add UDP tracker support. 4. ri documentation I
2007 Nov 07
1
merb/sequel mutex on or off? proxy_balancer or no?
Just a quick question to those of you using merb and sequel or datamapper. How do you setup your merb app? For example: merb -X off -c 5, then run mod_proxy_balancer or nginx to load balance between the 5 (or whatever #) of merb nodes? merb -X off -d, then simply use something like proxypass merb -c 5, keep the mutex lock and cluster it haproxy, swiftiply, evented mongrel...... What
2007 Jan 03
0
[823] trunk/wxruby2/doc/textile: Remove docs for some deprecated classes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Jul 31
1
changeset 355
I have a question about changeset 355 for "Initial support for controllers to be nested in modules and directories." I have probably overlooked something here, but it appears to me that something is missing to be able to route to those nested controllers. Looking in Merb::Dispatcher, it looks like the workflow goes like this. route = route_path(request_uri) route_path then calls
2008 Oct 11
1
Encouraging producers to develop under Linux
Hello, I was just thinking about how to encourage software developers to publish games for platforms other than Win32. All is about marketing - even though game is working perfectly under Linux/WINE (for example - Prey), game publisher won't give any information about it. I was thinking about a certificate or something for software publishers. Something like a small label that you can