-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
93 lines (75 loc) · 2.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'haml'
gem 'haml-rails'
gem 'simple_form'
gem 'acts_as_list'
gem 'paper_trail'
# JSON
gem 'json', :platform => :jruby
gem 'multi_json', '~> 1.3.6'
gem 'yajl-ruby', :platform => [ :ruby_18, :ruby_19 ]
gem 'active_attr', '~> 0.6.0'
gem 'celluloid'
gem 'state_machine'
gem 'ruby-graphviz', require: 'graphviz'
# OpenSSL
gem 'jruby-openssl', :platform => :jruby
# Ruote and friends
gem 'ruote', git: 'https://github.com/jmettraux/ruote.git'
gem 'ruote-redis', git: 'https://github.com/jmettraux/ruote-redis.git'
gem 'ruote-kit', git: 'git://github.com/kennethkalmer/ruote-kit.git'
# Logging
gem 'cabin', '~> 0.4.4'
# Support libraries for participants
gem 'fog', '~> 1.5.0'
gem 'tinder'
gem 'net-ssh'
gem 'net-ssh-multi'
gem 'spice'
# Queue processing
gem 'sidekiq', '~> 2.1.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass'
gem 'jquery-rails'
group :test do
gem 'rspec-rails', '>= 2.10.0'
gem 'factory_girl_rails', '>= 3.2.0'
gem 'shoulda-matchers', '>= 1.0.0'
gem 'capybara', '>= 1.1.2'
gem 'rack-test', '>= 0.6.0', :require => 'rack/test'
gem 'json_spec', '>= 1.0.3'
gem 'email_spec', '>= 1.2.1'
gem 'spork', '>= 1.0.0rc2'
gem 'guard', '>= 1.0.3'
gem 'guard-rails', '>= 0.1.0'
gem 'guard-rspec', '>= 0.7.2'
gem 'guard-spork', '>= 0.8.0'
gem 'guard-bundler'
gem 'rb-fsevent', '>= 0.9.1'
gem 'growl', '>= 1.0.3'
gem 'database_cleaner', '>= 0.7.2'
gem 'tach', ">= 0.0.8"
gem 'forgery', '>= 0.5.0'
gem 'timecop', '>= 0.3.5'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
gem 'foreman'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'