aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gemdeps.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/gemdeps.rb')
-rw-r--r--lib/bundler/gemdeps.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/bundler/gemdeps.rb b/lib/bundler/gemdeps.rb
new file mode 100644
index 0000000000..8595b8c7ea
--- /dev/null
+++ b/lib/bundler/gemdeps.rb
@@ -0,0 +1,28 @@
+# frozen_string_literal: true
+module Bundler
+ class Gemdeps
+ def initialize(runtime)
+ @runtime = runtime
+ end
+
+ def requested_specs
+ @runtime.requested_specs
+ end
+
+ def specs
+ @runtime.specs
+ end
+
+ def dependencies
+ @runtime.dependencies
+ end
+
+ def current_dependencies
+ @runtime.current_dependencies
+ end
+
+ def requires
+ @runtime.requires
+ end
+ end
+end