This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
54 lines (38 loc) · 1.41 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
source 'https://rubygems.org'
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.10'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.15.0', group: [:production, :staging]
gem 'sqlite3', '~> 1.3.7', group: [:development, :test]
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 3.0.4'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 1.3.0'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.3.0', require: false
end
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
gem 'byebug', group: [:development, :test]
# Herkou requirement: logs sent via STDOUT
gem 'rails_12factor', group: [:production, :staging]
# Heroku recommendation: using Unicorn as web server
gem 'unicorn', '~> 4.6.0'
gem 'rack-timeout'
# OpenID client for Steam
gem "ruby-openid", "~> 2.2.3"
# Twitter Bootstrap for design
gem 'bootstrap-sass', '~> 2.3.2'
# New relic for monitoring
gem 'newrelic_rpm', group: [:production, :staging]
# Mechanize for SA profile scraping
gem 'mechanize', '2.7.2'