26 Feb '12, 4pm

Ruby Summary: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial:

Ruby Modules are similar to classes in that they hold a collection of methods, constants, and other module and class definitions. Unlike classes, you cannot create objects based on modules; instead, you specify that you want the functionality of a particular module to be added to the functionality of a class, or of a specific object. Modules serve two purposes: First they act as namespace, letting you define methods whose names will not clash with those defined elsewhere. Second, they allow you to share functionality between classes - if a class mixes in a module, that module's instance methods become available as if they had been defined in the class. They get mixed in. Observe how we use require or load . require and load take strings as their arguments. require 'motorcycle' or load 'motorcycle.rb' include takes the name of a module, in the form of a constant, as in incl...

Full article: http://rubylearning.com/satishtalim/ruby_summary9.html

Tweets

Bundler

gembundler.com 26 Feb '12, 7pm

Run an executable that comes with a gem in your bundle $ bundle exec rspec spec/models In some cases, running executables ...

Ruby Version Manager + Rails Bundler = Magic

rvm.beginrescueend.com 26 Feb '12, 7pm

RVM lets you deploy each project with its own completely self-contained and dedicated environment--from the specific versi...

RVM: Ruby Version Manager - Using Cron with RVM

RVM: Ruby Version Manager - Using Cron with RVM

rvm.beginrescueend.com 26 Feb '12, 7pm

$ rvm help # Documentation Index Documentation > Integration > Cron Using RVM with Cron RVM allows few easy ways to integr...

Be Prepared for Ruby 1.9.3 and 1.9.4: What’s New and What’s Different

Be Prepared for Ruby 1.9.3 and 1.9.4: What’s Ne...

rubyinside.com 25 Feb '12, 10pm

Ruby 1.9.2 essentially fixed down the language design for 1.9; 1.9.3 is just a 'better implementation' Ruby 1.8 has "no fu...

How to add a instance variable through a mixin?...

ruby-forum.com 27 Feb '12, 7am

On 2/12/08, [email protected] <[email protected]> wrote: > end > object of MyClass. You don't really add ins...

Sam Ruby: Hearing Aid

intertwingly.net 25 Feb '12, 1pm

Hearing Aid Sat 25 Feb 2012 at 12:34 I now have an open fit hearing aid device for my left ear. That ear has experienced t...

Venir à Ruby après un autre langage:

ruby-lang.org 25 Feb '12, 6pm

Le présent document se partage en deux grandes sections. En premier lieu, une revue rapide de ce à quoi vous pouvez vous a...

Practicing Ruby - The Double Dispatch Dance:

blog.rubybestpractices.com 25 Feb '12, 2am

Eric Wong 's Posts ( feed ) USP: Unix processes and their attributes Today Eric presents various bits of information that ...

Nuby on Rails | Ruby on Rails for Newbies

Nuby on Rails | Ruby on Rails for Newbies

nubyonrails.com 26 Feb '12, 6pm

One skill that is important is being able to respond to change. I frequently think back to a quote I saw in a skateboardin...

@CLANNAD90710

rubyforge.org 25 Feb '12, 9pm

A self-contained installer that includes the Ruby language, several popular extensions, an HTML Help based API reference, ...

On Ruby: Real World Performance Profiling:

on-ruby.blogspot.com 23 Feb '12, 8pm

It looks like my post on Ruby 1.9.0 performance is drawing some criticism over on on reddit . I already updated the origin...

Feedback needed for the Rails Engines Guide:

edgeguides.rubyonrails.org 27 Feb '12, 12am

invoke active_record create db/migrate/[timestamp]_create_blorgh_posts.rb create app/models/blorgh/post.rb invoke test_uni...

Ruby Programming Language 中文官方網頁:

ruby-lang.org 21 Feb '12, 2am

RubyConf Taiwan 2011 Call For Sponsors RubyConf Taiwan 將於 2011/8/26 (週五) 和 8/27 (週六) 在中央研究院人科所會議廳舉辦,是台灣唯一及最大的 Ruby 程式語言大會,...

Upcoming Ruby Programming Competitions with Mat...

ruby-lang.org 25 Feb '12, 2am

Upcoming Ruby Programming Competitions with Matz - Grand Prize - 1,000,000 JPY! Dear Ruby Enthusiasts: The Government of F...

A Unix Shell in Ruby - Part 2

rubyflow.com 21 Feb '12, 12pm

Posted by jstorimer on February 21, 2012 — 0 comments I just published the second article in a series where I implement a ...