Skip to content

Commit

Permalink
Gemfile refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Jan 24, 2024
1 parent 36c7b39 commit 3fbb045
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
40 changes: 27 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,38 @@
# frozen_string_literal: true

source "https://rubygems.org"
source 'https://rubygems.org'

git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

gem 'cocoapods'
gem 'danger'
gem 'danger-commit_lint'
gem 'fastlane'
gem 'fastlane-plugin-lizard'
gem 'danger', group: :danger_dependencies
gem 'fastlane', group: :fastlane_dependencies
gem 'jazzy'
gem 'json'
gem 'plist'
gem 'rubocop', '1.38'
gem 'rubocop-performance'
gem 'rubocop-require_tools'
gem 'sinatra'
gem 'rubocop', '1.38', group: :rubocop_dependencies
gem 'sinatra', group: :sinatra_dependencies
gem 'slather'
gem 'xcode-install'
gem 'xctest_list'

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)

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'
end

group :rubocop_dependencies do
gem 'rubocop-performance'
gem 'rubocop-require_tools'
end

group :danger_dependencies do
gem 'danger-commit_lint'
end
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ GEM
nap (1.1.0)
naturally (2.2.1)
netrc (0.11.0)
nio4r (2.7.0)
no_proxy_fix (0.1.2)
nokogiri (1.16.0)
mini_portile2 (~> 2.8.2)
Expand All @@ -304,13 +305,18 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (4.0.7)
puma (6.4.2)
nio4r (~> 2.0)
racc (1.7.3)
rack (3.0.8)
rack-protection (4.0.0)
base64 (>= 0.1.0)
rack (>= 3.0.0, < 4)
rack-session (2.0.0)
rack (>= 3.0.0)
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rainbow (3.1.1)
rake (13.1.0)
rchardet (1.8.0)
Expand Down Expand Up @@ -387,6 +393,7 @@ GEM
concurrent-ruby (~> 1.0)
uber (0.1.0)
unicode-display_width (2.5.0)
webrick (1.8.1)
word_wrap (1.0.0)
xcinvoke (0.3.0)
liferaft (~> 0.0.6)
Expand Down Expand Up @@ -422,6 +429,8 @@ DEPENDENCIES
jazzy
json
plist
puma
rackup
rubocop (= 1.38)
rubocop-performance
rubocop-require_tools
Expand Down

0 comments on commit 3fbb045

Please sign in to comment.