Total Complexity | 1 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | from coalib.bears.requirements.PackageRequirement import PackageRequirement |
||
4 | class GoRequirement(PackageRequirement): |
||
5 | """ |
||
6 | This class is a subclass of ``PackageRequirement``, and helps specifying |
||
7 | requirements from ``go``, without using the manager name. |
||
8 | """ |
||
9 | |||
10 | def __init__(self, package, version="", flag=""): |
||
11 | """ |
||
12 | Constructs a new ``GoRequirement``, using the ``PackageRequirement`` |
||
13 | constructor. |
||
14 | |||
15 | >>> pr = GoRequirement('setuptools', '19.2', '-u') |
||
16 | >>> pr.manager |
||
17 | 'go' |
||
18 | >>> pr.package |
||
19 | 'setuptools' |
||
20 | >>> pr.version |
||
21 | '19.2' |
||
22 | >>> pr.flag |
||
23 | '-u' |
||
24 | |||
25 | :param package: A string with the name of the package to be installed. |
||
26 | :param version: A version string. Leave empty to specify latest version. |
||
27 | :param flag: A string that specifies any additional flags, that |
||
28 | would be used with ``flag``. |
||
29 | """ |
||
30 | PackageRequirement.__init__(self, 'go', package, version) |
||
31 | self.flag = flag |
||
32 |