-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (56 loc) · 1.48 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
source 'https://rubygems.org'
ruby "1.9.3"
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem 'nokogiri'
gem 'pg'
gem 'thin'
gem 'rest-client'
gem "friendly_id", "~> 4.0.0.beta8"
# Authentication, API and Oauth
gem 'devise'
gem 'oauth'
# gem 'omniauth-twitter'
# gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# Cancan for authorization
gem 'cancan'
# For printing
gem 'awesome_print'
# HAML support
gem 'haml-rails'
# Carrierwave for image uploads
gem 'carrierwave'
gem 'rmagick', '2.13.2'
gem 'fog', '~> 1.3.1'
# Gravatar for user avatars
gem 'gravtastic'
# New Relic for measurement
gem 'newrelic_rpm'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'bourbon'
gem 'font-awesome-sass'
gem 'bootstrap-sass', '~> 3.1.1.0', :path => "vendor/bootstrap-sass"
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'annotate' # Type "annotate" into console to annotate models, tests, fixtures and factories
gem 'rspec'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'nifty-generators' # Ryan Bates generators
gem 'factory_girl_rails', '~> 4.4.0'
gem 'faker'
# gem 'shoulda-matchers'
# gem 'database_cleaner'
# gem 'simplecov', require: false
gem 'dotenv-rails' # Dot env, saves keys in the environment
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
# gem 'underscore-rails'
gem "mocha", :group => :test