RSS Feed for RubyCategory: Ruby

Open Source SMS Library for Ruby »

RubyGSM is a Ruby library which uses ruby-serialport to provide a nifty interface to send and receive SMS messages via a GSM modem. Sample usage: 1: class ReverseApp 2: def initialize(gsm) 3: gsm.receive(method(:incoming)) 4: @gsm = gsm 5: end 6:  7: def incoming(from, datetime, message) 8: @gsm.send(from, message.reverse) 9: end 10: end 11:  12: gsm […]

Free Ruby Book »

Ruby Best Practices aims to help Ruby developers from a wide range of skill levels improve their fundamental understanding of the language via exposure to the common practices and idioms that many seasoned Rubyists take for granted. With a strong emphasis on exploring real codebases, and an understanding that beautiful solutions depend heavily on context, […]