-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
55 lines (49 loc) · 1.22 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'less-rails'
# Twitter bootstrap baby
#gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
# jQuery is the win
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Devise for auth goodness
gem 'devise'
# Cancan for permission goodness
gem 'cancan'
# Give us a possessive method on strings
gem "possessive"
# Decorator pattern
gem "draper"
# Agnostic Enum Simulator
gem 'enum_simulator'
# OAuth Gems for inbloom/slc
gem 'omniauth'
gem 'omniauth-slc', '0.0.2'
gem 'oauth'
# HTTP Party Rockin
gem 'httparty'
# For Elastic Search Communications
gem 'rest-client'
# HTML Entities encode/decoder
gem 'htmlentities'
# Dev/Test env only please
group :development, :test do
# Use thin as webserver
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'capybara'
gem 'launchy'
gem 'faker'
gem 'thin'
end