
Travis started failing with: uninitialized constant RSpec::Matchers::BuiltIn::RaiseError::MatchAliases (NameError) due to bundler installing rspec-expectations-2.99 which is a pre-release: https://github.com/rubygems/rubygems/issues/853
22 lines
451 B
Ruby
22 lines
451 B
Ruby
source 'https://rubygems.org'
|
|
|
|
#gem 'berkshelf', '~> 2.0'
|
|
|
|
group :test, :development do
|
|
gem 'chefspec', '~> 3.0'
|
|
gem 'rspec-expectations', '~> 2.14.0'
|
|
gem 'rubydeps'
|
|
end
|
|
|
|
group :development do
|
|
gem 'foodcritic', '~> 3.0'
|
|
gem 'rubocop'
|
|
gem 'jazz_hands'
|
|
gem 'guard-rspec'
|
|
gem 'guard-bundler'
|
|
# Prevent "Error: can't modify string; temporarily locked"
|
|
# http://stackoverflow.com/a/19505033/179332
|
|
gem "rb-readline", "~> 0.5.0"
|
|
end
|
|
|