This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 284
/
Gemfile
97 lines (88 loc) · 1.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# rubocop:disable Metrics/LineLength, Layout/LeadingCommentSpace
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', '5.1.6'
# select the appropriate gem below for your database:
gem 'mysql2'
#gem 'pg'
gem 'activemodel-serializers-xml'
gem 'activerecord-session_store'
gem 'acts_as_list'
gem 'acts_as_taggable_on_steroids', github: 'seven1m/acts_as_taggable_on_steroids'
gem 'authority'
gem 'bcrypt'
gem 'bootstrap-sass'
gem 'bugsnag'
gem 'builder'
gem 'coffee-rails'
gem 'country_select'
gem 'date_validator'
gem 'draper'
gem 'erubis'
gem 'feedjira'
gem 'flag_shih_tzu'
gem 'font-awesome-rails'
gem 'geocoder'
gem 'github_api'
gem 'haml'
gem 'highline'
gem 'html_truncator'
gem 'httparty'
gem 'jquery-rails'
gem 'load_and_authorize_resource'
gem 'loofah'
gem 'mini_magick'
gem 'mustache'
gem 'nokogiri'
gem 'omniauth-facebook'
gem 'paperclip', '~> 5.2.0'
gem 'prawn'
gem 'pusher'
gem 'rails_autolink'
gem 'react-rails'
gem 'responders'
gem 'sanitize'
gem 'sass-rails'
gem 'strong_password'
gem 'sucker_punch'
gem 'thin'
gem 'tzinfo-data'
gem 'uglifier'
gem 'webpacker'
gem 'whenever'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'with_advisory_lock'
group :test do
gem 'factory_girl_rails'
gem 'rails-controller-testing'
gem 'shoulda-matchers', github: 'thoughtbot/shoulda-matchers'
gem 'webmock'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-newrelic'
gem 'capistrano-rails'
gem 'capistrano-yarn'
gem 'observr'
gem 'terminal-notifier'
end
group :development, :test do
gem 'guard-rspec', require: false
gem 'pry'
gem 'pry-rails'
gem 'pry-remote'
gem 'rspec-rails'
gem 'spring'
gem 'spring-commands-rspec'
gem 'timecop'
end
group :production do
gem 'newrelic_rpm'
end