Class: Bits::PPP

Inherits:
Object
  • Object
show all
Defined in:
lib/bits/repository.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bit, provider, package, parameters, path) ⇒ PPP

Returns a new instance of PPP.



11
12
13
14
15
16
17
# File 'lib/bits/repository.rb', line 11

def initialize(bit, provider, package, parameters, path)
  @bit = bit
  @provider = provider
  @package = package
  @parameters = parameters
  @path = path
end

Instance Attribute Details

#bitObject

Returns the value of attribute bit.



9
10
11
# File 'lib/bits/repository.rb', line 9

def bit
  @bit
end

#packageObject

Returns the value of attribute package.



9
10
11
# File 'lib/bits/repository.rb', line 9

def package
  @package
end

#parametersObject

Returns the value of attribute parameters.



9
10
11
# File 'lib/bits/repository.rb', line 9

def parameters
  @parameters
end

#pathObject

Returns the value of attribute path.



9
10
11
# File 'lib/bits/repository.rb', line 9

def path
  @path
end

#providerObject

Returns the value of attribute provider.



9
10
11
# File 'lib/bits/repository.rb', line 9

def provider
  @provider
end