rigid 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (364) hide show
  1. checksums.yaml +7 -0
  2. data/bin/rigid +4 -0
  3. data/rigid +16 -0
  4. data/vendor/PyYAML-3.12.dist-info/DESCRIPTION.rst +12 -0
  5. data/vendor/PyYAML-3.12.dist-info/INSTALLER +1 -0
  6. data/vendor/PyYAML-3.12.dist-info/METADATA +35 -0
  7. data/vendor/PyYAML-3.12.dist-info/RECORD +42 -0
  8. data/vendor/PyYAML-3.12.dist-info/WHEEL +5 -0
  9. data/vendor/PyYAML-3.12.dist-info/metadata.json +1 -0
  10. data/vendor/PyYAML-3.12.dist-info/top_level.txt +2 -0
  11. data/vendor/_yaml.so +0 -0
  12. data/vendor/click/__init__.py +98 -0
  13. data/vendor/click/__init__.pyc +0 -0
  14. data/vendor/click/_bashcomplete.py +83 -0
  15. data/vendor/click/_bashcomplete.pyc +0 -0
  16. data/vendor/click/_compat.py +642 -0
  17. data/vendor/click/_compat.pyc +0 -0
  18. data/vendor/click/_termui_impl.py +547 -0
  19. data/vendor/click/_termui_impl.pyc +0 -0
  20. data/vendor/click/_textwrap.py +38 -0
  21. data/vendor/click/_textwrap.pyc +0 -0
  22. data/vendor/click/_unicodefun.py +119 -0
  23. data/vendor/click/_unicodefun.pyc +0 -0
  24. data/vendor/click/_winconsole.py +273 -0
  25. data/vendor/click/_winconsole.pyc +0 -0
  26. data/vendor/click/core.py +1738 -0
  27. data/vendor/click/core.pyc +0 -0
  28. data/vendor/click/decorators.py +304 -0
  29. data/vendor/click/decorators.pyc +0 -0
  30. data/vendor/click/exceptions.py +201 -0
  31. data/vendor/click/exceptions.pyc +0 -0
  32. data/vendor/click/formatting.py +256 -0
  33. data/vendor/click/formatting.pyc +0 -0
  34. data/vendor/click/globals.py +48 -0
  35. data/vendor/click/globals.pyc +0 -0
  36. data/vendor/click/parser.py +426 -0
  37. data/vendor/click/parser.pyc +0 -0
  38. data/vendor/click/termui.py +539 -0
  39. data/vendor/click/termui.pyc +0 -0
  40. data/vendor/click/testing.py +322 -0
  41. data/vendor/click/testing.pyc +0 -0
  42. data/vendor/click/types.py +550 -0
  43. data/vendor/click/types.pyc +0 -0
  44. data/vendor/click/utils.py +415 -0
  45. data/vendor/click/utils.pyc +0 -0
  46. data/vendor/click-6.6.dist-info/DESCRIPTION.rst +3 -0
  47. data/vendor/click-6.6.dist-info/INSTALLER +1 -0
  48. data/vendor/click-6.6.dist-info/METADATA +16 -0
  49. data/vendor/click-6.6.dist-info/RECORD +41 -0
  50. data/vendor/click-6.6.dist-info/WHEEL +6 -0
  51. data/vendor/click-6.6.dist-info/metadata.json +1 -0
  52. data/vendor/click-6.6.dist-info/top_level.txt +1 -0
  53. data/vendor/easy_install.py +5 -0
  54. data/vendor/easy_install.pyc +0 -0
  55. data/vendor/pip-9.0.1.dist-info/DESCRIPTION.rst +39 -0
  56. data/vendor/pip-9.0.1.dist-info/INSTALLER +1 -0
  57. data/vendor/pip-9.0.1.dist-info/METADATA +69 -0
  58. data/vendor/pip-9.0.1.dist-info/RECORD +501 -0
  59. data/vendor/pip-9.0.1.dist-info/WHEEL +6 -0
  60. data/vendor/pip-9.0.1.dist-info/entry_points.txt +5 -0
  61. data/vendor/pip-9.0.1.dist-info/metadata.json +1 -0
  62. data/vendor/pip-9.0.1.dist-info/top_level.txt +1 -0
  63. data/vendor/pkg_resources/__init__.py +3051 -0
  64. data/vendor/pkg_resources/__init__.pyc +0 -0
  65. data/vendor/pkg_resources/_vendor/__init__.py +0 -0
  66. data/vendor/pkg_resources/_vendor/__init__.pyc +0 -0
  67. data/vendor/pkg_resources/_vendor/appdirs.py +552 -0
  68. data/vendor/pkg_resources/_vendor/appdirs.pyc +0 -0
  69. data/vendor/pkg_resources/_vendor/packaging/__about__.py +21 -0
  70. data/vendor/pkg_resources/_vendor/packaging/__about__.pyc +0 -0
  71. data/vendor/pkg_resources/_vendor/packaging/__init__.py +14 -0
  72. data/vendor/pkg_resources/_vendor/packaging/__init__.pyc +0 -0
  73. data/vendor/pkg_resources/_vendor/packaging/_compat.py +30 -0
  74. data/vendor/pkg_resources/_vendor/packaging/_compat.pyc +0 -0
  75. data/vendor/pkg_resources/_vendor/packaging/_structures.py +68 -0
  76. data/vendor/pkg_resources/_vendor/packaging/_structures.pyc +0 -0
  77. data/vendor/pkg_resources/_vendor/packaging/markers.py +287 -0
  78. data/vendor/pkg_resources/_vendor/packaging/markers.pyc +0 -0
  79. data/vendor/pkg_resources/_vendor/packaging/requirements.py +127 -0
  80. data/vendor/pkg_resources/_vendor/packaging/requirements.pyc +0 -0
  81. data/vendor/pkg_resources/_vendor/packaging/specifiers.py +774 -0
  82. data/vendor/pkg_resources/_vendor/packaging/specifiers.pyc +0 -0
  83. data/vendor/pkg_resources/_vendor/packaging/utils.py +14 -0
  84. data/vendor/pkg_resources/_vendor/packaging/utils.pyc +0 -0
  85. data/vendor/pkg_resources/_vendor/packaging/version.py +393 -0
  86. data/vendor/pkg_resources/_vendor/packaging/version.pyc +0 -0
  87. data/vendor/pkg_resources/_vendor/pyparsing.py +5696 -0
  88. data/vendor/pkg_resources/_vendor/pyparsing.pyc +0 -0
  89. data/vendor/pkg_resources/_vendor/six.py +868 -0
  90. data/vendor/pkg_resources/_vendor/six.pyc +0 -0
  91. data/vendor/pkg_resources/extern/__init__.py +73 -0
  92. data/vendor/pkg_resources/extern/__init__.pyc +0 -0
  93. data/vendor/requests/__init__.py +86 -0
  94. data/vendor/requests/__init__.pyc +0 -0
  95. data/vendor/requests/adapters.py +503 -0
  96. data/vendor/requests/adapters.pyc +0 -0
  97. data/vendor/requests/api.py +148 -0
  98. data/vendor/requests/api.pyc +0 -0
  99. data/vendor/requests/auth.py +252 -0
  100. data/vendor/requests/auth.pyc +0 -0
  101. data/vendor/requests/cacert.pem +5616 -0
  102. data/vendor/requests/certs.py +25 -0
  103. data/vendor/requests/certs.pyc +0 -0
  104. data/vendor/requests/compat.py +66 -0
  105. data/vendor/requests/compat.pyc +0 -0
  106. data/vendor/requests/cookies.py +540 -0
  107. data/vendor/requests/cookies.pyc +0 -0
  108. data/vendor/requests/exceptions.py +114 -0
  109. data/vendor/requests/exceptions.pyc +0 -0
  110. data/vendor/requests/hooks.py +34 -0
  111. data/vendor/requests/hooks.pyc +0 -0
  112. data/vendor/requests/models.py +873 -0
  113. data/vendor/requests/models.pyc +0 -0
  114. data/vendor/requests/packages/__init__.py +36 -0
  115. data/vendor/requests/packages/__init__.pyc +0 -0
  116. data/vendor/requests/packages/chardet/__init__.py +32 -0
  117. data/vendor/requests/packages/chardet/__init__.pyc +0 -0
  118. data/vendor/requests/packages/chardet/big5freq.py +925 -0
  119. data/vendor/requests/packages/chardet/big5freq.pyc +0 -0
  120. data/vendor/requests/packages/chardet/big5prober.py +42 -0
  121. data/vendor/requests/packages/chardet/big5prober.pyc +0 -0
  122. data/vendor/requests/packages/chardet/chardetect.py +80 -0
  123. data/vendor/requests/packages/chardet/chardetect.pyc +0 -0
  124. data/vendor/requests/packages/chardet/chardistribution.py +231 -0
  125. data/vendor/requests/packages/chardet/chardistribution.pyc +0 -0
  126. data/vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
  127. data/vendor/requests/packages/chardet/charsetgroupprober.pyc +0 -0
  128. data/vendor/requests/packages/chardet/charsetprober.py +62 -0
  129. data/vendor/requests/packages/chardet/charsetprober.pyc +0 -0
  130. data/vendor/requests/packages/chardet/codingstatemachine.py +61 -0
  131. data/vendor/requests/packages/chardet/codingstatemachine.pyc +0 -0
  132. data/vendor/requests/packages/chardet/compat.py +34 -0
  133. data/vendor/requests/packages/chardet/compat.pyc +0 -0
  134. data/vendor/requests/packages/chardet/constants.py +39 -0
  135. data/vendor/requests/packages/chardet/constants.pyc +0 -0
  136. data/vendor/requests/packages/chardet/cp949prober.py +44 -0
  137. data/vendor/requests/packages/chardet/cp949prober.pyc +0 -0
  138. data/vendor/requests/packages/chardet/escprober.py +86 -0
  139. data/vendor/requests/packages/chardet/escprober.pyc +0 -0
  140. data/vendor/requests/packages/chardet/escsm.py +242 -0
  141. data/vendor/requests/packages/chardet/escsm.pyc +0 -0
  142. data/vendor/requests/packages/chardet/eucjpprober.py +90 -0
  143. data/vendor/requests/packages/chardet/eucjpprober.pyc +0 -0
  144. data/vendor/requests/packages/chardet/euckrfreq.py +596 -0
  145. data/vendor/requests/packages/chardet/euckrfreq.pyc +0 -0
  146. data/vendor/requests/packages/chardet/euckrprober.py +42 -0
  147. data/vendor/requests/packages/chardet/euckrprober.pyc +0 -0
  148. data/vendor/requests/packages/chardet/euctwfreq.py +428 -0
  149. data/vendor/requests/packages/chardet/euctwfreq.pyc +0 -0
  150. data/vendor/requests/packages/chardet/euctwprober.py +41 -0
  151. data/vendor/requests/packages/chardet/euctwprober.pyc +0 -0
  152. data/vendor/requests/packages/chardet/gb2312freq.py +472 -0
  153. data/vendor/requests/packages/chardet/gb2312freq.pyc +0 -0
  154. data/vendor/requests/packages/chardet/gb2312prober.py +41 -0
  155. data/vendor/requests/packages/chardet/gb2312prober.pyc +0 -0
  156. data/vendor/requests/packages/chardet/hebrewprober.py +283 -0
  157. data/vendor/requests/packages/chardet/hebrewprober.pyc +0 -0
  158. data/vendor/requests/packages/chardet/jisfreq.py +569 -0
  159. data/vendor/requests/packages/chardet/jisfreq.pyc +0 -0
  160. data/vendor/requests/packages/chardet/jpcntx.py +227 -0
  161. data/vendor/requests/packages/chardet/jpcntx.pyc +0 -0
  162. data/vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
  163. data/vendor/requests/packages/chardet/langbulgarianmodel.pyc +0 -0
  164. data/vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
  165. data/vendor/requests/packages/chardet/langcyrillicmodel.pyc +0 -0
  166. data/vendor/requests/packages/chardet/langgreekmodel.py +225 -0
  167. data/vendor/requests/packages/chardet/langgreekmodel.pyc +0 -0
  168. data/vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
  169. data/vendor/requests/packages/chardet/langhebrewmodel.pyc +0 -0
  170. data/vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
  171. data/vendor/requests/packages/chardet/langhungarianmodel.pyc +0 -0
  172. data/vendor/requests/packages/chardet/langthaimodel.py +200 -0
  173. data/vendor/requests/packages/chardet/langthaimodel.pyc +0 -0
  174. data/vendor/requests/packages/chardet/latin1prober.py +139 -0
  175. data/vendor/requests/packages/chardet/latin1prober.pyc +0 -0
  176. data/vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
  177. data/vendor/requests/packages/chardet/mbcharsetprober.pyc +0 -0
  178. data/vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
  179. data/vendor/requests/packages/chardet/mbcsgroupprober.pyc +0 -0
  180. data/vendor/requests/packages/chardet/mbcssm.py +572 -0
  181. data/vendor/requests/packages/chardet/mbcssm.pyc +0 -0
  182. data/vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
  183. data/vendor/requests/packages/chardet/sbcharsetprober.pyc +0 -0
  184. data/vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
  185. data/vendor/requests/packages/chardet/sbcsgroupprober.pyc +0 -0
  186. data/vendor/requests/packages/chardet/sjisprober.py +91 -0
  187. data/vendor/requests/packages/chardet/sjisprober.pyc +0 -0
  188. data/vendor/requests/packages/chardet/universaldetector.py +170 -0
  189. data/vendor/requests/packages/chardet/universaldetector.pyc +0 -0
  190. data/vendor/requests/packages/chardet/utf8prober.py +76 -0
  191. data/vendor/requests/packages/chardet/utf8prober.pyc +0 -0
  192. data/vendor/requests/packages/urllib3/__init__.py +96 -0
  193. data/vendor/requests/packages/urllib3/__init__.pyc +0 -0
  194. data/vendor/requests/packages/urllib3/_collections.py +324 -0
  195. data/vendor/requests/packages/urllib3/_collections.pyc +0 -0
  196. data/vendor/requests/packages/urllib3/connection.py +330 -0
  197. data/vendor/requests/packages/urllib3/connection.pyc +0 -0
  198. data/vendor/requests/packages/urllib3/connectionpool.py +866 -0
  199. data/vendor/requests/packages/urllib3/connectionpool.pyc +0 -0
  200. data/vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
  201. data/vendor/requests/packages/urllib3/contrib/__init__.pyc +0 -0
  202. data/vendor/requests/packages/urllib3/contrib/appengine.py +231 -0
  203. data/vendor/requests/packages/urllib3/contrib/appengine.pyc +0 -0
  204. data/vendor/requests/packages/urllib3/contrib/ntlmpool.py +115 -0
  205. data/vendor/requests/packages/urllib3/contrib/ntlmpool.pyc +0 -0
  206. data/vendor/requests/packages/urllib3/contrib/pyopenssl.py +358 -0
  207. data/vendor/requests/packages/urllib3/contrib/pyopenssl.pyc +0 -0
  208. data/vendor/requests/packages/urllib3/contrib/socks.py +172 -0
  209. data/vendor/requests/packages/urllib3/contrib/socks.pyc +0 -0
  210. data/vendor/requests/packages/urllib3/exceptions.py +209 -0
  211. data/vendor/requests/packages/urllib3/exceptions.pyc +0 -0
  212. data/vendor/requests/packages/urllib3/fields.py +178 -0
  213. data/vendor/requests/packages/urllib3/fields.pyc +0 -0
  214. data/vendor/requests/packages/urllib3/filepost.py +94 -0
  215. data/vendor/requests/packages/urllib3/filepost.pyc +0 -0
  216. data/vendor/requests/packages/urllib3/packages/__init__.py +5 -0
  217. data/vendor/requests/packages/urllib3/packages/__init__.pyc +0 -0
  218. data/vendor/requests/packages/urllib3/packages/ordered_dict.py +259 -0
  219. data/vendor/requests/packages/urllib3/packages/ordered_dict.pyc +0 -0
  220. data/vendor/requests/packages/urllib3/packages/six.py +868 -0
  221. data/vendor/requests/packages/urllib3/packages/six.pyc +0 -0
  222. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
  223. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc +0 -0
  224. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
  225. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc +0 -0
  226. data/vendor/requests/packages/urllib3/poolmanager.py +367 -0
  227. data/vendor/requests/packages/urllib3/poolmanager.pyc +0 -0
  228. data/vendor/requests/packages/urllib3/request.py +151 -0
  229. data/vendor/requests/packages/urllib3/request.pyc +0 -0
  230. data/vendor/requests/packages/urllib3/response.py +530 -0
  231. data/vendor/requests/packages/urllib3/response.pyc +0 -0
  232. data/vendor/requests/packages/urllib3/util/__init__.py +46 -0
  233. data/vendor/requests/packages/urllib3/util/__init__.pyc +0 -0
  234. data/vendor/requests/packages/urllib3/util/connection.py +144 -0
  235. data/vendor/requests/packages/urllib3/util/connection.pyc +0 -0
  236. data/vendor/requests/packages/urllib3/util/request.py +72 -0
  237. data/vendor/requests/packages/urllib3/util/request.pyc +0 -0
  238. data/vendor/requests/packages/urllib3/util/response.py +74 -0
  239. data/vendor/requests/packages/urllib3/util/response.pyc +0 -0
  240. data/vendor/requests/packages/urllib3/util/retry.py +300 -0
  241. data/vendor/requests/packages/urllib3/util/retry.pyc +0 -0
  242. data/vendor/requests/packages/urllib3/util/ssl_.py +320 -0
  243. data/vendor/requests/packages/urllib3/util/ssl_.pyc +0 -0
  244. data/vendor/requests/packages/urllib3/util/timeout.py +242 -0
  245. data/vendor/requests/packages/urllib3/util/timeout.pyc +0 -0
  246. data/vendor/requests/packages/urllib3/util/url.py +217 -0
  247. data/vendor/requests/packages/urllib3/util/url.pyc +0 -0
  248. data/vendor/requests/sessions.py +712 -0
  249. data/vendor/requests/sessions.pyc +0 -0
  250. data/vendor/requests/status_codes.py +91 -0
  251. data/vendor/requests/status_codes.pyc +0 -0
  252. data/vendor/requests/structures.py +105 -0
  253. data/vendor/requests/structures.pyc +0 -0
  254. data/vendor/requests/utils.py +817 -0
  255. data/vendor/requests/utils.pyc +0 -0
  256. data/vendor/requests-2.11.1.dist-info/DESCRIPTION.rst +1294 -0
  257. data/vendor/requests-2.11.1.dist-info/INSTALLER +1 -0
  258. data/vendor/requests-2.11.1.dist-info/METADATA +1323 -0
  259. data/vendor/requests-2.11.1.dist-info/RECORD +170 -0
  260. data/vendor/requests-2.11.1.dist-info/WHEEL +6 -0
  261. data/vendor/requests-2.11.1.dist-info/metadata.json +1 -0
  262. data/vendor/requests-2.11.1.dist-info/top_level.txt +1 -0
  263. data/vendor/rigid/__init__.py +1 -0
  264. data/vendor/rigid/__init__.pyc +0 -0
  265. data/vendor/rigid/api.py +129 -0
  266. data/vendor/rigid/api.pyc +0 -0
  267. data/vendor/rigid/commands/__init__.py +260 -0
  268. data/vendor/rigid/commands/__init__.pyc +0 -0
  269. data/vendor/rigid/commands/deploy.py +0 -0
  270. data/vendor/rigid/commands/deploy.pyc +0 -0
  271. data/vendor/rigid/deploy.py +70 -0
  272. data/vendor/rigid/deploy.pyc +0 -0
  273. data/vendor/rigid/file_scanner.py +63 -0
  274. data/vendor/rigid/file_scanner.pyc +0 -0
  275. data/vendor/rigid/utils.py +17 -0
  276. data/vendor/rigid/utils.pyc +0 -0
  277. data/vendor/rigid-0.2.0.dist-info/DESCRIPTION.rst +3 -0
  278. data/vendor/rigid-0.2.0.dist-info/INSTALLER +1 -0
  279. data/vendor/rigid-0.2.0.dist-info/METADATA +23 -0
  280. data/vendor/rigid-0.2.0.dist-info/RECORD +49 -0
  281. data/vendor/rigid-0.2.0.dist-info/WHEEL +5 -0
  282. data/vendor/rigid-0.2.0.dist-info/entry_points.txt +3 -0
  283. data/vendor/rigid-0.2.0.dist-info/metadata.json +1 -0
  284. data/vendor/rigid-0.2.0.dist-info/top_level.txt +2 -0
  285. data/vendor/setuptools-28.8.0.dist-info/DESCRIPTION.rst +243 -0
  286. data/vendor/setuptools-28.8.0.dist-info/INSTALLER +1 -0
  287. data/vendor/setuptools-28.8.0.dist-info/METADATA +272 -0
  288. data/vendor/setuptools-28.8.0.dist-info/RECORD +143 -0
  289. data/vendor/setuptools-28.8.0.dist-info/WHEEL +6 -0
  290. data/vendor/setuptools-28.8.0.dist-info/dependency_links.txt +2 -0
  291. data/vendor/setuptools-28.8.0.dist-info/entry_points.txt +63 -0
  292. data/vendor/setuptools-28.8.0.dist-info/metadata.json +1 -0
  293. data/vendor/setuptools-28.8.0.dist-info/top_level.txt +3 -0
  294. data/vendor/setuptools-28.8.0.dist-info/zip-safe +1 -0
  295. data/vendor/tests/__init__.py +0 -0
  296. data/vendor/tests/__init__.pyc +0 -0
  297. data/vendor/tests/integration/__init__.py +0 -0
  298. data/vendor/tests/integration/__init__.pyc +0 -0
  299. data/vendor/tests/integration/test_app.py +63 -0
  300. data/vendor/tests/integration/test_app.pyc +0 -0
  301. data/vendor/tests/integration/test_apps.py +27 -0
  302. data/vendor/tests/integration/test_apps.pyc +0 -0
  303. data/vendor/tests/integration/test_deploy.py +128 -0
  304. data/vendor/tests/integration/test_deploy.pyc +0 -0
  305. data/vendor/tests/integration/test_domains.py +35 -0
  306. data/vendor/tests/integration/test_domains.pyc +0 -0
  307. data/vendor/tests/integration/test_login.py +37 -0
  308. data/vendor/tests/integration/test_login.pyc +0 -0
  309. data/vendor/tests/integration/test_promote.py +24 -0
  310. data/vendor/tests/integration/test_promote.pyc +0 -0
  311. data/vendor/tests/integration/test_token.py +33 -0
  312. data/vendor/tests/integration/test_token.pyc +0 -0
  313. data/vendor/tests/integration/test_whoami.py +24 -0
  314. data/vendor/tests/integration/test_whoami.pyc +0 -0
  315. data/vendor/tests/test_deploy.py +33 -0
  316. data/vendor/tests/test_deploy.pyc +0 -0
  317. data/vendor/tests/test_file_scanner.py +89 -0
  318. data/vendor/tests/test_file_scanner.pyc +0 -0
  319. data/vendor/tests/utils.py +78 -0
  320. data/vendor/tests/utils.pyc +0 -0
  321. data/vendor/wheel-0.30.0a0.dist-info/DESCRIPTION.rst +325 -0
  322. data/vendor/wheel-0.30.0a0.dist-info/INSTALLER +1 -0
  323. data/vendor/wheel-0.30.0a0.dist-info/LICENSE.txt +22 -0
  324. data/vendor/wheel-0.30.0a0.dist-info/METADATA +357 -0
  325. data/vendor/wheel-0.30.0a0.dist-info/RECORD +86 -0
  326. data/vendor/wheel-0.30.0a0.dist-info/WHEEL +6 -0
  327. data/vendor/wheel-0.30.0a0.dist-info/entry_points.txt +6 -0
  328. data/vendor/wheel-0.30.0a0.dist-info/metadata.json +1 -0
  329. data/vendor/wheel-0.30.0a0.dist-info/top_level.txt +1 -0
  330. data/vendor/yaml/__init__.py +315 -0
  331. data/vendor/yaml/__init__.pyc +0 -0
  332. data/vendor/yaml/composer.py +139 -0
  333. data/vendor/yaml/composer.pyc +0 -0
  334. data/vendor/yaml/constructor.py +675 -0
  335. data/vendor/yaml/constructor.pyc +0 -0
  336. data/vendor/yaml/cyaml.py +85 -0
  337. data/vendor/yaml/cyaml.pyc +0 -0
  338. data/vendor/yaml/dumper.py +62 -0
  339. data/vendor/yaml/dumper.pyc +0 -0
  340. data/vendor/yaml/emitter.py +1140 -0
  341. data/vendor/yaml/emitter.pyc +0 -0
  342. data/vendor/yaml/error.py +75 -0
  343. data/vendor/yaml/error.pyc +0 -0
  344. data/vendor/yaml/events.py +86 -0
  345. data/vendor/yaml/events.pyc +0 -0
  346. data/vendor/yaml/loader.py +40 -0
  347. data/vendor/yaml/loader.pyc +0 -0
  348. data/vendor/yaml/nodes.py +49 -0
  349. data/vendor/yaml/nodes.pyc +0 -0
  350. data/vendor/yaml/parser.py +589 -0
  351. data/vendor/yaml/parser.pyc +0 -0
  352. data/vendor/yaml/reader.py +190 -0
  353. data/vendor/yaml/reader.pyc +0 -0
  354. data/vendor/yaml/representer.py +486 -0
  355. data/vendor/yaml/representer.pyc +0 -0
  356. data/vendor/yaml/resolver.py +227 -0
  357. data/vendor/yaml/resolver.pyc +0 -0
  358. data/vendor/yaml/scanner.py +1453 -0
  359. data/vendor/yaml/scanner.pyc +0 -0
  360. data/vendor/yaml/serializer.py +111 -0
  361. data/vendor/yaml/serializer.pyc +0 -0
  362. data/vendor/yaml/tokens.py +104 -0
  363. data/vendor/yaml/tokens.pyc +0 -0
  364. metadata +407 -0
