forked from pangea-project/pangea-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (52 loc) · 1.22 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
source 'https://rubygems.org'
gem 'aptly-api', '>= 0.4.1'
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 'net-ping', '< 2.0.0'
gem 'net-ssh'
gem 'net-ssh-gateway'
gem 'net-sftp'
gem 'nokogiri'
gem 'oauth', '~> 0.4'
gem 'octokit'
gem 'mercurial-ruby'
# 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 'test-unit', '~> 3.0'
gem 'ci_reporter_test_unit',
git: 'https://github.com/apachelogger/ci_reporter_test_unit',
branch: 'test-unit-3'
group :development, :test do
gem 'equivalent-xml'
gem 'mocha'
gem 'net-scp'
gem 'parallel_tests'
gem 'rack'
gem 'rake', '~> 11.0'
gem 'rake-notes'
gem 'rubocop', '>= 0.38'
gem 'rubocop-checkstyle_formatter'
gem 'rugged'
gem 'ruby-progressbar'
gem 'simplecov'
gem 'simplecov-rcov'
gem 'terminal-table'
gem 'vcr', '>= 3.0.1'
gem 'webmock'
end
group :s3 do
gem 'aws-sdk-v1'
gem 'nokogiri'
end