Displaying 8 results from an estimated 8 matches for "dagi3d".
2007 Oct 08
6
stub actions that depend on the parameter
...uld use MyClass.stub!(:method).and_return(@mock_object_1,
@mock_object_2) so the first time the :method method is called, it would
return the first object and then the second one, but the problem is that
I cannot guarantee the order it will be called inside the model.
Thanks in advance
--
/**
* dagi3d v4 | http://dagi3d.net
*/
2013 Nov 26
2
Xen private network across multiple physical servers
...subnet given by the provider(I rented the
servers with Hetzner, who doesn''t allow bridging virtual interfaces)
Any advice/link about how could I configure this? Is there any solution
that doesn''t involve creating iptables rules for each vm?
Thank you in advance
Regards
--
def dagi3d(me)
case me
when :web then "http://dagi3d.net"
when :twitter then "http://twitter.com/dagi3d"
end
end
_______________________________________________
Xen-users mailing list
Xen-users@lists.xen.org
http://lists.xen.org/xen-users
2008 Oct 16
2
rails and security
Hi,
I am wondering if there is a way to secure rails application logs ?
My issue is that I discovered that form parameters are shown in clear in
the logs. So when users are authenticating, you see the login and
password in clear
Processing LoginController#index (for xxxxx at 2008-10-16 11:22:43)
[POST]
Session ID: 8cb95e2e50332added5715eff9e84938
Parameters:
2006 Jan 01
4
rails under windows and mysql make webrick unstable
hi, I have installed ruby and rails under windows(exactly this one:
http://rubyforge.org/frs/download.php/4174/ruby182-15.exe that
includes rubygems)
the thing is that while trying to install the mysql gem, it seemd to
try to build the native extension, so I finally added a compiled
version that I found in http://dema.ruby.com.br/
the problem is that webrick behaves quite unstable while
2006 Jan 01
5
scaffold not working on Windows XP
Hello,
I did a fresh install of ruby182 and gem rails --include-dependencies
Now when I do:
rails receipts
cd receipts
ruby script\generate scaffold receipt receipt
rails does not create the views or controller.
What can I do?
Thanks
Frank
2007 Dec 03
7
RSpec Project
Hey does anyone know of a good open source Rails project that uses
RSpec? I''d like to check out some real world code that''s drinking the
RSpec BDD koolaid.
Thanks.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To
2006 Jan 06
0
cleaning a string and encoding problem
hi,
I have the following script to clean a string sent through a form:
def clean_up(string)
chars = {
"?" => "a",
"?" => "e",
"?" => "i",
"?" => "o",
"?" => "u",
"?" => "n",
" " => "-"
}
str =
2006 Jan 12
1
adding a destination anchor in the link
hi, I would like to specify a destination anchor in the generated link with
the link_to helper, so the navigator opens the document at the given point.
it should look something like this:
/blog/archive/2006/01/10/test-post.html#comments
I tried it with the following code:
<% link_to("comments",
:controller => "blog",
:action => "archive",
:year