runway.env_mgr package¶
Base module for environment managers.
-
class
runway.env_mgr.
EnvManager
(bin_name, dir_name, path=None)[source]¶ Bases:
object
Base environment manager class.
-
env_dir_name
¶ Name of the directory within the users home directory where binary versions will be stored.
- Type
-
path
¶ The current working directory.
- Type
Path
Initialize class.
- Parameters
-
property
bin
Path to the version binary.
- Returns
Path
-
command_suffix
¶ Decorator for creating cached properties.
A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property. Source: https://github.com/bottlepy/bottle/commit/fa7733e075da0d790d809aa3d2f53071897e6f76
-
env_dir
¶ Decorator for creating cached properties.
A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property. Source: https://github.com/bottlepy/bottle/commit/fa7733e075da0d790d809aa3d2f53071897e6f76
-
versions_dir
¶ Decorator for creating cached properties.
A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property. Source: https://github.com/bottlepy/bottle/commit/fa7733e075da0d790d809aa3d2f53071897e6f76
-