Re: [Rails] error message in rails

2012-01-17 Thread Colin Law
On 17 January 2012 08:56, Kapil Kaligotla
 wrote:
> I am using validations for first name, but I am getting error message
> two times for the label and text_field,
>
> 
>    <%= f.label :first_name %> 
>    <%= f.text_field :first_name %>
>  

Show us the validation you have specified and what the error is and
why you think the error is wrong.  Otherwise what hope have we got of
helping?

Colin

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] error message in rails

2012-01-17 Thread Kapil Kaligotla
I am using validations for first name, but I am getting error message
two times for the label and text_field,


<%= f.label :first_name %> 
<%= f.text_field :first_name %>
  

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] error message in rails

2012-01-11 Thread Kapil Kaligotla
Hi,
   I used the below syntax in config/initializers, but i am getting
the error message two times, please suggest me the better way to over
come it

ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
  if html_tag =~ /<(input|label|textarea|select)/
error_class = 'error'
nodes = Hpricot(html_tag)
nodes.each_child { |node| node[:class] =
node.classes.push(error_class).join(' ') unless !node.elem? ||
node[:type] == 'hidden' || node.classes.include?(error_class) }
nodes.to_html
  else
html_tag
  end
end

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] Error message while starting rails server

2012-01-09 Thread serpent403
I am getting the below errors whenever i try to start my rails server
("rails s") or install a new gem. Can ne1 tell me how to get rid of
them?


Invalid gemspec in [/var/lib/gems/1.8/specifications/
tilt-1.3.3.gemspec]: invalid date format in specification: "2011-08-25
00:00:00.0Z"
Invalid gemspec in [/var/lib/gems/1.8/specifications/
hashie-1.2.0.gemspec]: invalid date format in specification:
"2011-10-15 00:00:00.0Z"
Invalid gemspec in [/var/lib/gems/1.8/specifications/
oauth2-0.5.2.gemspec]: invalid date format in specification:
"2012-01-04 00:00:00.0Z"
Invalid gemspec in [/var/lib/gems/1.8/specifications/
faraday-0.7.5.gemspec]: invalid date format in specification:
"2011-10-04 00:00:00.0Z"
Invalid gemspec in [/var/lib/gems/1.8/specifications/
instagram-0.8.gemspec]: invalid date format in specification:
"2011-08-15 00:00:00.0Z"


-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



Re: [Rails] error message of a child object

2010-05-06 Thread Michael Pavling
On 7 May 2010 00:49, oren  wrote:
> in my update action of Key, if the key has non-valid value object I
> see this error message:
> "Translation values is invalid"
>
> why don't I see:  "already exist in another key" instead?

Have a look at this thread from last week, which is the same question.

http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/cb995e54c0fe16db/59c3189a80fb0b69

-- 
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-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] error message of a child object

2010-05-06 Thread oren
class TranslationKey < ActiveRecord::Base
  has_many :key_values
  has_many :translation_values, :through => :key_values
  validates_uniqueness_of :name, :message => "already exist in another
key"
end

class TranslationValue < ActiveRecord::Base
  has_many :key_values
  has_many :translation_keys, :through => :key_values
  has_many :languages
  validates_presence_of :text, :message => "can't be empty"
end

in my update action of Key, if the key has non-valid value object I
see this error message:
"Translation values is invalid"

why don't I see:  "already exist in another key" instead?

-- 
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-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] Error message

2009-01-07 Thread Shandy Nantz

I have this app where people can build a profile full of various kinds
of data. The first page that they see when they create their profile is
a page named 'new'. If you add an id number for the company you work for
- one that is already know by the user - it automaticaly fills in your
company address information for you. Everything works fine, but I just
happen to be looking at my logs and I see that everytime the 'new' page
is visited it is throwing some kind of error:

ActionController::RoutingError (No route matches
"/javascripts/defaults.js" with {:method=>:get}):

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/routing/recognition_optimisation.rb:67:in
`recognize_path'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/routing/route_set.rb:384:in
`recognize'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:148:in
`handle_request'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in
`dispatch'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in
`synchronize'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in
`dispatch'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in
`dispatch_cgi'

c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in
`dispatch'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../lib/mongrel/rails.rb:76:in
`process'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../lib/mongrel/rails.rb:74:in
`synchronize'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../lib/mongrel/rails.rb:74:in
`process'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:159:in
`process_client'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:158:in
`each'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:158:in
`process_client'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:285:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:285:in
`initialize'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:285:in
`new'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:285:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:268:in
`initialize'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:268:in
`new'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel.rb:268:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel/configurator.rb:282:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel/configurator.rb:281:in
`each'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel/configurator.rb:281:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mongrel_rails:128:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/lib/mongrel/command.rb:212:in
`run'

c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mongrel_rails:281

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in
`load'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in
`load'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in
`new_constants_in'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in
`load'

c:/ruby/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in
`require'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in
`new_constants_in'

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in
`require'
c:/ruby/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
./script/server:3
-e:2:in `load'
-e:2

Rendering
c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb
(not_found)

Everything seems to be working fine, the profile get created and the
company address gets saved but I would like to make it so that this
error is not thrown. I imagine that this is a rou

[Rails] Error message when installing rails

2009-01-03 Thread cutegirl

After I entered the command "gem install rails --include-dependencies"
for a while, an error message "ERROR: while executing gem...
(Zlib::BufError) buffer error". How can I fix this problem? I am new
to rails and I hope I can get some help here. Thanks

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] error message

2008-11-02 Thread Delirium tremens

When I run a test, I get the error message: "FormatError: Bad data for
Story fixture named two (nil)". What should I do about it?
--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] error message 'undefined method `require_gem' for main:Object (NoMethodError)'--how to resolve?

2008-09-30 Thread Kenneth McDonald

I'm getting the following when doing a db:migrate after installing RoR  
2+:

Macintosh-4:ui Ken$ rake db:migrate
/usr/local/bin/rake:17: undefined method `require_gem' for main:Object  
(NoMethodError)

I have done a ' sudo gem update --system'. Any thoughts as to what  
might be causing this?

This is on OS X 10.5

Thanks,
Ken



--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---