forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (30 loc) · 787 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem 'danger', group: :danger_dependencies
gem 'fastlane', group: :fastlane_dependencies
gem 'jazzy'
gem 'json'
gem 'rubocop', '1.38', group: :rubocop_dependencies
gem 'sinatra', group: :sinatra_dependencies
gem 'slather'
eval_gemfile('fastlane/Pluginfile')
group :fastlane_dependencies do
gem 'cocoapods'
gem 'fastlane-plugin-lizard'
gem 'plist'
gem 'xcode-install'
gem 'xctest_list'
end
group :sinatra_dependencies do
gem 'puma'
gem 'rackup'
gem 'stream-chat-ruby', '3.0.0'
end
group :rubocop_dependencies do
gem 'rubocop-performance'
gem 'rubocop-require_tools'
end
group :danger_dependencies do
gem 'danger-commit_lint'
end