[Rails] What's New in Rails? New List (Wiki Page on GitHub) for Finding Rails News

2013-11-10 Thread Gerald Bauer
Hello, For the upcoming Vienna.rb talk on the new Planet Ruby site [1][2] I've put together a wiki page about Rails News Options Alternatives. For example: - Ruby on Rails Blog - Rails Talk Mailing List (Yes!) - Planet Ruby on Rails (planetrubyonrails.com) - Rails Casts

Re: [Rails] How do I use Chef to manage database parameters?

2013-11-10 Thread Emil S
Take a look at the chef docs . They have all of this covered in there . On 10 Nov 2013 12:59, Jason Hsu, Rubyist jhsu802...@gmail.com wrote: Thanks, but I still don't understand how to use chef. Let's say that I'm using PostgreSQL for my database, and the name of the database is pg_test1.

[Rails] Re: Learning Ruby - Don't give up

2013-11-10 Thread Franck PARIENTI
Thanks Lazarus In France too, we talk a lot about Ruby on Rails for create website and apps. Le samedi 9 novembre 2013 12:50:38 UTC+1, Lazarus Lazaridis a écrit : An article for those starting learning Ruby Learning Ruby - Don't give

[Rails] Re: Learning Ruby - Don't give up

2013-11-10 Thread Lazarus Lazaridis
You're welcome Franck. Ruby / Rails is getting popular here in Greece too. On Sunday, November 10, 2013 9:22:43 AM UTC+2, Franck PARIENTI wrote: Thanks Lazarus In France too, we talk a lot about Ruby on Rails for create website and apps. Le samedi 9 novembre 2013 12:50:38 UTC+1, Lazarus

Re: [Rails] Re: Learning Ruby - Don't give up

2013-11-10 Thread Leo Caminha
In brazil too! Sent from my iPad On Nov 10, 2013, at 6:32 PM, Lazarus Lazaridis actibit...@gmail.com wrote: You're welcome Franck. Ruby / Rails is getting popular here in Greece too. On Sunday, November 10, 2013 9:22:43 AM UTC+2, Franck PARIENTI wrote: Thanks Lazarus In France too, we

[Rails] accepts_nested_attributes_for how, example

2013-11-10 Thread Srdjan Cengic
I have following tables with following models: users(id, role_id) *has_many :entries* categories(id, category_name) *has_many :entries* entries(id, category_id, user_id) *belongs_to :user, belongs_to :category, has_one :storage* storages(id, title, content, entry_id)*