Move version identifier and update gemfile and gemspec

This commit is contained in:
Jake Spain 2023-01-30 16:18:49 -05:00
parent 162c034e32
commit 5787a82a0b
No known key found for this signature in database
GPG key ID: BC1C4DA0A085E113
5 changed files with 242 additions and 43 deletions

15
Gemfile
View file

@ -1,10 +1,13 @@
# frozen_string_literal: true
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
source "https://rubygems.org"
# Specify your gem's dependencies in vmpooler-dns-google-clouddns.gemspec
gemspec
gem "rake", "~> 13.0"
# Evaluate Gemfile.local if it exists
if File.exists? "#{__FILE__}.local"
instance_eval(File.read("#{__FILE__}.local"))
end
gem "rubocop", "~> 1.21"
# Evaluate ~/.gemfile if it exists
if File.exists?(File.join(Dir.home, '.gemfile'))
instance_eval(File.read(File.join(Dir.home, '.gemfile')))
end