Skip to content

Commit

Permalink
Make it easier to develop agains different versions of other gems
Browse files Browse the repository at this point in the history
  • Loading branch information
pointlessone committed Jan 15, 2024
1 parent 208c300 commit 772a41e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pkg
.rvmrc
.bundle
Gemfile.lock
Gemfile.local
drop_to_console.rb
/.idea
/doc
Expand Down
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@
source 'https://rubygems.org'

gemspec

# Evaluate Gemfile.local if it exists
if File.exist?("#{__FILE__}.local")
instance_eval(File.read("#{__FILE__}.local"), "#{__FILE__}.local")
end

0 comments on commit 772a41e

Please sign in to comment.