search for: shyammohankano

Displaying 3 results from an estimated 3 matches for "shyammohankano".

2010 Feb 22
6
Rails Parser
...is is due to the Parser used in rails ... is complicated to understand Some Time it generates some unknown error that is difficult to solve .... so i want to know is it really true.... what is the solution to this ...parser problem.... Regards, Shyam +91-971-618-9650 http://sites.google.com/site/shyammohankanojia/cv -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...
2010 Feb 24
5
gem install rmagick --local
...rcdir=. --curdir --ruby=/usr/bin/ruby Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/rmagick-2.12.2 for inspection. Results logged to /usr/lib/ruby/gems/1.8/gems/rmagick-2.12.2/ext/RMagick/gem_make.out plz help Regards, Shyam +91-971-618-9650 http://sites.google.com/site/shyammohankanojia/cv -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...
2010 Dec 01
10
How to Redirect from http://mysite.com to https://www.mysite.com on Herok
Hello I''m looking to learn how to redirect all non-www (mysite.com) to https://www.mysite.com I tried the following: class ApplicationController < ActionController::Base before_filter :check_uri def check_uri redirect_to request.protocol + "www." + request.host_with_port + request.request_uri if !/^www/.match(request.host) if Rails.env ==