-
-
Notifications
You must be signed in to change notification settings - Fork 689
/
Gemfile
42 lines (32 loc) · 908 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Ruby
gem 'dotenv'
# Fastlane
gem 'fastlane'
gem 'xcode-install'
# gem 'net-ssh'
# gem "net-scp"
gem 'badge'
# group :documentation do
# gem 'jazzy'
# end
group :test do
gem 'git_diff_parser'
gem 'xcpretty'
# gem 'danger'
# gem 'danger-auto_label'
# gem 'danger-jira'
# gem 'danger-swiftlint'
# gem 'danger-xcodebuild'
# Danger plugin to validate the code coverage of the files changed
# - Gem: danger-xcov
# - URL: https://github.com/nakiostudio/danger-xcov
# gem 'danger-xcov'
# This is plugin for Danger that notify danger reports to slack.
# - Gem: danger-slack
# - URL: https://github.com/duck8823/danger-slack
# gem 'danger-slack'
end
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)