summaryrefslogtreecommitdiff
path: root/lib/bundler/source.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-04-15 19:46:14 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-04 23:53:37 -0500
commit388febddd67945ed09cf5fcd30d1b9bfed2bda50 (patch)
tree0976400c34a6f5678b8ed2a2f6c30800939a3582 /lib/bundler/source.rb
parent667d4e4487bde5196bb326a7c03531e65de85cf6 (diff)
downloadbundler-388febddd67945ed09cf5fcd30d1b9bfed2bda50.tar.gz
gemspec allow conflicts
Diffstat (limited to 'lib/bundler/source.rb')
-rw-r--r--lib/bundler/source.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb
index eee4ade45b..afa7d91838 100644
--- a/lib/bundler/source.rb
+++ b/lib/bundler/source.rb
@@ -1,9 +1,10 @@
# frozen_string_literal: true
module Bundler
class Source
- autoload :Rubygems, "bundler/source/rubygems"
- autoload :Path, "bundler/source/path"
+ autoload :Gemspec, "bundler/source/gemspec"
autoload :Git, "bundler/source/git"
+ autoload :Path, "bundler/source/path"
+ autoload :Rubygems, "bundler/source/rubygems"
attr_accessor :dependency_names