-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·51 lines (42 loc) · 1.09 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
source 'https://rubygems.org'
# Rails, MySQL, Puma
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'rake'
gem 'puma', '~> 3.0'
# Rails Dependencies
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# cas client
gem 'rubycas-client', :git => 'git://github.com/rubycas/rubycas-client.git'
# frontend
gem 'bourbon'
gem 'neat'
gem 'bitters'
gem 'normalize-scss'
gem 'font-awesome-sass'
gem 'pickadate-rails'
# Use Capistrano for deployment
gem 'capistrano-rails', '~> 1.2'
# TEST ONLY GEMS
group :test do
gem 'simplecov'
gem 'simplecov-shield'
end
# DEVELOPMENT ONLY GEMS
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'byebug', platform: :mri
gem 'rubocop', require: false
gem 'brakeman', :require => false
#gem 'capistrano', '~> 3.6'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]