-
Notifications
You must be signed in to change notification settings - Fork 71
/
Gemfile
43 lines (35 loc) · 856 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
36
37
38
39
40
41
42
43
source "https://rubygems.org"
gem 'analysand', '~> 3.0.2', git: 'https://github.com/yipdw/analysand.git'
gem 'addressable'
gem 'cinch', '~> 2.2.0'
gem 'celluloid'
gem 'celluloid-redis'
gem 'listen', '~> 2.0'
gem 'net-http-persistent'
# Psych 2.0.0 as shipped with Ruby 2.0 doesn't include Psych.safe_load
gem 'psych', '~> 2.0', '>= 2.0.1'
gem 'redis'
gem 'hiredis'
gem 'trollop'
gem 'uuidtools'
gem 'twitter', '~> 5.5.1'
gem "ffi-rzmq", "~> 2.0"
platform :rbx do
gem 'rubysl'
end
group :test do
gem 'cucumber'
gem 'rspec'
gem 'sinatra'
end
group :dashboard do
gem 'json'
gem 'reel'
gem 'webmachine', :git => 'https://github.com/seancribbs/webmachine-ruby.git'
gem 'webmachine-sprockets', :git => 'https://github.com/ArchiveTeam/webmachine-sprockets.git'
gem 'erubis'
end
group :development do
gem 'rake'
gem 'travis-lint'
end