-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gemfile
56 lines (42 loc) · 1.26 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
source 'https://rubygems.org'
plugin 'bundler-inject'
require File.join(Bundler::Plugin.index.load_paths("bundler-inject")[0], "bundler-inject") rescue nil
gem 'rails', '~> 6.1.0', '>= 6.1.7.8'
# Use PostgreSQL as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'foreman'
gem 'puma'
gem 'config'
gem 'listen'
# Sidekiq specific gems
gem 'sidecloq'
gem 'sidekiq'
# Services gems
gem 'minigit', '~> 0.0.4'
gem 'net-ssh', '~> 7.3.0'
gem 'awesome_spawn', '~> 1.6'
gem 'default_value_for', '~> 4.0'
gem 'haml_lint', '~> 0.51', :require => false
gem 'irb'
gem 'manageiq-style', '>= 1.4', :require => false
gem 'more_core_extensions', '~> 4.4', :require => 'more_core_extensions/all'
gem 'rugged', :require => false
gem 'faraday'
gem 'faraday-http-cache', '~> 2.5.0'
gem 'octokit', '~> 4.25.0', :require => false
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'simplecov', '>= 0.21.2'
gem 'timecop'
end
group :test do
gem 'factory_bot_rails'
gem 'webmock'
end