File tree Expand file tree Collapse file tree 2 files changed +36
-13
lines changed Expand file tree Collapse file tree 2 files changed +36
-13
lines changed Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- source " https://rubygems.org"
3
+ source ' https://rubygems.org'
4
4
5
5
git_source ( :github ) { |repo_name | "https://github.com/#{ repo_name } " }
6
6
7
- gem 'cocoapods'
8
- gem 'danger'
9
- gem 'danger-commit_lint'
10
- gem 'fastlane'
11
- gem 'fastlane-plugin-lizard'
7
+ gem 'danger' , group : :danger_dependencies
8
+ gem 'fastlane' , group : :fastlane_dependencies
12
9
gem 'jazzy'
13
10
gem 'json'
14
- gem 'plist'
15
- gem 'rubocop' , '1.38'
16
- gem 'rubocop-performance'
17
- gem 'rubocop-require_tools'
18
- gem 'sinatra'
11
+ gem 'rubocop' , '1.38' , group : :rubocop_dependencies
12
+ gem 'sinatra' , group : :sinatra_dependencies
19
13
gem 'slather'
20
- gem 'xcode-install'
21
- gem 'xctest_list'
22
14
23
15
plugins_path = File . join ( File . dirname ( __FILE__ ) , 'fastlane' , 'Pluginfile' )
24
16
eval_gemfile ( plugins_path ) if File . exist? ( plugins_path )
17
+
18
+ group :fastlane_dependencies do
19
+ gem 'cocoapods'
20
+ gem 'fastlane-plugin-lizard'
21
+ gem 'plist'
22
+ gem 'xcode-install'
23
+ gem 'xctest_list'
24
+ end
25
+
26
+ group :sinatra_dependencies do
27
+ gem 'puma'
28
+ gem 'rackup'
29
+ end
30
+
31
+ group :rubocop_dependencies do
32
+ gem 'rubocop-performance'
33
+ gem 'rubocop-require_tools'
34
+ end
35
+
36
+ group :danger_dependencies do
37
+ gem 'danger-commit_lint'
38
+ end
Original file line number Diff line number Diff line change 285
285
nap (1.1.0 )
286
286
naturally (2.2.1 )
287
287
netrc (0.11.0 )
288
+ nio4r (2.7.0 )
288
289
no_proxy_fix (0.1.2 )
289
290
nokogiri (1.16.0 )
290
291
mini_portile2 (~> 2.8.2 )
@@ -304,13 +305,18 @@ GEM
304
305
coderay (~> 1.1 )
305
306
method_source (~> 1.0 )
306
307
public_suffix (4.0.7 )
308
+ puma (6.4.2 )
309
+ nio4r (~> 2.0 )
307
310
racc (1.7.3 )
308
311
rack (3.0.8 )
309
312
rack-protection (4.0.0 )
310
313
base64 (>= 0.1.0 )
311
314
rack (>= 3.0.0 , < 4 )
312
315
rack-session (2.0.0 )
313
316
rack (>= 3.0.0 )
317
+ rackup (2.1.0 )
318
+ rack (>= 3 )
319
+ webrick (~> 1.8 )
314
320
rainbow (3.1.1 )
315
321
rake (13.1.0 )
316
322
rchardet (1.8.0 )
387
393
concurrent-ruby (~> 1.0 )
388
394
uber (0.1.0 )
389
395
unicode-display_width (2.5.0 )
396
+ webrick (1.8.1 )
390
397
word_wrap (1.0.0 )
391
398
xcinvoke (0.3.0 )
392
399
liferaft (~> 0.0.6 )
@@ -422,6 +429,8 @@ DEPENDENCIES
422
429
jazzy
423
430
json
424
431
plist
432
+ puma
433
+ rackup
425
434
rubocop (= 1.38 )
426
435
rubocop-performance
427
436
rubocop-require_tools
You can’t perform that action at this time.
0 commit comments