Skip to content

Instantly share code, notes, and snippets.

@joseluistorres
Created June 9, 2013 13:41
Show Gist options
  • Save joseluistorres/5743586 to your computer and use it in GitHub Desktop.
Save joseluistorres/5743586 to your computer and use it in GitHub Desktop.
RubyGDL Reunión Mensual Junio 13, 2013
require 'rubygdl'
require 'hackergarage'
require 'more/people'
describe RubyGDL::ReunionMensual do
it 'should be at 7pm CDT in HG'
Me.goTo(HackerGarage.place).onTime.should be_true
end
it 'should be several awesome talks'
AwesomeRubyist[:3zcurdia].giveTalk('Como construir Extenciones de C en ruby').should be_true
AwesomeRubyist[:edgarjs].giveTalk('CDN para servir assets estáticos en Rails').should be_true
AwesomeRubyist[:chubas].giveTalk('DSL, or not DSL').should be_true
AwesomeRubyist[:borealsummit].giveTalk('Single page apps with Angular JS and Rails').should be_true
AwesomeRubyist[:mvidaurre].giveTalk('Rails.API, serializers y Ember').should be_true
AwesomeRubyist[:mvidaurre].giveTalk('BDD con RSpec y Capybara').should be_true
AwesomeRubyist[:joseluis_torres].giveTalk('CSSCSS finding duplicates in your CSS').should be_true
AwesomeRubyist[:joseluis_torres].giveTalk('RailsBestPractices Gem').should be_true
AwesomeRubyist[:bantik].giveTalk('Better Living Through Open Source (Google Hangout)').should be_true
end
it 'should be beers and pizza'
Be.happy.should be_true
end
it 'should everyone know the date and time on Thursday June 13th at 7pm CDT'
People.markYourAgendaFor('June/13/2013').at('7pm CDT').should be_true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment