Displaying 20 results from an estimated 10000 matches similar to: "Migrations on models using gettext validation messages"
2006 May 09
5
How to use gettext in plugins?
I use rails-engine as a plugin of the application and I want to localize
the validate message from the plugin:
validates_length_of :login, :within => 3..40, :on => :create, :message
=> N_("%{fn} is too short (min is %d characters)")
It can not display the according language,where should i set it?
I have tried to add
require ''gettext/rails''
2006 Aug 08
2
Migrations broken on trunk?
Just got an odd error running migrations off of a new trunk today. Is
this my fault is there a bug right now?
> rake db:migrate --trace
(in /home/magneticworld)
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
rake aborted!
undefined method `instantiate_observers'' for ActiveRecord::Base:Class
2008 Feb 04
0
gettext and acts_as_paranoid gives stack overflow
HI all,
I just started using acts_as_paranoid, and I''ve been using gettext for
a while. Now I get the below errors when I run rake gettext:updatepo.
It''s interesting that the errors seem to stack up, so the first file
just errors on belongs_to_without_deleted, the second file has a layer
of eval, the second has two layers of eval, and so forth.
I''ve tried for a while
2005 Nov 07
9
Using Gettext To Translate Your Rails Application
Hi,
Has anyone has any success using the gettext translation methods mentioned in
this wiki page?
http://manuals.rubyonrails.com/read/chapter/105
I got up to running the localize script at which point it protests about not
being able to find ''gettext/rgettext'' from the require line at the top of the
script:
script/localize:8:in `require'': no such file to load --
2006 Jan 30
5
Problems migrating from Postgres to MySQL
Hello everyone,
I''m trying to migrate a working app from Postgres to MySQL, and I''m
trying to use a migration to get it done rather than alter all my
database table creation scripts to MySQL syntax. I''ve done loads of
work with Postgres, but am a real newbie with MySQL...
I did a ''rake db_schema_dump'' from my Postgres app, and got a nice
looking
2006 Mar 11
0
Ruby-GetText-Package-1.3.0
Hi,
Ruby-GetText-Package-1.3.0 is now available.
Now ActiveRecord::Column.human_name values translate automaticaly.
Changes for RoR
---------------
* Improve Local::Object
* POSIX, C convert to "en".
* Enhance supports of Ruby on Rails.
* ActionMailer localization support.
* Use GetText function(_() N_() etc) in template.
* ISO-2022-JP charset is used when language
2006 Mar 29
2
Rake Migrations for Rails 1.1
Hi all. I keep having the following error when I invoke the rake
db:migrate command for Rails 1.1 (Ruby 1.8.2 -- Windows 2000)
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:migrate
== Realtorex: migrating
=======================================================
-- create()
rake aborted!
undefined method `create'' for
2006 Jan 16
1
GetText (change default error messages)
Hi,
is it possible to change the default error messages?
for example from
... errors prohibited this ... from being saved
to something else?
thanks,
trung
--
Posted via http://www.ruby-forum.com/.
2006 Feb 22
0
rake migrate problems
I''ve been trying to build an app with migrations:
When I attempt:
$rake migrate
I get the following errors:
rake migrate --trace
(in /Users/intention/work/atlrugpoll_working)
** Invoke migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute migrate
^Crake aborted!
2006 Feb 16
9
rake migrate HANGS
I have been attempting to use migrations as a build a poll app.
I have created the initial file:
-----------------
class CreateTablePollsAndPollOptions < ActiveRecord::Migration
def self.up
create_table polls do |table|
table.column ''question'', :string
table.column ''user_id'', :integer
table.column ''start_time'',
2006 Jul 07
2
Problem with GetText 1.6.0 - undefined method ''N_''
I''m just upgraded GetText from 1.4.0 to 1.6.0, and all my tests got broken.
I got this error:
ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:1129:in
`method_missing'': undefined method `N_'' for User:Class (NoMethodError)
etc
My model user.rb has this line:
validates_format_of :login, :with => /^[a-zA-Z0-9_]+$/, :message =>
2005 Dec 17
0
bug? saving (valid) updated object results in validation error
Hi!
I have an error that I don''t understand. It shouldn''t be happening,
according to the documentation! I have a class, defined as below.
> class Coupon < ActiveRecord::Base
> belongs_to :product
> belongs_to :account
> validates_presence_of :product
> validates_associated :product
> validates_presence_of :voucher
> validates_presence_of
2007 Aug 07
4
Execute additional commands after creating database?
I''m writing some code that accesses some lagacy database on
PostgreSQL. Since the old database had some really ughly and weird
naming conventions (like CamelCase). To work around this I created a
second schema (named rails) in the same database and gave the tables
and fields some rails-friendly names. The database user that Rails
uses has its search_path set to the rails schema. That way
2005 Dec 05
0
bug in bubbleshare's Active Record extensions?
I''m using add_foreign_key_constraint and remove_foreign_key_constraint
from Bubbleshare''s Active Records Extension plugin now to manage the
foreign key relationships I describe in my other recent posting. The
constraints get added within migrations, but I''m running into two
problems (Rails 0.14.3, PostgreSQL db):
1. Dumping the schema doesn''t dump the
2010 Aug 23
1
Cannot migrate database, strange error!
Im using restful authentication, and i changed the username model from
login to username. The error is Mysql::Error: Key column ''login'' doesn''t
exist in table: CREATE UNIQUE INDEX `index_users_on_login` Heres the
trace:
DEPRECATION WARNING: Rake tasks in
vendor/plugins/restful-authentication/tasks are deprecated. Use
lib/tasks instead. (called from
2010 Feb 25
0
Rails problems running rake and other tasks - undefined method `action_controller'
I suddenly have a major problem in all my Rails 3 apps:
$ rake db:migrate --trace
rake aborted!
Don''t know how to build task ''db:migrate''
/Users/kristianconsult/.rvm/gems/ruby-1.9.1-p378/gems/rake-0.8.7/lib/
rake.rb:1728:in `[]''
/Users/kristianconsult/.rvm/gems/ruby-1.9.1-p378/gems/rake-0.8.7/lib/
rake.rb:2050:in `invoke_task''
2006 May 11
2
Unit tests fail with sqlite3 and rails 1.1
Hello all,
I''m kinda going through a rocky upgrade to rails 1.1 and I can''t find
much on google about this. When I run my tests I get this:
$ rake
(in /home/www/art2)
/usr/bin/ruby -Ilib:test
"/usr/lib/ruby/gems/1.8/gems/rake-0.7.1/lib/rake/rake_test_loader.rb"
"test/functional/panoramas_controller_test.rb"
2009 Mar 09
2
rake:db:prepare Mysql::Error: #42000BLOB/TEXT column ' used in key specification without a length
I have a test environment running rails 1.2.3. I am just starting to
introduce testing into this project.
When I run a rake db:prepare. I see this message "Mysql::Error:
#42000BLOB/TEXT column ''short_description'' used in key specification
without a key length: CREATE INDEX ''short_description'' on cached_cars
(''short_description'')
The
2007 Apr 24
1
strange frozen string problem starting rails
hi,
I am experiencing a very strange problem with my Rails installation. I''m
using ruby 1.8.6 on Debian Linux, with edge rails.
Whenever I try to start mongrel, I get an exception about "can''t modify
frozen string". I get a similar exception when I try to do "rake
db:migrate". In this case, the exception seems to pop up *after* the
migrations do succesfully
2006 Jan 19
3
Troubleshooting Depot App
Hello! I am working my way through the Agile Web Development guide on
RoR (the depot application).
I am a bit lost as to where to debug the following error. The error is
pasted below:
================================================================================================
NameError in Store#add_to_cart
undefined local variable or method `product'' for LineItem:Class