Class: PoisePython::Resources::PipRequirements::Resource
- Inherits:
-
Chef::Resource
- Object
- Chef::Resource
- PoisePython::Resources::PipRequirements::Resource
- Includes:
- PythonCommandMixin
- Defined in:
- lib/poise_python/resources/pip_requirements.rb
Overview
A pip_requirements resource to install packages from a requirements.txt
file using pip.
Instance Attribute Summary collapse
-
#group ⇒ String, ...
System group to install the package.
-
#path ⇒ String
Path to the requirements file, or a folder containing the requirements file.
-
#user ⇒ String, ...
System user to install the package.
Instance Attribute Details
#group ⇒ String, ...
System group to install the package.
50 |
# File 'lib/poise_python/resources/pip_requirements.rb', line 50 attribute(:group, kind_of: [String, Integer, NilClass]) |
#path ⇒ String
Path to the requirements file, or a folder containing the requirements file.
46 |
# File 'lib/poise_python/resources/pip_requirements.rb', line 46 attribute(:path, kind_of: String, name_attribute: true) |
#user ⇒ String, ...
System user to install the package.
54 |
# File 'lib/poise_python/resources/pip_requirements.rb', line 54 attribute(:user, kind_of: [String, Integer, NilClass]) |