[Rails] Re: Ruby on Rails Tutorial Chapter 5.3

2015-06-02 Thread Binu A.
Shijie Xin wrote in post #1174447: inside app/views/layouts please check these two files _header.html.erb _footer.html.erb add following code to both files li%= link_to Home, root_path %/li Thanks its working -- Posted via http://www.ruby-forum.com/. -- You received this message

[Rails] Rake commands return blank console`

2015-05-21 Thread Binu A.
Rake test Rake db:migrate bundle exec rake test bundle exec db:migrate All the return no result no errors , just a blank console . This is happening only in my current project . It was working earlier in the same project . In other projects all rake commands are working ! Please help !

[Rails] Ruby on Rails Tutorial Chapter 5.3

2015-05-20 Thread Binu A.
CODE site_layout_test.rb require 'test_helper' class SiteLayoutTest ActionDispatch::IntegrationTest test layout links do get root_path assert_template 'static_pages/home' assert_select a[href=?], root_path, count: 2 assert_select a[href=?], help_path assert_select

[Rails] Umlauts not getting displayed properly in XML

2011-11-09 Thread binu
Hi, I have mysql db encoding = UTF-8 with the table say T and field fld with one record. When I do T.first.fld on rails console it gives me hülloü. Umlauts gets display properly in the database, rails console, development logs and browser. I have an API which uses xml.builder to create the xml and

[Rails] Moving Files from MogileFS to cloud

2011-04-06 Thread binu
We have a running rails app that uses MogileFS to store the files and currently there are around 3.5 millions files on MogileFS. We wanna move to cloud from MogileFS. Wanted to know how should i go about this massive transfer of files. Any suggestions?? Thanks in advance Binu -- You received

[Rails] Re: Using SOAP webservices on rails

2011-02-25 Thread binu
Thanks Mark and Oto. Sorry had been busy working on something else. Mark I don't need any fancy web standards. Its just the 3rd party tool that will be accessing my application using SOAP services. Note: My application is already up and running using REST. I did try using some actionwebservice

[Rails] Using SOAP webservices on rails

2011-02-17 Thread binu
I have an existing restful rails application. I need to add a new API. This new API will be used by SOAP client to access the application. It will be really helpful if someone can guide me or point me to the useful links. After googling for few days I do know we can use actionwebservice gem along

[Rails] Re: How to Generate Dynamic visual effects for images.

2010-10-22 Thread binu
Are there any rails plugin or javascript library which might help me to achieve this? On Oct 22, 8:49 am, Marnen Laibow-Koser li...@ruby-forum.com wrote: Dean wrote in post #956227: Hi All, I am trying to create dynamic display of images. Like I have some images and I want to display

[Rails] Re: How to display validation errors in nested form

2010-10-13 Thread binu
I am pretty sure you have have nested forms:) On Oct 12, 5:04 pm, pepe p...@betterrpg.com wrote: You can't have a form inside of another one. Maybe I am misunderstanding? On Oct 12, 4:22 pm, Dean deansam2...@gmail.com wrote: Hi All, I have a nested form OUTER FORM for :doctor