1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'bump'
gem 'test-unit'
gem 'minitest', '~> 5.5.0'
gem 'rspec', '~> 3.3'
gem 'cucumber', "~> 4.0"
gem 'cuke_modeler', '~> 3.6'
gem 'spinach', git: "https://github.com/grosser/spinach.git", branch: "grosser/json" # https://github.com/codegram/spinach/pull/229
gem 'rake'
gem 'rubocop', '~> 1.28.0' # lock minor so we do not get accidental violations, also need to drop ruby 2.5 support to upgrade further
gem 'rubocop-ast', '~> 1.17.0' # also need to drop ruby 2.5 support to remove this line
|