search for: xmitchx

Displaying 8 results from an estimated 8 matches for "xmitchx".

Did you mean: mitch
2006 Apr 24
5
New RBAC Plug-In for Rails
Hi, I just finished writing this plug-in. I''ve been using rails for awhile but this is my first time extracting some code and writing it as a plug-in and I''d love to hear to some feedback. Thanks. http://mitchellhashimoto.com/rails/role-based-access-control-plug-in-for-rails/ -Mitchell -- Posted via http://www.ruby-forum.com/.
2006 May 16
1
Bay Cities Ruby Group
Hello, I''m trying to organize a Bay Cities Ruby Group in Southern California. This would include the cities of Redondo Beach, Manhatten Beach, Hermosa Beach, Torrance, Gardena, Lomita, etc. If you are interesting in joining a group that would be like other ruby groups where we discuss tricks, technique, theory, etc. and help each other, then please join the mailing list:
2005 Dec 28
3
Unit tests, Fixtures, Authority Data, Oh my!
Yo guys... I''m starting to get into testing my current e-commerce Rails app before I Engine-ify it...(Codename "Substruct" - don''t sleep!) I''ve got some data that should be loaded before each test. Convention tells me that I should prepare this data in nice YML files as fixtures, although I''m not quite so sure. The data in question is a country list
2005 Dec 27
6
avoid multiple render per action
Hello, I have a hash that contains categories, and each category ID is a hash of subcategories. What i want to do is dynamically load that hash, loop thru it, for each category , subcat run a query against the DB, and render a partial. The issue is i put the render:partial in a for loop but you can only render once per action. What is the best way to loop thru all my categories without a
2006 May 01
0
Bay Cities Ruby/Rails Group
Hello, Seeing that the nearest Ruby User Groups around me are at least an hour away, I am trying to set up a bay cities (of california) ruby user group. This would include the cities of Torrance, Redondo Beach, Manhattan Beach, etc. If you are interested, please join the mailing list: http://lists.mitchellhashimoto.com/listinfo.cgi/bay-cities-ruby-mitchellhashimoto.com I really want to get
2005 Dec 26
0
Status code 0 on functional test
I''m running a functional test and after a get request I do: assert_response :success But I get a failure saying: Response expected to be <:success>, but was <0> Why is it 0? -- Posted via http://www.ruby-forum.com/.
2005 Dec 27
1
Form Validation?
How I can I implement form validation easily to helpers such as text_field_tag? If I specified a name of ''myinput'' how would I notify rails that ''myinput'' is erroneous? -- Posted via http://www.ruby-forum.com/.
2005 Dec 29
1
Posting to a separate controller in a functional test
Hi, I need to post to a controller to log in a user in a functional test, but I''m not sure what to do to post to a separate controller. I''ve tried: post { :controller => :account, :action => :do_login }, { bla bla bla } But that doesnt seem to have worked. Help? Mitch -- Posted via http://www.ruby-forum.com/.