Re: [Rails] Videoconferencing.

2018-02-07 Thread Germano Teixeira
I didn't know bigbluebutton. Em qua, 7 de fev de 2018 às 05:47, Mauro Sanna <mrsan...@gmail.com> escreveu: > Thanks for the answer. What about bigbluebutton? > > On 6 February 2018 at 21:15, Germano Teixeira <german...@gmail.com> wrote: > >> I'm using most of th

Re: [Rails] Videoconferencing.

2018-02-06 Thread Germano Teixeira
0UrG%2BRZ-vo%3DxdUOM1J77xgEn2kmRFOE9OVB4NujSye7sA%40mail.gmail.com > <https://groups.google.com/d/msgid/rubyonrails-talk/CAE17a0UrG%2BRZ-vo%3DxdUOM1J77xgEn2kmRFOE9OVB4NujSye7sA%40mail.gmail.com?utm_medium=email_source=footer> > . > For more options, visit https://groups.google.com/d/o

Re: [Rails] conditional layout question ? sidebar visible on all pages except the login page.

2014-08-13 Thread Germano Teixeira
You have to look in your routes file what is your login_path. login_path is just a example. 2014-08-13 15:24 GMT-03:00 Roelof Wobben rwob...@hotmail.com: Sorry but I do not work. I see a message that login_path is not known. I think that devise is messing things up. Roelof Op woensdag

Re: [Rails] conditional layout question ? sidebar visible on all pages except the login page.

2014-08-13 Thread Germano Teixeira
run rake routes in cosole to see your login path. 2014-08-13 16:08 GMT-03:00 Germano Teixeira german...@gmail.com: You have to look in your routes file what is your login_path. login_path is just a example. 2014-08-13 15:24 GMT-03:00 Roelof Wobben rwob...@hotmail.com: Sorry but I do

Re: [Rails] Can somebody explain to me the hype behind using Ruby on Rails to create web apps?

2014-07-31 Thread Germano Teixeira
As a developer i have no doubt that ruby on rails is better than PHP. I already worked with PHP and now only use Ruby on Rails, the development is faster and easer. But you need to look in the market, hire a php developer is easy and cheap than hire a RoR developer. 2014-07-31 16:18 GMT-03:00

Re: [Rails] Ruby On Rails

2014-05-20 Thread Germano Teixeira
Did you try install the mysql gem before run rails new command? Try run gem install mysql2 as suggested by the log. This will show you what is the real problem. 2014-05-20 22:48 GMT-03:00 Duong vong veasna veasnakhme...@gmail.com: Dear all Rails Developers, i can not use the command rails new

Re: [Rails] What is the proper way to create lists?

2014-03-10 Thread Germano Teixeira
You should use a has_and_belongs_to_many association. Here is a nice code sample: http://guides.rubyonrails.org/association_basics.html#the-has-and-belongs-to-many-association Don,t forget to create a middle table bookmasks_lists. If the asociation has any attributes you shold use has_many

Re: [Rails] I am getting a ' undefined method error ' when saving a comment

2013-08-22 Thread Germano Teixeira
You shold use *has_many :comments* instead of *has_many :comment* Then you can call @post.comments Look this example: http://guides.rubyonrails.org/association_basics.html#the-has-many-through-association Take a look at accepts_nested_attributes to create your posts:

Re: [Rails] Subir N imagenes Drag and Drog

2013-07-18 Thread Germano Teixeira
Try Jquery File Upload. You can drag drop files from your desktop on this webpage with Google Chrome, Mozilla Firefox and Apple Safari. http://blueimp.github.io/jQuery-File-Upload/. And there is a gem: https://github.com/tors/jquery-fileupload-rails 2013/7/17 Victor Diaz