-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
85 lines (70 loc) · 2.45 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
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
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.4'
# Use PostgreSQL as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Bootstrap forms/components
gem 'bootstrap', '~> 4.0.0'
gem 'bootstrap_form', git: "https://github.com/bootstrap-ruby/bootstrap_form.git", branch: "master"
gem 'bootstrap-social-rails'
gem 'font-awesome-rails'
gem 'jquery-rails'
# Slugging and permalink plugins for Active Record
gem 'friendly_id', '~> 5.1.0'
# Easy upload management for ActiveRecord
gem 'paperclip', '~> 5.2.0'
gem 'fog'
# User Authentication
gem 'devise'
gem 'omniauth-google-oauth2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Web page editor
gem 'summernote-rails', '~> 0.8.10.0'
# JS charting library
gem "chartkick"
gem "groupdate"
# Document parsing and ranking
gem 'pdf-reader'
gem 'highscore'
# Job processing
gem 'sidekiq'
group :development, :test do
gem 'faker', '~> 1.8.7'
gem 'awesome_print' # Nicely format fields of objects
gem 'pry-nav' # Debugger with 'next', 'continue' options
gem 'dotenv-rails'
gem 'rspec-rails'
end
group :test do
gem 'capybara' # User simulations
gem 'factory_girl_rails' # Fixtures
gem 'guard-rspec' # Runs specs automatically after saves
gem 'database_cleaner'
gem 'rails-controller-testing'
end
group :development do
gem "better_errors" # Replaces the standard Rails error page with a more useful error page
gem "binding_of_caller" # better_errors helper
gem 'annotate' # Summarize the current schema to ActiveRecord models
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :production do # Heroku requirements
gem 'newrelic_rpm' # App performance monitoring
gem 'rails_12factor' # Avoid Heroku deprecation warning
end