Displaying 4 results from an estimated 4 matches for "ncancelliere".
Did you mean:
cancellieri
2008 Apr 01
12
undefined method `time_zone=' on Rails 2.0.2.9129 on Mac OS X
I just did a gem update and it broke my rails application. I had to
go back to 2.0.2, because 2.0.2.9129 produces this error on Mac OS X
Leopard:
/Users/nicholas/RubyDev/dummy/config/environment.rb:38: undefined
method `time_zone='' for #<Rails::Configuration:0x12c9f24>
(NoMethodError)
from /Library/Ruby/Gems/1.8/gems/rails-2.0.2/lib/initializer.rb:47:in
`run''
from
2008 Jun 08
1
Unable to get selected option with options_from_collection_for_select
I''m in Rails 2.1, Ruby 1.8.6 --
http://pastie.org/211063
<%= params[:doctor_id] %>
<%=
options_from_collection_for_select(Doctor.active, :id, :name, :selected
=> params[:doctor_id]) %>
<%=
options_from_collection_for_select(Doctor.active, :id, :name, :selected_value
=> params[:doctor_id]) %>
Returns:
53
<option value="49">Michael
2008 May 03
3
Does anyone know where I could find a good explanation of how rails works internally?
I was wondering if anyone knew of some resources I could look at to
learn about how rails works internally. I''ve been looking through the
code but I was wondering if there were any high level explanations of
how it works overall.
Thanks in advance,
Ruben
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2008 Apr 22
3
Installed Rails, problem with 1st Application
so i installed ruby+gems then fetched rails and now i want to start
with an apllication but i dont quite get it:
"""
http://www.rubyonrails.org/down
Make your application
Create your application skeleton and start the server:
rails path/to/your/new/application
cd path/to/your/new/application
ruby script/server
You''re running Ruby on Rails! Follow the instructions on