-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (32 loc) · 764 Bytes
/
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
source 'https://rubygems.org'
# Framework Gem
gem 'rails', '3.2.1'
# Database Gems
group :development do
gem 'sqlite3'
end
gem 'pg'
# CSS Gems
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'sass'
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
# Javascript Gems
gem 'therubyracer'
gem 'jquery-rails'
# HTML/Layout Gems
gem 'haml'
gem 'haml-rails'
gem 'twitter-bootstrap-rails'
gem 'tinymce-rails', :git => "git://github.com/spohlenz/tinymce-rails.git"
gem 'will_paginate'
# Attachment Gems
gem 'carrierwave', :git => "git://github.com/jnicklas/carrierwave.git"
gem 'rmagick'
# Authentication/Authorization
gem 'devise'
gem 'cancan'
gem 'linkedin', :git => "git://github.com/pengwynn/linkedin.git"
gem 'omniauth'
gem 'omniauth-linkedin'