-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathGemfile
More file actions
24 lines (18 loc) · 753 Bytes
/
Gemfile
File metadata and controls
24 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'danger-dangermattic', '~> 1.2'
gem 'fastlane', '~> 2.216'
gem 'fastlane-plugin-firebase_app_distribution', '~> 0.10'
gem 'nokogiri'
gem 'rubocop', '~> 1.65'
# Security: https://github.com/lostisland/faraday/pull/1665
# Faraday 2.0 is not compatible with Fastlane
gem 'faraday', '~> 1.10', '>= 1.10.5'
### Fastlane Plugins
gem 'fastlane-plugin-wpmreleasetoolkit', '~> 13.8'
# gem 'fastlane-plugin-wpmreleasetoolkit', path: '../../release-toolkit'
# gem 'fastlane-plugin-wpmreleasetoolkit', git: 'https://github.com/wordpress-mobile/release-toolkit', branch: ''
### Gems needed only for generating Promo Screenshots
group :screenshots, optional: true do
gem 'rmagick', '~> 4.1'
end