forked from brendonrapp/isis
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
35 lines (27 loc) · 728 Bytes
/
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
source 'https://rubygems.org'
## MRI
gem 'daemons'
# Hipchat (XMPP4R)
# The published xmpp4r gem is abandoned and buggy
gem 'xmpp4r', :git => "https://github.com/whitehat101/xmpp4r.git"
# gem 'xmpp4r', :git => "https://github.com/whitehat101/xmpp4r.git", :branch => "ruby-1.8.7"
## jRuby
gem 'spoon'
# Hipchat (smackr/jruby)
gem 'smackr', '0.0.3.a', :git => "git://github.com/where/smackr.git", :platform => 'jruby'
# Campfire
gem 'tinder'
# Plugins
gem 'twss'
gem 'nokogiri'
gem 'amatch'
gem 'em-timers', :git => "https://github.com/g1nn13/em-timers.git"
gem "colored", "~> 1.2"
group :test do
gem 'spork'
gem 'rspec'
gem 'guard-rspec'
gem 'guard-bundler'
gem 'rb-fsevent', '~> 0.9.1'
gem 'random_data'
end