-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (42 loc) · 1.16 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
source 'https://rubygems.org'
# Rails, MySQL, Puma
gem 'rails', '~> 5.1.4'
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'puma', '~> 3.7'
gem 'rake'
# Rails Dependencies
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
# Authentication Sys
gem 'rubycas-client', :git => 'https://github.com/rubycas/rubycas-client.git'
# frontend
# gem 'bourbon'
# gem 'neat'
# gem 'bitters'
# gem 'normalize-scss'
gem 'font-awesome-sass'
gem 'pickadate-rails'
gem "select2-rails"
gem "simple_calendar", "~> 2.0"
# TEST ONLY GEMS
group :test do
gem 'simplecov', :require => false
gem "codeclimate-test-reporter", "~> 1.0.0"
gem 'simplecov-shield'
gem 'rails-controller-testing'
end
# DEVELOPMENT ONLY GEMS
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'rubocop', require: false
gem 'brakeman', :require => false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]