Gemfile in schema_plus_enums-0.1.8 vs Gemfile in schema_plus_enums-1.0.0
- old
+ new
@@ -1,5 +1,8 @@
+# frozen_string_literal: true
+
source "http://rubygems.org"
gemspec
-File.exist?(gemfile_local = File.expand_path('../Gemfile.local', __FILE__)) and eval File.read(gemfile_local), binding, gemfile_local
+gemfile_local = File.expand_path '../Gemfile.local', __FILE__
+eval File.read(gemfile_local), binding, gemfile_local if File.exist? gemfile_local