-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathGemfile
61 lines (46 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
59
60
61
source 'https://rubygems.org'
# The Ruby version should match the lowest acceptable version of the application
raise "Ruby 3.1 required" unless RUBY_VERSION >= "3.1" && RUBY_VERSION < "3.2"
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.10'
gem 'concurrent-ruby', '< 1.3.5' # Temporary pin down as concurrent-ruby 1.3.5 breaks Rails 6.1 & 7.0, and rails-core doesn't
# plan to ship a new 6.1 or 7.0 to fix it. See https://github.com/rails/rails/pull/54264
# 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