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
sr (author)
Fri Nov 06 08:54:50 -0800 2009
commit  730a0697c33f9cb68c9ab29ac6beb16f76a0ad27
tree    6f2ddcab9a17107952cbedd697a32725629a50b2
parent  0e54e61ae6386b59cae1138c7af138b241716e79
integrity / Gemfile
100644 62 lines (58 sloc) 1.467 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
disable_system_gems
source "http://gemcutter.org"
gem "dm-core", "0.10.1"
gem "dm-timestamps", "0.10.1"
gem "dm-types", "0.10.1"
gem "dm-migrations", "0.10.1"
gem "dm-aggregates", "0.10.1"
gem "dm-validations", "0.10.1"
gem "bcrypt-ruby", "2.0.5"
gem "uuidtools", "2.0.0"
gem "extlib", "0.9.13"
gem "data_objects", "0.10.0"
gem "do_sqlite3", "0.10.0"
gem "rake"
gem "haml", "2.2.2"
gem "thor", "0.9.9"
gem "addressable", "2.1.0"
gem "rack", "1.0.0"
gem "json", "1.1.9"
gem "sinatra", "0.9.4"
gem "sinatra-authorization", "1.0.0"
gem "sinatra-url-for", :git => "git://github.com/emk/sinatra-url-for.git"
gem "bob", "0.5.0"
gem "bobette", "0.0.6"
 
# These are dependencies for the various notifiers. Uncomment as appropriate.
# = Email
# gem "sinatra-ditties"
# = IRC
# gem "shout-bot"
# = Campfire
# gem "tinder"
 
# = Dependencies for the :dj builder
# gem "activerecord"
# gem "delayed_job", :git => "git://github.com/tobi/delayed_job.git"
 
# = Development dependencies.
only :test do
  source "http://gems.github.com"
  gem "sqlite3-ruby"
  gem "activerecord"
  gem "delayed_job", :git => "git://github.com/tobi/delayed_job.git"
  gem "rr"
  gem "mocha"
  gem "redgreen"
  gem "dm-sweatshop"
  gem "ParseTree"
  gem "randexp"
  gem "rack-test", "0.5.0"
  gem "rumbster"
  gem "nokogiri"
  gem "hpricot"
  gem "jeremymcanally-pending"
  gem "jeremymcanally-context"
  gem "foca-storyteller"
  gem "webrat"
  gem "shout-bot"
  gem "sinatra-ditties"
  gem "tinder"
end