@@ -0,0 +1,63 @@
1
+ import os
2
+ import fnmatch
3
+ import tarfile
4
+
5
+
6
+ def scan(directory):
7
+ for root, dirs, files in os.walk(directory):
8
+ for name in files:
9
+ yield os.path.relpath(os.path.join(root, name), directory)
10
+
11
+
12
+ def tar(tarball, files, source):
13
+ with tarfile.open(tarball, 'w:gz') as tar:
14
+ for path in files:
15
+ tar.add(os.path.join(source, path), arcname=path)
16
+
17
+
18
+ class Skipper(object):
19
+ DEFAULT_RULES = [
20
+ '.git',
21
+ '.DS_Store',
22
+ '.rigid.yaml',
23
+ '.rigid-*.yaml',
24
+
25
+ # Vim swap files
26
+ '*~',
27
+ '*.swp',
28
+ '*.swo',
29
+ ]
30
+
31
+ @classmethod
32
+ def open(cls, path, default=True):
33
+ with open(path) as fp:
34
+ lines = map(lambda line: line.strip(), fp.readlines())
35
+ lines = filter(lambda line: not line.startswith('#') and not len(line) == 0, lines)
36
+
37
+ return cls(lines, default=default)
38
+
39
+ def __init__(self, rules, default=True):
40
+ self.rules = rules
41
+
42
+ if default:
43
+ self.rules += self.DEFAULT_RULES
44
+
45
+ def test(self, path):
46
+ """
47
+ Test if a file matches the rules.
48
+ """
49
+
50
+ components = path.split(os.sep)
51
+
52
+ for component in components:
53
+ for rule in self.rules:
54
+ if rule == component:
55
+ return True
56
+
57
+ if fnmatch.fnmatch(component, rule):
58
+ return True
59
+
60
+ return False
61
+
62
+ def __call__(self, path):
63
+ return not self.test(path)
Binary file
@@ -0,0 +1,17 @@
1
+ class ObservedFileWrapper(object):
2
+ def __init__(self, fd, callback):
3
+ self.fd = fd
4
+ self.callback = callback
5
+
6
+ def __getattr__(self, attr):
7
+ get = object.__getattribute__
8
+
9
+ if attr in ('read', 'callback'):
10
+ return get(self, attr)
11
+
12
+ fd = get(self, 'fd')
13
+ return getattr(fd, attr)
14
+
15
+ def read(self, size):
16
+ self.callback(size)
17
+ return self.fd.read(size)
Binary file
@@ -0,0 +1,3 @@
1
+ UNKNOWN
2
+
3
+
@@ -0,0 +1 @@
1
+ pip
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.0
2
+ Name: rigid
3
+ Version: 0.2.0
4
+ Summary: Rig up your web application in seconds
5
+ Home-page: http://rigidapp.com/
6
+ Author: Kyle Fuller
7
+ Author-email: kyle@cocode.org
8
+ License: BSD
9
+ Platform: UNKNOWN
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 2
13
+ Classifier: Programming Language :: Python :: 2.7
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.5
16
+ Classifier: License :: OSI Approved :: BSD License
17
+ Requires-Dist: click
18
+ Requires-Dist: requests
19
+ Requires-Dist: pyyaml
20
+
21
+ UNKNOWN
22
+
23
+
@@ -0,0 +1,49 @@
1
+ rigid/__init__.py,sha256=FVHPBGkfhbQDi_z3v0PiKJrXXqXOx0vGW_1VaqNJi7U,22
2
+ rigid/api.py,sha256=-V1Vh6cbXgDlN-YqOR_DlnwTGGXMDpeH75mV6ueguPw,4193
3
+ rigid/deploy.py,sha256=0gnooMal1IbOQFznuonR1KJq42nKpfBCBs_5SnY4ozY,2175
4
+ rigid/file_scanner.py,sha256=UMlJkD7YXnozMkWDxmpnQEhyJan2zoZXWtEiuJPZ-pg,1479
5
+ rigid/utils.py,sha256=eJPmktA9Gm83TaG9uwbs1413LTpJP-EiG_DYECEZMEA,428
6
+ rigid/commands/__init__.py,sha256=hFNGlIKsNnIKzmluMOjTB5iMtstvCVKueMIGSKiSIEg,6959
7
+ rigid/commands/deploy.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ rigid-0.2.0.dist-info/DESCRIPTION.rst,sha256=OCTuuN6LcWulhHS3d5rfjdsQtW22n7HENFRh6jC6ego,10
9
+ rigid-0.2.0.dist-info/METADATA,sha256=tekFsMJr4NHv4eDDySfXrJ3ul_NKgayRuhJHb87dGiY,638
10
+ rigid-0.2.0.dist-info/RECORD,,
11
+ rigid-0.2.0.dist-info/WHEEL,sha256=u6Fy2U76CDFJ6q2P27rqtBo3AN6qpylFiMaYzNr2lJg,95
12
+ rigid-0.2.0.dist-info/entry_points.txt,sha256=MPjHcNW_6-u5NuSAzeVAqVfmIbo2A47LSotTigvTa_c,46
13
+ rigid-0.2.0.dist-info/metadata.json,sha256=vAq9h69JatHvPjCDoKvQyHrtZG-ikLekqousZAwUeeo,967
14
+ rigid-0.2.0.dist-info/top_level.txt,sha256=LbeTr3maOGl8NwALmksu6EESy4CVZ_nltVNtdqLBKWY,12
15
+ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ tests/test_deploy.py,sha256=ob_v3v2KZV_x258imkCQqvOA_un1qkloPqZWh9QzBfY,893
17
+ tests/test_file_scanner.py,sha256=PFGwRr4lnyXj7WBoa9OnENCGB6gttuFq50XZB6VYzOM,2753
18
+ tests/utils.py,sha256=qfqcNn4iI3nE59wXfp1AiuJ2XWlBiY6VY4PLK5mzFwU,2292
19
+ tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ tests/integration/test_app.py,sha256=l5zMxUMyzJMoQw1bNKSHHAQYvOR-7MmO-KSscezExkM,2232
21
+ tests/integration/test_apps.py,sha256=kWv_JHQp7YxbBfaenefeFTdjje63REiF9LRtg2dHSu8,762
22
+ tests/integration/test_deploy.py,sha256=NMNPlpHbuRUjbPQehIACzKbNvSiqtoxa3ZmXiWzSaWY,4986
23
+ tests/integration/test_domains.py,sha256=YP-xlWIR-KmpmW-usaRUQg5aC5pY2vvpkjVkM_RpvC4,1341
24
+ tests/integration/test_login.py,sha256=7jpgY7EkLdbd0ahWBpxbJyuZMXPUPENAHvQAyJBSYFU,1507
25
+ tests/integration/test_promote.py,sha256=vmEH89H-_IeLfHCRXSs3rMJ9UTtfWwXkxKI71VJOaJM,809
26
+ tests/integration/test_token.py,sha256=xsMxtrPYb6zt48TvP--sjC-P7750IeZEFjcgZGh7t0w,1117
27
+ tests/integration/test_whoami.py,sha256=rJ5j5VaauKnddduo7PYfHwXbt47ccgHQY1tEMhGtVkQ,730
28
+ ../../../bin/rigid,sha256=siJK-1C1K5gmtBOVFKUYHZLx_8Q4hz27OPaGyFfGADA,265
29
+ rigid-0.2.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
30
+ tests/integration/test_promote.pyc,,
31
+ tests/test_file_scanner.pyc,,
32
+ rigid/deploy.pyc,,
33
+ tests/__init__.pyc,,
34
+ tests/utils.pyc,,
35
+ rigid/utils.pyc,,
36
+ tests/integration/test_token.pyc,,
37
+ tests/integration/test_domains.pyc,,
38
+ rigid/commands/deploy.pyc,,
39
+ tests/integration/__init__.pyc,,
40
+ rigid/api.pyc,,
41
+ tests/integration/test_app.pyc,,
42
+ tests/integration/test_apps.pyc,,
43
+ rigid/__init__.pyc,,
44
+ rigid/commands/__init__.pyc,,
45
+ tests/integration/test_deploy.pyc,,
46
+ tests/test_deploy.pyc,,
47
+ tests/integration/test_whoami.pyc,,
48
+ tests/integration/test_login.pyc,,
49
+ rigid/file_scanner.pyc,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.30.0.a0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ rigid = rigid.commands:cli
3
+
@@ -0,0 +1 @@
1
+ {"classifiers": ["Development Status :: 5 - Production/Stable", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "License :: OSI Approved :: BSD License"], "extensions": {"python.commands": {"wrap_console": {"rigid": "rigid.commands:cli"}}, "python.details": {"contacts": [{"email": "kyle@cocode.org", "name": "Kyle Fuller", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://rigidapp.com/"}}, "python.exports": {"console_scripts": {"rigid": "rigid.commands:cli"}}}, "extras": [], "generator": "bdist_wheel (0.30.0.a0)", "license": "BSD", "metadata_version": "2.0", "name": "rigid", "run_requires": [{"requires": ["click", "pyyaml", "requests"]}], "summary": "Rig up your web application in seconds", "test_requires": [{"requires": ["six"]}], "version": "0.2.0"}
@@ -0,0 +1,2 @@
1
+ rigid
2
+ tests
@@ -0,0 +1,243 @@
1
+ ===============================
2
+ Installing and Using Setuptools
3
+ ===============================
4
+
5
+ .. contents:: **Table of Contents**
6
+
7
+
8
+ .. image:: https://setuptools.readthedocs.io/en/latest/?badge=latest
9
+ :target: https://setuptools.readthedocs.io
10
+
11
+ -------------------------
12
+ Installation Instructions
13
+ -------------------------
14
+
15
+ The recommended way to bootstrap setuptools on any system is to download
16
+ `ez_setup.py`_ and run it using the target Python environment. Different
17
+ operating systems have different recommended techniques to accomplish this
18
+ basic routine, so below are some examples to get you started.
19
+
20
+ Setuptools requires Python 2.6 or later. To install setuptools
21
+ on Python 2.4 or Python 2.5, use the `bootstrap script for Setuptools 1.x
22
+ <https://raw.githubusercontent.com/pypa/setuptools/bootstrap-py24/ez_setup.py>`_.
23
+
24
+ The link provided to ez_setup.py is a bookmark to bootstrap script for the
25
+ latest known stable release.
26
+
27
+ .. _ez_setup.py: https://bootstrap.pypa.io/ez_setup.py
28
+
29
+ Windows (Powershell 3 or later)
30
+ ===============================
31
+
32
+ For best results, uninstall previous versions FIRST (see `Uninstalling`_).
33
+
34
+ Using Windows 8 (which includes PowerShell 3) or earlier versions of Windows
35
+ with PowerShell 3 installed, it's possible to install with one simple
36
+ Powershell command. Start up Powershell and paste this command::
37
+
38
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python -
39
+
40
+ .. image:: https://badges.gitter.im/pypa/setuptools.svg
41
+ :alt: Join the chat at https://gitter.im/pypa/setuptools
42
+ :target: https://gitter.im/pypa/setuptools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
43
+
44
+ You must start the Powershell with Administrative privileges or you may choose
45
+ to install a user-local installation::
46
+
47
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python - --user
48
+
49
+ If you have Python 3.3 or later, you can use the ``py`` command to install to
50
+ different Python versions. For example, to install to Python 3.3 if you have
51
+ Python 2.7 installed::
52
+
53
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | py -3 -
54
+
55
+ The recommended way to install setuptools on Windows is to download
56
+ `ez_setup.py`_ and run it. The script will download the appropriate
57
+ distribution file and install it for you.
58
+
59
+ Once installation is complete, you will find an ``easy_install`` program in
60
+ your Python ``Scripts`` subdirectory. For simple invocation and best results,
61
+ add this directory to your ``PATH`` environment variable, if it is not already
62
+ present. If you did a user-local install, the ``Scripts`` subdirectory is
63
+ ``$env:APPDATA\Python\Scripts``.
64
+
65
+
66
+ Windows (simplified)
67
+ ====================
68
+
69
+ For Windows without PowerShell 3 or for installation without a command-line,
70
+ download `ez_setup.py`_ using your preferred web browser or other technique
71
+ and "run" that file.
72
+
73
+
74
+ Unix (wget)
75
+ ===========
76
+
77
+ Most Linux distributions come with wget.
78
+
79
+ Download `ez_setup.py`_ and run it using the target Python version. The script
80
+ will download the appropriate version and install it for you::
81
+
82
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | python
83
+
84
+ Note that you will may need to invoke the command with superuser privileges to
85
+ install to the system Python::
86
+
87
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
88
+
89
+ Alternatively, Setuptools may be installed to a user-local path::
90
+
91
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | python - --user
92
+
93
+ Note that on some older systems (noted on Debian 6 and CentOS 5 installations),
94
+ `wget` may refuse to download `ez_setup.py`, complaining that the certificate common name `*.c.ssl.fastly.net`
95
+ does not match the host name `bootstrap.pypa.io`. In addition, the `ez_setup.py` script may then encounter similar problems using
96
+ `wget` internally to download `setuptools-x.y.zip`, complaining that the certificate common name of `www.python.org` does not match the
97
+ host name `pypi.python.org`. Those are known issues, related to a bug in the older versions of `wget`
98
+ (see `Issue 59 <https://bitbucket.org/pypa/pypi/issue/59#comment-5881915>`_). If you happen to encounter them,
99
+ install Setuptools as follows::
100
+
101
+ > wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py
102
+ > python ez_setup.py --insecure
103
+
104
+
105
+ Unix including Mac OS X (curl)
106
+ ==============================
107
+
108
+ If your system has curl installed, follow the ``wget`` instructions but
109
+ replace ``wget`` with ``curl`` and ``-O`` with ``-o``. For example::
110
+
111
+ > curl https://bootstrap.pypa.io/ez_setup.py -o - | python
112
+
113
+
114
+ Advanced Installation
115
+ =====================
116
+
117
+ For more advanced installation options, such as installing to custom
118
+ locations or prefixes, download and extract the source
119
+ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_
120
+ and run setup.py with any supported distutils and Setuptools options.
121
+ For example::
122
+
123
+ setuptools-x.x$ python setup.py install --prefix=/opt/setuptools
124
+
125
+ Use ``--help`` to get a full options list, but we recommend consulting
126
+ the `EasyInstall manual`_ for detailed instructions, especially `the section
127
+ on custom installation locations`_.
128
+
129
+ .. _EasyInstall manual: https://pythonhosted.org/setuptools/EasyInstall
130
+ .. _the section on custom installation locations: https://pythonhosted.org/setuptools/EasyInstall#custom-installation-locations
131
+
132
+
133
+ Downloads
134
+ =========
135
+
136
+ All setuptools downloads can be found at `the project's home page in the Python
137
+ Package Index`_. Scroll to the very bottom of the page to find the links.
138
+
139
+ .. _the project's home page in the Python Package Index: https://pypi.python.org/pypi/setuptools
140
+
141
+ In addition to the PyPI downloads, the development version of ``setuptools``
142
+ is available from the `Bitbucket repo`_, and in-development versions of the
143
+ `0.6 branch`_ are available as well.
144
+
145
+ .. _Bitbucket repo: https://bitbucket.org/pypa/setuptools/get/default.tar.gz#egg=setuptools-dev
146
+ .. _0.6 branch: http://svn.python.org/projects/sandbox/branches/setuptools-0.6/#egg=setuptools-dev06
147
+
148
+ Uninstalling
149
+ ============
150
+
151
+ On Windows, if Setuptools was installed using an ``.exe`` or ``.msi``
152
+ installer, simply use the uninstall feature of "Add/Remove Programs" in the
153
+ Control Panel.
154
+
155
+ Otherwise, to uninstall Setuptools or Distribute, regardless of the Python
156
+ version, delete all ``setuptools*`` and ``distribute*`` files and
157
+ directories from your system's ``site-packages`` directory
158
+ (and any other ``sys.path`` directories) FIRST.
159
+
160
+ If you are upgrading or otherwise plan to re-install Setuptools or Distribute,
161
+ nothing further needs to be done. If you want to completely remove Setuptools,
162
+ you may also want to remove the 'easy_install' and 'easy_install-x.x' scripts
163
+ and associated executables installed to the Python scripts directory.
164
+
165
+ --------------------------------
166
+ Using Setuptools and EasyInstall
167
+ --------------------------------
168
+
169
+ Here are some of the available manuals, tutorials, and other resources for
170
+ learning about Setuptools, Python Eggs, and EasyInstall:
171
+
172
+ * `The EasyInstall user's guide and reference manual`_
173
+ * `The setuptools Developer's Guide`_
174
+ * `The pkg_resources API reference`_
175
+ * `The Internal Structure of Python Eggs`_
176
+
177
+ Questions, comments, and bug reports should be directed to the `distutils-sig
178
+ mailing list`_. If you have written (or know of) any tutorials, documentation,
179
+ plug-ins, or other resources for setuptools users, please let us know about
180
+ them there, so this reference list can be updated. If you have working,
181
+ *tested* patches to correct problems or add features, you may submit them to
182
+ the `setuptools bug tracker`_.
183
+
184
+ .. _setuptools bug tracker: https://github.com/pypa/setuptools/issues
185
+ .. _The Internal Structure of Python Eggs: https://setuptools.readthedocs.io/en/latest/formats.html
186
+ .. _The setuptools Developer's Guide: https://setuptools.readthedocs.io/en/latest/developer-guide.html
187
+ .. _The pkg_resources API reference: https://setuptools.readthedocs.io/en/latest/pkg_resources.html
188
+ .. _The EasyInstall user's guide and reference manual: https://setuptools.readthedocs.io/en/latest/easy_install.html
189
+ .. _distutils-sig mailing list: http://mail.python.org/pipermail/distutils-sig/
190
+
191
+
192
+ -------
193
+ Credits
194
+ -------
195
+
196
+ * The original design for the ``.egg`` format and the ``pkg_resources`` API was
197
+ co-created by Phillip Eby and Bob Ippolito. Bob also implemented the first
198
+ version of ``pkg_resources``, and supplied the OS X operating system version
199
+ compatibility algorithm.
200
+
201
+ * Ian Bicking implemented many early "creature comfort" features of
202
+ easy_install, including support for downloading via Sourceforge and
203
+ Subversion repositories. Ian's comments on the Web-SIG about WSGI
204
+ application deployment also inspired the concept of "entry points" in eggs,
205
+ and he has given talks at PyCon and elsewhere to inform and educate the
206
+ community about eggs and setuptools.
207
+
208
+ * Jim Fulton contributed time and effort to build automated tests of various
209
+ aspects of ``easy_install``, and supplied the doctests for the command-line
210
+ ``.exe`` wrappers on Windows.
211
+
212
+ * Phillip J. Eby is the seminal author of setuptools, and
213
+ first proposed the idea of an importable binary distribution format for
214
+ Python application plug-ins.
215
+
216
+ * Significant parts of the implementation of setuptools were funded by the Open
217
+ Source Applications Foundation, to provide a plug-in infrastructure for the
218
+ Chandler PIM application. In addition, many OSAF staffers (such as Mike
219
+ "Code Bear" Taylor) contributed their time and stress as guinea pigs for the
220
+ use of eggs and setuptools, even before eggs were "cool". (Thanks, guys!)
221
+
222
+ * Tarek Ziadé is the principal author of the Distribute fork, which
223
+ re-invigorated the community on the project, encouraged renewed innovation,
224
+ and addressed many defects.
225
+
226
+ * Since the merge with Distribute, Jason R. Coombs is the
227
+ maintainer of setuptools. The project is maintained in coordination with
228
+ the Python Packaging Authority (PyPA) and the larger Python community.
229
+
230
+ .. _files:
231
+
232
+
233
+ ---------------
234
+ Code of Conduct
235
+ ---------------
236
+
237
+ Everyone interacting in the setuptools project's codebases, issue trackers,
238
+ chat rooms, and mailing lists is expected to follow the
239
+ `PyPA Code of Conduct`_.
240
+
241
+ .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
242
+
243
+