-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
41 lines (34 loc) · 916 Bytes
/
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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.1'
# Use sqlite as the database for Active Record
gem 'sqlite3'
gem 'ruby-oci8'
gem 'activerecord-oracle_enhanced-adapter'
# Use puma as the webserver in development
gem 'puma'
gem 'rack-cors'
gem 'jwt'
gem 'grape'
gem "hashie-forbidden_attributes" #overrides strong_params in grape endpoints
gem "grape-active_model_serializers"
gem 'react-rails'
gem 'tilt'
gem 'jquery-rails'
gem 'turbolinks'
gem 'uglifier'
gem 'omniauth'
gem 'omniauth-shibboleth'
# use redis to cache the user temporarily
gem 'redis'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'spring'
gem "factory_girl_rails"
gem "faker"
gem 'rspec-rails'
gem 'shoulda-matchers', require: false
gem 'spring-commands-rspec', group: :development
end
ruby "2.2.2"