-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (42 loc) · 1.66 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0', '>= 5.0.0.1'
# High performance multi-threaded web server
gem 'spider-gazelle', '~> 3.0'
# TODO:: we should package these up as GEMS? Probably only ruby-engine
gem 'orchestrator', path: '../ruby-engine'
gem 'aca-device-modules', path: '../aca-device-modules'
# Database
gem 'couchbase-orm'
# Authentication
gem 'doorkeeper-couchbase'
# gem 'coauth', github: 'QuayPay/coauth', branch: 'couchbase-orm'
gem 'coauth', path: '../coauth'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'web-console', platform: :mri
gem 'rspec-rails'
end
group :development do
gem 'listen', '~> 3.0.5'
# 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
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data' #, platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'viewpoint2', git: 'https://github.com/aca-labs/viewpoint'
gem 'ruby-ntlm'
gem 'rbtrace', require: 'rbtrace'
gem 'yajl-ruby', require: 'yajl'
gem 'mono_logger'
# nio4r 2.5.1 caused errors in build
gem 'nio4r', '2.4.0'
# sprockets 4.0.0 requires ruby 2.5.0
gem 'sprockets', '3.7.2'
# faraday 1.0.0+ is a breaking change requiring new instantiation method in all dependant libs
gem 'faraday', '0.17.3'
# omniauth 2+ is a breaking change to SSO
gem 'omniauth', '1.9.1'