forked from ruby-rcade/RubyGameDev.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
70 lines (55 loc) · 1.28 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
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '~> 4.0.0'
# application server
gem 'thin'
# databases
gem 'sqlite3', groups: [:development, :test]
group :production do
gem 'pg'
gem 'rails_12factor'
gem 'therubyracer' # for asset compilation
end
# assets
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
# TODO: upgrade to latest bootstrap
gem 'bootstrap-sass', github: 'thomas-mcdonald/bootstrap-sass'
gem 'quiet_assets', group: :development
# authentication
gem 'omniauth'
gem 'omniauth-github'
gem 'clearance'
# social
gem 'twitter' # used for posting updates
# authorization
gem 'pundit'
# configuration
gem 'dotenv-rails' # for managing environment variables
gem 'whenever', :require => false # for managing crontab
# deployment and provisioning
# gem 'sunzi'
# gem 'capistrano', '~> 2.15'
# monitoring/reporting
gem 'newrelic_rpm'
gem 'bugsnag'
# markdown processing
gem 'redcarpet'
group :test do
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails', '~> 4.4.0'
# gem 'webmock'
gem 'codeclimate-test-reporter', require: false
end
# api
gem 'jbuilder', '~> 1.2'
group :development, :test do
gem 'pry-remote'
gem 'guard'
gem 'guard-rspec'
gem 'terminal-notifier-guard'
end