Sha256: 4572d0103a4c84c92a224fdf96e21526df4ac9bb7e9daa5c3bcb191693cb6182

Contents?: true

Size: 815 Bytes

Versions: 1

Compression:

Stored size: 815 Bytes

Contents

# frozen_string_literal: true

source 'https://rubygems.org'

# Specify your gem's dependencies in meta-tags.gemspec
gemspec

if ENV['RAILS_VERSION']
  # Install specified version of actionpack if requested
  gem 'railties', "~> #{ENV['RAILS_VERSION']}"
end

unless ENV["NO_STEEP"] == '1'
  # Ruby typings
  gem 'steep', '~> 1.0.1', platform: :mri
end

group :test do
  # Lock rubocop to a specific version we use on CI. If you update this,
  # don't forget to switch rubocop channel in the .codeclimate.yml
  gem 'rubocop', '= 1.31.0'
  # Cops for rails apps
  gem 'rubocop-rails'
  # Apply RSpec rubocop cops
  gem 'rubocop-rspec', require: false
  # We use this gem on CI to calculate code coverage.
  gem 'simplecov', '>= 0.17.0', '< 0.18'
  # Format RSpec output for CircleCI
  gem 'rspec_junit_formatter'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
meta-tags-2.17.0 Gemfile