Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introducción a Ruby on Rails

Avatar for chubas chubas
July 06, 2012

Introducción a Ruby on Rails

Introducción básica a los principios de Ruby y Ruby on Rails. Presentada en el evento organizado por GeekGirlsMX

Avatar for chubas

chubas

July 06, 2012
Tweet

More Decks by chubas

Other Decks in Programming

Transcript

  1. require ‘twitter’ Config.accounts.each do |account| Twitter.sign_in!(
 :user => account.user,
 :password

    => account.password
 )
 end
 Twitter::Stream.search(‘breezi’) do |tweet|
 next if tweet.is_retweet?
 puts “You have new mention! #{tweet.text}”
 end
  2. Baja  barrera  de  entrada   Componentes  “out  of  the  box”

      Extensibilidad  con  gemas  y  plugins   Extensa  comunidad  
  3. Convention  Over  Configuration   Don’t  Repeat  Yourself   Keep  It

     Simple,  Stupid   You  Ain’t  Gonna  Need  It