-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (37 loc) · 1.14 KB
/
Gemfile
File metadata and controls
47 lines (37 loc) · 1.14 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
source 'http://rubygems.org'
gem 'rails', '3.0.9'
gem 'rake', '~> 0.9.3.beta.1'
gem 'pg', :platforms => :ruby
gem 'symbolize'
gem 'redis'
gem 'redis-namespace'
gem 'resque', '>= 1.17.1'
gem 'resque-status', :git => 'git://github.com/hostingstack/resque-status.git' # Forked because of web interface fixes
gem 'haddock'
gem 'net-dns'
gem 'uuid'
gem 'SyslogLogger', :require => "syslog_logger"
# Route, ActiveSupport and JSON don't play well together, so use YAJL instead.
gem 'yajl-ruby', :require => 'yajl'
gem 'ruote', :git => 'git://github.com/jmettraux/ruote.git'
gem 'ruote-sequel', :git => 'git://github.com/jmettraux/ruote-sequel.git'
gem 'thrift'
gem 'hs-api', :require => 'hs-api/agent',
:path => 'gems/hs-api'
# Frontend/API libs
gem 'devise'
gem 'haml'
gem 'sass'
gem 'jquery-rails'
gem 'inherited_resources'
gem 'has_scope'
gem 'ruote-kit', :git => 'git://github.com/hostingstack/ruote-kit.git'
gem 'unicorn', :platforms => :ruby
gem 'public_suffix_service'
gem 'devise_oauth2_providable'
group :development do
gem 'rspec', ">= 2.0"
gem 'rspec-rails'
gem 'factory_girl_rails', :require => false
gem 'ci_reporter'
end