-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
100 lines (82 loc) · 3.03 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
99
100
source 'https://rubygems.org'
ruby "2.6.3"
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.2.3'
# Use postgresql as the database for Active Record
gem 'pg', '0.21.0'
gem 'rails_12factor', group: :production
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'bootstrap-sass', '~> 3.3'
gem 'font-awesome-rails', '~> 4.6'
# navigation
gem 'simple-navigation', '~> 4.0.3'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# use forked http-cookie to preserve gig-o-matic double-quotes in cookie values
gem 'http-cookie', git: 'https://github.com/breadbeard/http-cookie.git', ref: 'ba63c233036389087edc49c0c1293744e1919ae1'
# Used for interacting with gig-o-matic via it's UI
gem 'mechanize', '~> 2.7.4'
gem 'puma'
# Authentication
gem 'devise', '~> 4.6.2'
gem 'omniauth-google-oauth2', '~> 0.7.0'
# Calendar
gem 'icalendar', '~> 2.0'
# Test Coverage analysis tool. Used for Codacy metrics
gem 'simplecov', require: false, group: :test
gem 'codacy-coverage', require: false
# Async jobs
gem 'sucker_punch', '~> 2.0'
gem 'active_job_status', git: 'https://github.com/cdale77/active_job_status.git', ref: 'f61a2c77dba10bd8b763f2cef7e1ef54cc4746b5'
# Form Gems
gem 'reform', '>= 2.2.0'
gem 'reform-rails'
gem 'dry-validation', '~> 0.11.0'
gem 'dry-types', '~> 0.11.1'
gem 'simple_form', '~> 4.1.0'
gem 'timezone', '~> 1.0'
gem 'tinymce-rails', '~> 4.6.6'
# Cache
gem 'dalli', '~> 2.7.6'
gem 'memcachier'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'minitest', '~> 5.8'
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
# Auto handle events on filesystem modifications
gem 'guard', '~> 2.13'
gem 'guard-minitest', '~> 2.4'
gem 'guard-livereload', '~> 2.4'
gem 'minitest-reporters', '~> 1.1'
gem 'rack-livereload'
# Test data
gem "faker", "~> 1.5"
gem "factory_girl_rails", "~> 4.0"
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
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