-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (40 loc) · 1.18 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
source 'https://rubygems.org'
gem 'aptly-api', '>= 0.5.0'
gem 'concurrent-ruby'
gem 'deep_merge', '~> 1.0'
gem 'docker-api', '~> 1.24' # Container.refresh! only introduced in 1.23
gem 'gir_ffi'
gem 'git'
gem 'gitlab',
git: 'https://github.com/NARKOZ/gitlab',
branch: 'master'
gem 'insensitive_hash'
gem 'jenkins_api_client'
gem 'jenkins_junit_builder'
gem 'logger-colors'
gem 'mercurial-ruby'
gem 'net-ping', '< 2.0.0'
gem 'net-sftp'
gem 'net-ssh-gateway'
gem 'nokogiri'
gem 'oauth', '~> 0.4'
gem 'octokit'
gem 'releaseme',
git: 'https://anongit.kde.org/releaseme.git',
branch: 'master'
gem 'rugged'
gem 'rspec'
# Temporarily from git waiting for a release newer than 4.1.0. Once a newer
# version is available this can move up and drop the git paramaters.
# Also undo workaround in deploy_in_container.rake!
gem 'net-ssh', '<= 4.1.0',
git: 'https://github.com/net-ssh/net-ssh',
branch: 'master'
# Git URI management
gem 'git_clone_url', '~> 2.0'
gem 'uri-ssh_git', '~> 2.0'
# Test logging as junit (also used at runtime for linting)
gem 'ci_reporter_test_unit',
git: 'https://github.com/apachelogger/ci_reporter_test_unit',
branch: 'test-unit-3'
gem 'test-unit', '~> 3.0'