Gem & Classes

I’m confused with the difference between gems and classes. Are they
considered the same thing? I familiar with what a class is, but where do
gems fall into place. Do you use them sort of like an include in C\C++?.
Can someone give me a simple example.

What about Modules? How are they used in Ruby?

Thanks
Zayd

El Miércoles, 4 de Febrero de 2009, Zayd C. escribió:

I’m confused with the difference between gems and classes. Are they
considered the same thing? I familiar with what a class is, but where do
gems fall into place. Do you use them sort of like an include in C\C++?.

Gems are just a way to package a Ruby library/module, no more.

What about Modules? How are they used in Ruby?

You should start by reading some Ruby book :wink:

2009/2/4 Zayd C. [email protected]:

I’m confused with the difference between gems and classes. Are they
considered the same thing? I familiar with what a class is, but where do
gems fall into place. Do you use them sort of like an include in C\C++?.
Can someone give me a simple example.

What about Modules? How are they used in Ruby?

A module serves as namespace or as mixin (essentially
a bag of methods).

A class is a module (really, Class inherits from Module)
that can be instantiated. Every object has a class that
was used to instantiate it (you can get it with the “class”
method).

There is no such thing as a “gem” on the language
level. A gem is a package of Ruby code. It can package
any number of modules, classes, source files, and
associated data files.

The require function is used to load source files. It looks for
source files on the load path ($LOAD_PATH). In order for
require to find source files installed as gem, you have
to load the gem (require “rubygems”; gem “some-gem”).

Ruby 1.9 ships with RubyGems and source files from gems
are automatically on the load path.

HTH,
Stefan

Okay Cool!! Understood :slight_smile: Thanks Guys. I need to put in some more Ruby
time

On Wed, Feb 4, 2009 at 5:09 PM, Stefan L. <

Gems are packages of code. Classes are part of how you write code.

Blog: http://random8.zenunit.com/
Learn rails: http://sensei.zenunit.com/