-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
98 lines (75 loc) · 1.92 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
98
source 'https://rubygems.org'
# Read the ruby version for Heroku
File.open(File.expand_path('../.ruby-version', __FILE__), 'r') do |f|
ruby f.read.strip
end
gem 'dotenv-rails', :groups => [:development]
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.3'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'json'
# For authentication
gem 'devise'
# For Learning Layers OIDC
gem 'omniauth-oauth2', '~> 1.3.1'
# For authorization
gem 'pundit'
# For HTTP requests to SSS
gem 'faraday'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# material style
gem 'material_design_lite-rails'
# Autoprefix vendor-related CSS rules
gem 'autoprefixer-rails'
# Frontend things
gem 'lodash-rails'
# Full text search
gem 'pg_search'
# Better server
gem 'puma'
gem 'unicorn'
# Internationalization
gem 'rails-i18n', '~> 4.0.0'
# Google OAuth2
gem "omniauth-google-oauth2"
# JWT for OIDC implementation
gem 'jwt'
# Addressable::URI
gem 'addressable'
# Push notifications
gem 'fcm'
group :development do
# View sent emails
gem 'letter_opener_web'
# Development live reload
gem 'guard', require: false
gem 'guard-livereload', require: false
gem 'rack-livereload'
end
group :development, :test do
# Better REPL
gem 'pry'
gem 'pry-rails'
gem 'pry-byebug'
# Better tests
gem 'rspec'
gem 'rspec-rails'
# Clear the database between tests
gem 'database_cleaner'
end
group :production do
# Adds Heroku-specific configuration for production environments.
gem 'rails_12factor'
end