-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
60 lines (47 loc) · 1.05 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
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'pg', '~> 0.18'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '~> 2.7'
gem 'coffee-rails', '~> 4.1'
gem 'jquery-rails', '~> 4.0'
# bootstrap
gem 'bootstrap-sass', '~> 3.3'
gem 'bootstrap-social-rails'
#font awesome
gem 'font-awesome-rails'
# web fonts
gem 'google-webfonts-rails', '~> 0.0.4'
# ams for building json
gem 'active_model_serializers', '~> 0.8.0'
# search functionality
gem 'textacular', '~> 3.0'
# login
gem 'devise', '~> 3.4'
gem 'omniauth', '~> 1.2'
gem 'omniauth-github', '~> 1.1'
gem 'omniauth-google-oauth2', '~> 0.2'
gem 'omniauth-mit', '0.9.1', :github => 'FirstToDisclose/omniauth-mit'
#pagination
gem 'will_paginate'
# environments
gem 'figaro', '~> 1.1'
# rendering
gem 'redcarpet'
group :development, :test do
gem 'pry'
gem 'meta_request'
gem 'rspec-rails'
gem 'capybara'
gem 'launchy'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'warden'
end
group :test do
gem 'shoulda-matchers'
gem 'valid_attribute'
end
group :production do
gem 'rails_12factor', '0.0.3'
end