spec/generators/scaffold_generator_spec.rb in gris-0.6.0 vs spec/generators/scaffold_generator_spec.rb in gris-0.6.1

- old
+ new

@@ -47,12 +47,12 @@ it 'generates a db/seeds.rb file' do seed_file = File.read("#{app_path}/db/seeds.rb") expect(seed_file).to match(/all the record creation needed to seed the database/) end - it 'adds ruby 2.2.4 to Gemfile' do + it 'adds ruby 2.3.0 to Gemfile' do gemfile = File.read("#{app_path}/Gemfile") - expect(gemfile).to match(/ruby '2.2.4'/) + expect(gemfile).to match(/ruby '2.3.0'/) end it 'adds the puma gem in the Gemfile' do gemfile = File.read("#{app_path}/Gemfile") expect(gemfile).to match(/gem 'puma'/)