-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36c7b39
commit 3fbb045
Showing
2 changed files
with
36 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters