forked from integrity/integrity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (67 loc) · 1.7 KB
/
Gemfile
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
63
64
65
66
67
68
69
70
71
72
source "http://rubygems.org"
gem "dm-sqlite-adapter", "1.0.0"
gem "dm-core", "1.0.0"
gem "dm-timestamps", "1.0.0"
gem "dm-types", "1.0.0"
gem "dm-migrations", "1.0.0"
gem "dm-aggregates", "1.0.0"
gem "dm-validations", "1.0.0"
gem "bcrypt-ruby", "2.1.2"
gem "uuidtools", "2.1.1"
gem "extlib", "0.9.15"
gem "data_objects", "0.10.2"
gem "do_sqlite3", "0.10.2"
gem "rake"
gem "haml", "2.2.17"
gem "thor", "0.9.9"
gem "addressable", "2.1.1"
gem "json", "1.1.9"
gem "sinatra", "1.0.0"
gem "sinatra-authorization", "1.0.0"
gem "bcat", "~>0.5"
gem "rack", "1.1.0"
# These are dependencies for the various notifiers. Uncomment as appropriate.
# = Email
# gem "sinatra-ditties"
# = IRC
# gem "shout-bot"
# = Campfire
# gem "broach", :git => "git://github.com/Manfred/broach.git"
# gem "nap", :git => "git://github.com/qrush/nap.git"
# = AMQP
# gem "bunny"
# = Dependencies for the :dj builder
# gem "activerecord"
# gem "sqlite3-ruby"
# gem "delayed_job", :git => "git://github.com/tobi/delayed_job.git"
# = Dependency for the :resque builder
# gem "resque"
# Uncomment if you're using pg or mysql instead of sqlite
# gem "pg"
# gem "mysql"
# = Development dependencies.
group :test do
gem "ruby-debug" if RUBY_VERSION < '1.9'
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 "contest"
gem "webrat"
gem "shout-bot"
gem "sinatra-ditties"
gem "broach", :git => "git://github.com/Manfred/broach.git"
gem "nap", :git => "git://github.com/qrush/nap.git"
gem "bunny"
gem "webmock"
gem "turn"
end