forked from gate-sso/gate-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (36 loc) · 818 Bytes
/
Gemfile
File metadata and controls
46 lines (36 loc) · 818 Bytes
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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem "paranoia"
gem 'mysql', platform: :ruby
platform :jruby do
gem 'jdbc-mysql'
gem 'activerecord-jdbc-adapter'
gem 'therubyrhino', platform: :jruby
end
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'redis'
group :development, :test do
gem 'pry'
gem 'rspec-rails', '~> 3.0'
gem 'factory_girl_rails'
gem 'faker'
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.1'
end
group :development do
gem 'web-console', platform: :ruby
end
gem 'puma'
gem "slim-rails"
gem "twitter-bootstrap-rails"
gem "font-awesome-rails"
gem 'rotp'
gem 'devise', '4.1.0'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'paper_trail'