-
Notifications
You must be signed in to change notification settings - Fork 20
/
Gemfile
34 lines (29 loc) · 1000 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
source 'https://rubygems.org'
plugin 'bundler-inject', '~> 1.1'
require File.join(Bundler::Plugin.index.load_paths("bundler-inject")[0], "bundler-inject") rescue nil
gem 'byebug'
gem 'clowder-common-ruby', '~> 0.2.3'
gem 'faraday', '>= 0.17.0'
gem 'insights-api-common', '~> 5.0.7'
gem 'jbuilder', '~> 2.0'
gem 'manageiq-loggers', '~> 0.2'
gem 'manageiq-messaging', '~> 0.1'
gem 'pg', '~> 1.0', :require => false
gem 'prometheus-client', '~> 0.8.0'
gem 'puma', '>= 4.3.5'
gem 'pundit'
gem 'rack-cors', '>= 1.0.4'
gem 'rails', '>= 5.2.2.1', '~> 5.2.2'
gem 'sprockets', '~> 3.7.2'
gem 'kie_client', :git => "https://github.com/RedHatInsights/kie-api-client-ruby", :branch => "master"
group :development, :test do
gem 'climate_control'
gem 'simplecov', '~> 0.17.1'
gem 'webmock'
end
group :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
gem 'shoulda-matchers', '~> 3.1'
end