-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (33 loc) · 1.02 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
source 'https://rubygems.org'
require_relative "lib/gitlab/version"
omnibus_gem_version = Gitlab::Version.new('omnibus', "gitlab-omnibus-v5.6.10")
# When updating gem versions:
# 1. Edit this file to specify pinning if needed
# 2. `bundle upgrade GEM`
# 3. Inspect and check-in Gemfile.lock
# 4. Check that the changes to Gemfile.lock are propogated to the software
# definitions in `config/software`. You can find them quickly with:
# grep "gem 'install " config/software/*
gem 'omnibus', git: omnibus_gem_version.remote, branch: omnibus_gem_version.print(false)
gem 'chef', '13.6.4'
gem 'ohai'
gem 'package_cloud'
gem 'rainbow', '~> 2.2' # This is used by gitlab-ctl and the chef formatter
gem 'thor', '0.18.1' # This specific version is required by package_cloud
gem 'json'
gem 'rspec'
gem 'rake'
gem 'knapsack'
gem 'docker-api'
gem 'aws-sdk'
gem 'google_drive'
group :rubocop do
gem 'rubocop'
gem 'rubocop-rspec'
end
group :test do
gem 'byebug'
gem 'chefspec'
gem 'omnibus-ctl', '0.3.6'
gem 'fantaskspec'
end