Gemfile in clowne-0.0.1 vs Gemfile in clowne-0.1.0.beta1

- old
+ new

@@ -1,6 +1,15 @@ -source "https://rubygems.org" +source 'https://rubygems.org' -git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } - # Specify your gem's dependencies in clowne.gemspec gemspec + +gem 'pry-byebug' +gem 'sqlite3' +gem 'activerecord', '>= 5.0' +gem 'simplecov' + +local_gemfile = 'Gemfile.local' + +if File.exist?(local_gemfile) + eval(File.read(local_gemfile)) # rubocop:disable Security/Eval +end