Skip to content

Instantly share code, notes, and snippets.

@shar1z
Forked from rantav/call_for_papers_devopsil.rb
Created October 22, 2012 14:37
Show Gist options
  • Save shar1z/3931789 to your computer and use it in GitHub Desktop.
Save shar1z/3931789 to your computer and use it in GitHub Desktop.
Call For Papers DevOps IL 2013
require 'speaker'
require 'israel'
module Israel
module DevOps
def call_for_papers(speaker, subject)
# Speakers should apply for the call for papers if they have talks on the
subjects of Continuous Deployment of DevOps tooling
# Assuming they are available Jan 28.
apply(speaker) if ["Continuous Deployment Case Studies", "DevOps tools"].include(subject)
and speaker.available?(Date.new(2013,1,28))
end
def apply(speaker)
# We prefer github, but also settle for goo-ol emails
if speaker.has_github?
speaker.make_pull_request('/devopscon/devopsisrael2013')
else
speaker.send_mail('proposals@devopscon.com')
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment