public
Fork of foca/integrity
Description: The easy and fun Continuous Integration server
Homepage: http://integrityapp.com
Clone URL: git://github.com/integrity/integrity.git
integrity / init.rb
100644 22 lines (18 sloc) 0.524 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
 
require "vendor/gems/environment"
require "integrity"
 
# Uncomment as appropriate for the notifier you want to use
# = Email
# require "integrity/notifier/email"
# = IRC
# require "integrity/notifier/irc"
# = Campfire
# require "integrity/notifier/campfire"
 
Integrity.configure do |c|
  c.database = "sqlite3:integrity.db"
  c.directory = "builds"
  c.log = "integrity.log"
  c.build_all = true
  c.push :github, "SECRET"
  c.builder :threaded, 5
end