Revisions

gist: 226388 Download_button fork
public
Public Clone URL: git://gist.github.com/226388.git
Embed All Files: show embed
should_i_deploy.rb #
1
2
3
4
5
6
7
8
9
10
class Patrick
  def self.should_i_deploy?(*args)
    true
  end
end
 
puts Patrick.should_i_deploy?({ :visitors => 1000, :on_signup_page => 500 })
puts Patrick.should_i_deploy?({ :failed_tests => 30, :total_tests => 35 })
puts Patrick.should_i_deploy?({ :requires_large_alter_table_migration => true })
puts Patrick.should_i_deploy?({ :down_time_required => 24.hours, :available_servers => 1 })