search for: rake_original_const_miss

Displaying 6 results from an estimated 6 matches for "rake_original_const_miss".

2006 Mar 25
1
Question about upgrading to rails rc1.1
...9;: stack level too deep (SystemStackError) from c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.2.5.4008/lib/active_ support/dependencies.rb:74:in `require_dependency'' from c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.2.5.4008/lib/active_ support/dependencies.rb:104:in `rake_original_const_missing'' from c:/ruby/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1761:in `cons t_missing'' from ./script/../config/../vendor/plugins/engines/lib/dependencies_exten sions.rb:28:in `require_or_load'' from c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1...
2006 Mar 21
2
r3981 causes SystemStackError
...ils/activesupport/lib/active_support/dependencies.rb:92:in `collect' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:92:in `as_load_path' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:102:in `rake_original_const_missing' from C:/ruby/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1761:in `const_missing' from ./script/../config/../vendor/plugins/engines/lib/engines/dependencies_extensions.rb:35:in `require_or_load' from ./script/../config/../vendor/rails/activesupport/lib/activ...
2006 Jul 16
1
Help: migrating data from fixtures
I''m attempting to load some test data into a table , following along with AWDWR example. My migration is failing on the user connection. C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `rake_original_const_missing'': uninitialized constant User (NameError) So in this line from the migration file: f = Fixtures.new(User.connection, # a database connection I''m translating it to me f = Fixtures.new(Root.mydatabase_development, Would that not be correct ? TIA Stuart
2006 Mar 25
1
Re: Rails Digest, Vol 18, Issue 656
...stemStackError) > from > c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.2.5.4008/lib/active_ > support/dependencies.rb:74:in `require_dependency'' > from > c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.2.5.4008/lib/active_ > support/dependencies.rb:104:in `rake_original_const_missing'' > from > c:/ruby/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1761:in `cons > t_missing'' > from > ./script/../config/../vendor/plugins/engines/lib/dependencies_exten > sions.rb:28:in `require_or_load'' > from > c:/ruby/l...
2006 Mar 26
4
edge and 1.8.2/1.8.4 issues
I recently upgraded to 1.8.4 to try out mongrel, and so far have been in a kind of hell where I can''t get my app working! Currently running (or trying to run): Ruby version 1.8.4 (i386-mswin32) RubyGems version 0.8.11 Rails version 1.0.0 Active Record version 1.13.2 Action Pack version 1.11.2 Action Web Service version 1.0.0 Action Mailer version 1.1.5 Active Support version
2006 Jun 13
11
Question: Migration - multiple creates
I want to create a migration file that creates multiple tables, so i''m guessing the correct format would be: Can anyone confirm ? I''m guessing that each new create script requires a seperate class so formatted this way. Perhaps I''m wrong. TIA Stuart class CreateTable1 < ActiveRecord::Migration def self.up create_table :table1s do |t| t.column :length,