Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my gem: https://github.com/DerNalia/deep_cloning

and this is how I include it in my gemfile:

gem "deep_cloning", :git => "git://github.com/DerNalia/deep_cloning.git"

The line that the following error is on is this:

ActiveRecord::Base.extend(DeepCloning)

link to source file: https://github.com/DerNalia/deep_cloning/blob/master/lib/deep_cloning.rb

... so.. maybe I'm extending ActiveRecord::Base wrong?

% bundle exec script/server -p3001
=> Booting WEBrick
=> Rails 2.3.8 application starting on http://0.0.0.0:3001
/Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:443:in `load_missing_constant': uninitialized constant ActiveRecord (NameError)
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:80:in `rake_original_const_missing'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/rake-0.8.7/lib/rake.rb:2503:in `const_missing'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:92:in `const_missing'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/bundler/gems/deep_cloning-4d4df89848a4/lib/deep_cloning.rb:102
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:68:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:68:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:66:in `each'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:66:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:55:in `each'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler/runtime.rb:55:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/bundler-1.0.21/lib/bundler.rb:122:in `require'
    from /Users/me/Work/GravityLabs/myproject/config/environment.rb:68
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/rails-2.3.8/lib/initializer.rb:111:in `run'
    from /Users/me/Work/GravityLabs/myproject/config/environment.rb:16
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:156:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:156:in `require'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:521:in `new_constants_in'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:156:in `require'
    from /Users/me/Work/GravityLabs/myproject/config.ru:3
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/rack-1.1.3/lib/rack/builder.rb:46:in `instance_eval'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/rack-1.1.3/lib/rack/builder.rb:46:in `initialize'
    from /Users/me/Work/GravityLabs/myproject/config.ru:1:in `new'
    from /Users/me/Work/GravityLabs/myproject/config.ru:1
    from script/server:3:in `eval'
    from /Users/me/.rvm/gems/ruby-1.8.7-p352@myproject/gems/rails-2.3.8/lib/commands/server.rb:78
    from script/server:3:in `require'
    from script/server:3
share|improve this question
looks like you're trying to refer to ActiveRecord::Base before Active Record has been loaded – Frederick Cheung Feb 6 '12 at 16:14

1 Answer

up vote 1 down vote accepted

You should probably try require 'activerecord' in your gem.


Regarding extend and include:

module M
  def a
    "hello"
  end
end

MyClass1.extend M
MyClass1.a #=> "hello"
MyClass.new.a #=> NoMethodError

MyClass2.send :include, M
MyClass2.a #=> NoMethodError
MyClass2.new.a #=> "hello"
share|improve this answer
question though: I added require 'ActiveRecord', and none of my objects have a .clone! method =\ – NullVoxPopuli Feb 6 '12 at 17:39
Maybe you should use ActiveRecord::Base.send :include, DeepCloning? extend and include tend to be frequently mistaken. – Jakub Hampl Feb 6 '12 at 18:40
if I include deepcloning, wouldn't I just get the methods available as class variables instead of instance variables? The goal is to be able to do myARObject.clone!(params) =\ – NullVoxPopuli Feb 6 '12 at 18:48
I think you have it the other way around. – Jakub Hampl Feb 6 '12 at 20:51
oh, I see you added examples, I must try that. – NullVoxPopuli Feb 6 '12 at 21:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.