-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (61 loc) · 1.46 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
73
ruby '2.3.3'
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails'
gem 'pg'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'stripe'
gem 'carrierwave'
gem 'fog'
gem 'awesome_print'
gem 'record_tag_helper'
gem 'devise'
gem 'devise-token_authenticatable'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
# gem 'omniauth-amazon'
# gem 'omniauth-github'
# gem 'omniauth-instagram'
# gem 'omniauth-medium'
# gem 'omniauth-pinterest'
# gem 'omniauth-slack'
# gem 'omniauth--twitch'
gem 'cancancan'
gem 'redcarpet'
gem 'actionview-encoded_mail_to'
gem 'attr_default'
gem 'google-analytics-rails'
gem 'google-webfonts-rails', :github => 'masarakki/google-webfonts-rails', :branch => 'for-rails5'
# gem 'prawn'
# gem 'markdown_prawn', :github => 'vanboom/markdown_prawn'
gem 'resque'
gem 'resque_mailer'
gem 'rollbar'
gem 'oj'
gem 'kaminari'
gem 'mtg_sdk'
gem 'awesome_print'
gem 'flag_shih_tzu'
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec-rails'
gem 'fabrication'
gem 'faker'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]