Class: Bundler::Source
- Inherits:
-
Object
- Object
- Bundler::Source
- Defined in:
- lib/bundler/source.rb
Overview
Represents a source of rubygems. Initially, this is only gem repositories, but eventually, this will be git, svn, HTTP
Direct Known Subclasses
DirectorySource, GemDirectorySource, GemSource, SystemGemSource
Instance Attribute Summary collapse
-
#local ⇒ Object
Returns the value of attribute local.
-
#repository ⇒ Object
Returns the value of attribute repository.
Instance Method Summary collapse
-
#initialize(options) ⇒ Source
constructor
A new instance of Source.
Constructor Details
#initialize(options) ⇒ Source
Returns a new instance of Source.
9 |
# File 'lib/bundler/source.rb', line 9 def initialize() ; end |
Instance Attribute Details
#local ⇒ Object
Returns the value of attribute local.
7 8 9 |
# File 'lib/bundler/source.rb', line 7 def local @local end |
#repository ⇒ Object
Returns the value of attribute repository.
7 8 9 |
# File 'lib/bundler/source.rb', line 7 def repository @repository end |