-
Notifications
You must be signed in to change notification settings - Fork 37
/
Gemfile
109 lines (80 loc) · 2.16 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
source 'https://rubygems.org'
gem 'rails', '~>3.2'
gem 'rack', '~>1.4'
# Database module
gem 'origin', '~>1.0.11'
gem 'moped', '~>1.4.3'
gem "mongoid", '~>3.1.2'
# For convenient styling macros and SASS
gem 'compass-rails', '~> 1.0'
gem 'blueprint-rails', '~> 0.2'
# To interpret Coffeescript in HAML
gem 'coffee-filter', '~> 0.1'
# JavaScript library
gem 'jquery-rails', '~> 2.2'
# Enable HAML format views. Prettier than ERB format views.
gem "haml", '~> 3.1'
# For deployment. Phusion Passenger integrates the rails app. with Apache.
gem 'passenger', '~>4.0'
# To manage background processes
gem 'god'
# Poker logic
gem 'acpc_dealer', '~> 2.0'
gem 'acpc_poker_player_proxy', '~> 1.1'
# Improved forms
gem 'simple_form'
# Instant form validation
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'client_side_validations-mongoid'
# Improved logging output
gem 'awesome_print'
# Simple exception email notifications
gem 'rusen'
# For CLI client application
gem 'methadone'
# For better errors in WAPP
gem 'contextual_exceptions'
# To run background process
gem 'process_runner'
# For background process communication
gem 'sidekiq'
# To add bots without restarting the server
gem 'require_reloader'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# JavaScript library
gem 'jquery-ui-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem "bootstrap-sass-rails"
gem 'zen-grids'
# compass uses this for sprites
gem 'chunky_png'
# native c library for png routines to speed up chunky_png
gem 'oily_png'
end
group :development do
# YARD documentation library
gem 'yard'
# To interpret markdown
gem 'kramdown'
# gem 'rack-mini-profiler'
# Better error information
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
# Not strictly necessary but makes
# testing through a VM network much faster
# because WeBrick needs a line of configuration
# changed, otherwise it's impossibly slow
gem 'thin'
end
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'mocha', require: false
gem 'rspec-rails-mocha', require: false
end