mirror of
				https://github.com/thoughtbot/shoulda-matchers.git
				synced 2022-11-09 12:01:38 -05:00 
			
		
		
		
	Prior to this commit, the `Gemfile.lock` enforced the use of Bundler v1.17.3 which was released in 2014. On Ruby 3, this triggers the following deprecation warning: ``` /home/user/.rvm/gems/ruby-3.0.2@shoulda-matchers/gems/bundler-1.17.3/lib/bundler/shared_helpers.rb:118: warning: Pathname#untaint is deprecated and will be removed in Ruby 3.2. ``` Since the gem itself in v5.0.0 requires at least Ruby v2.6, it seems fair to require a recent version of Bundler v2, which in turn runs of every Ruby v2.3 or later.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
source 'https://rubygems.org'
 | 
						|
 | 
						|
gem 'appraisal', '2.2.0'
 | 
						|
gem 'bundler', '~> 2.0'
 | 
						|
gem 'pry'
 | 
						|
gem 'pry-byebug'
 | 
						|
gem 'rake', '13.0.1'
 | 
						|
gem 'rspec', '~> 3.9'
 | 
						|
gem 'rubocop', require: false
 | 
						|
gem 'rubocop-packaging', require: false
 | 
						|
gem 'rubocop-rails', require: false
 | 
						|
gem 'warnings_logger'
 | 
						|
gem 'zeus', require: false
 | 
						|
 | 
						|
# YARD
 | 
						|
gem 'fssm'
 | 
						|
gem 'redcarpet'
 | 
						|
gem 'rouge'
 | 
						|
gem 'yard'
 |