What is the difference between include and require in Ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:57:24Z http://stackoverflow.com/feeds/question/318144 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318144/what-is-the-difference-between-include-and-require-in-ruby 8 What is the difference between include and require in Ruby? Owen 2008-11-25T17:12:31Z 2009-10-07T09:24:39Z <p>My question is similar to <a href="http://stackoverflow.com/questions/156362/what-is-the-difference-between-include-and-extend-in-ruby">this one over here</a> about include and extend.</p> <p>What's the difference between <code>require</code> and <code>include</code> in Ruby? If I just want to use the methods from a module in my class, should I <code>require</code> it or <code>include</code> it?</p> http://stackoverflow.com/questions/318144/what-is-the-difference-between-include-and-require-in-ruby/318170#318170 11 Answer by HanClinto for What is the difference between include and require in Ruby? HanClinto 2008-11-25T17:19:28Z 2008-11-25T17:19:28Z <p>From <a href="http://ruby.about.com/b/2008/10/23/a-quick-peek-at-ruby-include-vs-require.htm" rel="nofollow">here</a>:</p> <blockquote> <p><em>What's the difference between "include" and "require" in Ruby?</em></p> <p><strong>Answer:</strong></p> <p>The include and require methods do very different things.</p> <p>The require method does what include does in most other programming languages: run another file. It also tracks what you've required in the past and won't require the same file twice. To run another file without this added functionality, you can use the load method.</p> <p>The include method takes all the methods from another module and includes them into the current module. This is a language-level thing as opposed to a file-level thing as with require. The include method is the primary way to "extend" classes with other modules (usually referred to as mix-ins). For example, if your class defines the method "each", you can include the mixin module Enumerable and it can act as a collection. This can be confusing as the include verb is used very differently in other languages.</p> </blockquote> <p>So if you just want to use a module, rather than extend it or do a mix-in, then you'll want to use "require".</p> <p>Oddly enough, Ruby's "require" is analogous to C's "include", while Ruby's "include" is almost nothing like C's "include".</p> http://stackoverflow.com/questions/318144/what-is-the-difference-between-include-and-require-in-ruby/318180#318180 5 Answer by bradheintz for What is the difference between include and require in Ruby? bradheintz 2008-11-25T17:21:27Z 2008-11-25T17:21:27Z <p>Ruby require is more like "include" in other languages (such as C). This tells Ruby that you want to bring in the contents of another file.</p> <p>Ruby include is an OO inheritance mechanism used for mixins.</p> <p>There is a good explanation <a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/16071" rel="nofollow" title="Ruby require vs. include">here</a>.</p>