Displaying 20 results from an estimated 30000 matches similar to: "Routing issue"
2011 May 04
5
rails mongoid
I have a strange problem. Suppose I have a user model with only name
field.
I can add a field with value by creating an instance in mongodb rails
environment.
Example:
class User
  include Mongoid::Document
  field :name
end
Now in rails console, If you do
user = User.new
user[:name] = "xxxx"
user[:firstname] = "yyyy"
user.save
The record gets created with name and
2012 Nov 07
12
Develop using Rails in offline mode
I''m very new to Rails and I''m quite confused if I can practice Rails in 
offline mode? 
I''m following the Ruby on Rails Tutorail by Michael Hartl and I noticed 
that after generating a new app through the command "rails new app_name", 
"bundle install" is then called to download the gems specified in the 
Gemfile.
What if I don''t have an
2011 Sep 19
14
gmaps4rails "acts_as_gmappable" error
Hi all,
            I started to see fun of gmaps4rails gem from
https://github.com/apneadiving/Google-Maps-for-Rails.
After everything done. When visited the locahost, i got the following
error.
undefined local variable or method `acts_as_gmappable'' for #<Class:
0x31a9da8>
the error is due to i have line "acts_as_gmappable"  in my model.
Anybody knows how this is
2010 Jun 15
3
RoutingError
hi, can anyone help me. i want to create an url to invoke  create action
of a controller. routes.rb has the routes. But i am getting error at
line 23. i have @user variable.
user_contact_path(@user.id)
I want generate url as : users/3/contacts to invoke contacts
controller''s create action
---------------------------------------------------------------------------------
2011 Mar 14
2
how to create a form using ruby on rails
*since i''m totally new to this technology , im facing lots 
of difficulties here.*
*
*
*i want to create a form with few fields which shud be connected to mysql 
database using ruby on rails. can anyone help me with this difficulty?*
*
*
*thanks..*
*
*
*regards *
*
*
*mandrekar salim*
-- 
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2010 Jul 26
1
how to generate jasper reports in rails
Hi all,
can anyone tell how to generate reports using jasper in rails
thanks and regards
kiran
-- 
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
2011 Oct 01
6
Rails website start up time
My application is starting/loading very late when hit my website url
in the browser.
Can anybody give some tips to optimize it please.
-- 
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
2011 Mar 18
3
webapplications with rails+geokit
Hi all
Anybody knows any webapplictions presently using geokit plugin with
rails 2.x or 3.x ? If yes pls send me the url pls.
-- 
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
2004 May 03
2
ISDN WAN ISDN bridge possible?
<P>Hi list,<BR><BR>is it possible to create something like a ISDN-WAN-WAN-ISDN
bridge?<BR></P>
<P>We have to change our location, but our number and the telephone system
should shoulb stay the same.</P>
<P> </P>
<P>kind regards,<BR>Patrick Stuckenberger</P>
2012 Jul 04
4
Routing error for stylesheets in rails 3.0
Hi,
I added a css file in public/stylesheets folder (I use Rails 3.0 so no 
asset pipeline) and included it in my views by 
"<%= stylesheet_link_tag ''ss'', :media => :all %>"
But I get a routing error on loading my page in my logs.
"ActionController::RoutingError (No route matches "/stylesheets/ss.css"
Please tell me what are the required
2011 Feb 23
5
Routing problem
In my app i  have word model, words_controller and want create new
action for word model.
I create  new method ''test'' in words_controller, and adds:
resources :words do
    member do
      put ''test''
    end
  end
in routes.rb
my rake routes output:
test_word PUT    /words/:id/test(.:format) {:action=>"test",
:controller=>"words"}
     
2011 Dec 08
1
Determine Bank Name from Routing Number
Hello,
I am working on a project where we need to look up bank name (only
US banks) from routing number. I will like to use something that is
dynamic and has up-to-date information.
Does anyone has suggestions on how to accomplish this?
Thanks a lot in advance!!!!
-- 
Posted via http://www.ruby-forum.com/.
-- 
You received this message because you are subscribed to the Google Groups
2010 Jul 06
4
Simple routing problem
I''ve got the following in config\routes.rb:
map.resources :users
In app\views\shared\_menu.erb, I''ve got:
Please sign in <%=  link_to
"here", :controller=>"user", :action=>"sign_in" -%>
In app\controllers\users_controller.rb
  def sign_in
  end
When I run the application,  I crash with:
Routing Error
No route matches
2010 Dec 29
5
Beginer: Question about routing on Rails 3
I bought this book about rails for beginers (head first Rails)
and its quite simple and good for someone who has no clue about Rails
(or any other language)
On chapter two it talks about routing
but unfortunately the book is for rails 2 and i have rails 3 installed
on my mac.
The line i have to enter in the config/routes.rb of my application is:
map.connect ''/ads/:id'',
2011 May 06
3
Rails 3 Routing problems
I have an UploadsController and UsersController where Users''
has_many :uploads'' via polymorphic attachment in uploads.rb.
Now we i navigate to http://localhost:3000/users/1/uploads
I get re-routed to Uploads#index and rendered is called multiple times
as shown below:
 Started GET "/users/1/uploads" for 127.0.0.1 at 2011-05-06 22:00:38
+0100
  Processing by
2009 Nov 18
4
rails newbie : routing error
After much ado about the naming of model adn controllers...
model : Expense
controller : Expenses
route : map.resources :expenses
Here I am using mysql database and created a unique index, since
db:migrated created an id object and made it as primary key. Now in
the
def create
   @expense = Expense.new(params[:expense])
   if @expense.save
     flash[:viola] = ''New expense saved.. be
2010 Oct 13
2
Routing Error
my register.html.erb   file is :
<% form_for :user do |form| %>
<p><br />
	<fieldset>
		<legend>Enter Your Detail</legend>
  Screen Name
  <input type="text" name="screen_name" id="screen_name" size="20"
maxlength="40"/>
 </p>
  <p>
  Email
  <input type="text"
2011 Jun 14
5
Buttons's routing
Hey
          My app has some buttons and i  have route all  to different action
in router.rb file but click on each  button results in same action. why?
 Am i missing to specify anything...)
 Rails:3.0.7
Thanks in advance.
-- 
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
2010 Jun 02
5
user routing versus admin routing strategies?
In an app where ordinary users are limited to viewing and editing their
own "stuff", but someone with admin privs can view and edit anybody''s
stuff, what''s the right strategy for routing?
At first blush, I''d think that an ordinary user (e.g. with id 565)
should see something like:
  http://example.com/mystuff.html
... where the controller assumes
2011 Jul 28
2
rails 3 routing error
Here''s the error:
  1) SessionsController GET ''new'' should be successful
     Failure/Error: get :new
     ActionController::RoutingError:
       No route matches {:controller=>"sessions", :action=>"new"}
     # ./spec/controllers/sessions_controller_spec.rb:8:in `block (3
levels) in <top (required)>''
  2) SessionsController GET