-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (47 loc) · 1.19 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
source "https://rubygems.org"
# Core stuff
gem "rails", "3.2.1"
gem "thin"
gem "pg"
# Gems used only for assets and not required
# in production environments by default.
group :assets, :production do # Heroku requires you to have these as part of the asset pipeline in production!
gem "sass-rails", "~> 3.2.3"
gem "coffee-rails", "~> 3.2.1"
gem "haml", "~> 3.1.4"
gem "uglifier", ">= 1.0.3"
gem "twitter-bootstrap-rails"
gem "font-awesome-rails", :git => "git://github.com/jkao/font-awesome-rails.git"
gem "ruby-haml-js"
gem "jquery-ui-rails"
end
group :development, :test do
# Helps populate data
gem "faker"
gem "factory_girl_rails", "~> 2.0"
# Make test output nicer
gem "redgreen"
gem "test-unit", "1.2.3"
end
group :test do
# Mocking Library
gem "mocha"
# Thoughtbot Shoulda
gem "shoulda"
end
# Authentication
gem "omniauth"
gem "omniauth-facebook"
gem "omniauth-google-oauth2"
# API-Related Gems
gem "will_paginate"
# Front-end
gem "jquery-rails"
gem "rails-backbone"
# UUID Generation
gem "uuid", "~> 2.3.5"
# ActiveRecord models can be 'symbolized'
gem "symbolize", :require => "symbolize/active_record"
# Web-scraping help
#gem "metainspector"
gem "pismo"