search for: lbocseg

Displaying 4 results from an estimated 4 matches for "lbocseg".

2012 Oct 18
3
Issues upgrading RSpec
My specs work fine with this in my Gemfile.lock: grep rspec Gemfile.lock rspec (2.11.0) rspec-core (~> 2.11.0) rspec-expectations (~> 2.11.0) rspec-mocks (~> 2.11.0) rspec-core (2.11.0) rspec-expectations (2.11.1) rspec-mocks (2.11.1) rspec-rails (2.11.0) rspec (~> 2.11.0) rspec-rails (~> 2.11) After "bundle update
2013 May 24
2
[Bug 591] NAT REDIRECT target does not always work
https://bugzilla.netfilter.org/show_bug.cgi?id=591 Phil Oester <netfilter at linuxace.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |netfilter at linuxace.com --- Comment #3 from Phil Oester <netfilter at linuxace.com> 2013-05-24
2009 Apr 24
1
[Bug 591] New: NAT REDIRECT target does not always work
...work Product: netfilter/iptables Version: unspecified Platform: i386 OS/Version: Debian GNU/Linux Status: NEW Severity: major Priority: P1 Component: NAT AssignedTo: laforge at netfilter.org ReportedBy: lbocseg at yahoo.com.br This happens quite a while and I never understood why. > iptables -t nat -L PREROUTING -n Chain PREROUTING (policy ACCEPT) target prot opt source destination REDIRECT tcp -- 0.0.0.0/0 !10.183.4.2 tcp dpt:80 redir ports 3128 This rule w...
2012 May 18
2
How does Spork help in requests specs?
Even with Spork, my requests specs are very slow to start running (about 7 seconds). I suspect Rails is booting each time I run "rspec -X spec/requests". Is that true? If so, is there any way I could instruct the web server to keep alive after the specs run so that it would be faster on next run? Are there any resources on how to have better performance on running requests specs