search for: railsfranc

Displaying 12 results from an estimated 12 matches for "railsfranc".

Did you mean: railsfrance
2006 Jan 18
0
Agile Web Development with Rails...in french
...dy and especially french speaking people, Just to tell you that this invaluable book is now available in french. You can download sample PDF chapters on the editor website, Eyrolles editions: http://www.editions-eyrolles.com/Livre/9782212117462/ or on the Ruby on Rails french community portal Railsfrance.org: http://www.railsfrance.org/node/164 Cheers, Richard -- http://www.railsfrance.org/
2006 May 03
1
nil.strip error While trying to post xml data over https.
I am trying to subit some xml data over https to access an API. My code so far seems to generate a very non-helpful error in the guts of the net/http library. This code produces a NoMethodError for nil.strip" require ''net/http'' require ''net/https'' require ''uri'' url =
2006 May 26
0
First official RoR french meeting
Hi all, a very cool info for all french readers of this list. RailsFrance (http://www.railsfrance.org) is organizing a Ruby On Rails meeting in France (Paris). It''s gonna take place during 2006 autumn. You should take a look at http://paris.onrails.info/ Bye. -- Nicolas Cavigneaux http://www.bounga.org -------------- next part -------------- A non-text att...
2006 May 30
0
Ruby papers in Linux Journal.
Hello everyone, Has anybody noticed *that* ? :) http://www.linuxjournal.com/issue/147 http://www.linuxjournal.com/articles/lj/0147/toc147/cover147.png (wow !) -- Jean-Fran?ois . -- Railsfrance : http://www.railsfrance.org
2006 Apr 12
2
Collection has next question
Hi, I know about pagination but dont want to use that option if it all possible. How in a collection of posts can i check if the there is a next item in the collection and then add that an object. For instance: //Returns all the posts into a collection called posts @posts = Post.find(:all) //Returns a specific post based on an id @post = Post.find(params[:id]) //How can i return the next
2006 Apr 20
5
Integrating with Legacy Databases
This seems like it must have been asked before - I really _did_ try to find it in the archives, so my apologies if it''s already out there. Utilizing ActiveRecord, I would like to specify a prefix for the column names in my table. For example, in ''Recipe 16 Integrating with Legacy Databases'' (Rails Recipes, from PragProg, by Fowler) they deal with integration with a
2011 Mar 08
2
Comment creer un formulaire maitre-detail
Salut a tous! Est-il possible de creer un formulaire maitre-detail? J''ai besoin de creer une fenetre ou l''utilisateur rentre un commande et les differents produits associaes a cette commande. Puis-je afficher le tout dans une seule page? Faut-il un minimum de 2 pages Comment visualiser le detail de la commande avec tous les produits commandes, et l''imprimer si
2006 May 23
1
Form Field Helpers... Do they need objects?
I''m trying to use the select helper but do not need to pass the values back to an object because this is just used as a param value. Everywhere I''ve looked I see that the form field helpers require an object name. I''ve tried omitting the name but I get an error telling me I have two few paramaters. (2 out of 3) Other than typing out the HTML myself (because the
2008 Apr 14
0
Job - Open source architect / Ruby on Rails developer - France, Paris Area
Hi, I''ve posted a job proposition for a position involving Ruby on Rails work (around two thirds of the projects) but with a more general open-source environment. This in in France, near Paris. French-speaking people can get more information in the post itself : http://www.railsfrance.org/node/1431 Lionel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe...
2007 Oct 09
23
Testing layouts with RSpec on Rails
Hey guys, Does anyone have any wisdom to share on the subject of speccing Rails layouts? Most of it''s plain old view specs stuff, but are there sensible ways to verify things like the yield call? (Mocking doesn''t catch that) Thanks, Matt -- Matt Patterson | Design & Code <matt at reprocessed org> | http://www.reprocessed.org/
2007 Feb 17
5
render collection with index
Is there any method for getting the current iteration (for changing row colors) in the category partial? <%=render(:partial => "category", :collection => @categories)%> thanks, andy -- Andrew Stone --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post
2006 Mar 14
21
Changing default date format in Rails
I''ve spent all day digging through the rails api and postgres-pr on this, I think it''s time to ask the list. Postgres stores a Date in YYYY-MM-DD format. My users want the dates in MM/DD/YYYY format. Sure, I could explicitly convert it on the app level every place where a date is displayed, but that seemed like a DRY violation. I thought I''d be clever and simply