rdodson41/ruby-lox

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

source('https://rubygems.org')

# Specify your gem's dependencies in lox.gemspec
gemspec

# A runtime developer console and IRB alternative with powerful introspection
# capabilities.
gem('pry')

# A make-like build utility for Ruby.
gem('rake', '>= 12.3.3')

# Provide a standard and simplified way to build and package Ruby C and Java
# extensions using Rake as glue.
gem('rake-compiler')

# RSpec meta-gem that depends on the other components
gem('rspec', '~> 3.0')

# A Ruby static code analyzer and formatter, based on the community Ruby style
# guide.
gem('rubocop', require: false)

# Code style checking for RSpec files
gem('rubocop-rspec', require: false)

# Code coverage for Ruby 1.9+ with a powerful configuration library and
# automatic merging of coverage across test suites
gem('simplecov', require: false)