Sha256: 01a742a6bbed58f1e6331f580a16fb30f82ae2217a95656f302d7ca7b021da09
Contents?: true
Size: 964 Bytes
Versions: 10
Compression:
Stored size: 964 Bytes
Contents
source('https://rubygems.org') # Provides a consistent environment for Ruby projects by tracking and installing exact gem versions. gem 'bundler' # Automation tool for mobile developers. gem 'fastlane', '>= <%= Fastlane::VERSION %>' # Provides an interactive debugging environment for Ruby. gem 'pry' # A simple task automation tool. gem 'rake' # Behavior-driven testing tool for Ruby. gem 'rspec' # Formatter for RSpec to generate JUnit compatible reports. gem 'rspec_junit_formatter' # A Ruby static code analyzer and formatter. gem 'rubocop', '<%= Fastlane::RUBOCOP_REQUIREMENT %>' # A collection of RuboCop cops for performance optimizations. gem 'rubocop-performance' # A RuboCop extension focused on enforcing tools. gem 'rubocop-require_tools' # SimpleCov is a code coverage analysis tool for Ruby. gem 'simplecov' gemspec plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') eval_gemfile(plugins_path) if File.exist?(plugins_path)
Version data entries
10 entries across 10 versions & 1 rubygems