new_cfoundry 4.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +2 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +11 -0
  8. data/Checkfile +2 -0
  9. data/Gemfile +3 -0
  10. data/LICENSE +987 -0
  11. data/NOTICE +10 -0
  12. data/README.md +9 -0
  13. data/Rakefile +14 -0
  14. data/VERSION +1 -0
  15. data/cfoundry.gemspec +40 -0
  16. data/config/locales/en.yml +168 -0
  17. data/lib/cc_api_stub/app_usage_events.rb +11 -0
  18. data/lib/cc_api_stub/applications.rb +57 -0
  19. data/lib/cc_api_stub/domains.rb +32 -0
  20. data/lib/cc_api_stub/events.rb +11 -0
  21. data/lib/cc_api_stub/frameworks.rb +22 -0
  22. data/lib/cc_api_stub/helper.rb +148 -0
  23. data/lib/cc_api_stub/login.rb +21 -0
  24. data/lib/cc_api_stub/organization_users.rb +27 -0
  25. data/lib/cc_api_stub/organizations.rb +82 -0
  26. data/lib/cc_api_stub/routes.rb +26 -0
  27. data/lib/cc_api_stub/runtimes.rb +22 -0
  28. data/lib/cc_api_stub/service_bindings.rb +22 -0
  29. data/lib/cc_api_stub/service_instances.rb +22 -0
  30. data/lib/cc_api_stub/services.rb +21 -0
  31. data/lib/cc_api_stub/space_users.rb +27 -0
  32. data/lib/cc_api_stub/spaces.rb +58 -0
  33. data/lib/cc_api_stub/users.rb +85 -0
  34. data/lib/cc_api_stub.rb +20 -0
  35. data/lib/cfoundry/auth_token.rb +63 -0
  36. data/lib/cfoundry/baseclient.rb +216 -0
  37. data/lib/cfoundry/chatty_hash.rb +46 -0
  38. data/lib/cfoundry/client.rb +42 -0
  39. data/lib/cfoundry/concerns/login_helpers.rb +14 -0
  40. data/lib/cfoundry/concerns/proxy_options.rb +17 -0
  41. data/lib/cfoundry/errors.rb +163 -0
  42. data/lib/cfoundry/rest_client.rb +317 -0
  43. data/lib/cfoundry/test_support.rb +3 -0
  44. data/lib/cfoundry/trace_helpers.rb +64 -0
  45. data/lib/cfoundry/uaaclient.rb +160 -0
  46. data/lib/cfoundry/upload_helpers.rb +222 -0
  47. data/lib/cfoundry/v2/app.rb +303 -0
  48. data/lib/cfoundry/v2/app_event.rb +13 -0
  49. data/lib/cfoundry/v2/app_instance.rb +74 -0
  50. data/lib/cfoundry/v2/app_usage_event.rb +14 -0
  51. data/lib/cfoundry/v2/base.rb +108 -0
  52. data/lib/cfoundry/v2/client.rb +104 -0
  53. data/lib/cfoundry/v2/domain.rb +20 -0
  54. data/lib/cfoundry/v2/event.rb +17 -0
  55. data/lib/cfoundry/v2/helper.rb +11 -0
  56. data/lib/cfoundry/v2/managed_service_instance.rb +12 -0
  57. data/lib/cfoundry/v2/model.rb +211 -0
  58. data/lib/cfoundry/v2/model_magic/attribute.rb +49 -0
  59. data/lib/cfoundry/v2/model_magic/client_extensions.rb +170 -0
  60. data/lib/cfoundry/v2/model_magic/has_summary.rb +49 -0
  61. data/lib/cfoundry/v2/model_magic/query_multi_value_helper.rb +21 -0
  62. data/lib/cfoundry/v2/model_magic/query_value_helper.rb +33 -0
  63. data/lib/cfoundry/v2/model_magic/queryable_by.rb +39 -0
  64. data/lib/cfoundry/v2/model_magic/to_many.rb +138 -0
  65. data/lib/cfoundry/v2/model_magic/to_one.rb +81 -0
  66. data/lib/cfoundry/v2/model_magic.rb +134 -0
  67. data/lib/cfoundry/v2/organization.rb +44 -0
  68. data/lib/cfoundry/v2/quota_definition.rb +12 -0
  69. data/lib/cfoundry/v2/route.rb +25 -0
  70. data/lib/cfoundry/v2/service.rb +22 -0
  71. data/lib/cfoundry/v2/service_auth_token.rb +9 -0
  72. data/lib/cfoundry/v2/service_binding.rb +10 -0
  73. data/lib/cfoundry/v2/service_broker.rb +12 -0
  74. data/lib/cfoundry/v2/service_instance.rb +14 -0
  75. data/lib/cfoundry/v2/service_plan.rb +16 -0
  76. data/lib/cfoundry/v2/space.rb +30 -0
  77. data/lib/cfoundry/v2/stack.rb +10 -0
  78. data/lib/cfoundry/v2/user.rb +93 -0
  79. data/lib/cfoundry/v2/user_provided_service_instance.rb +15 -0
  80. data/lib/cfoundry/validator.rb +41 -0
  81. data/lib/cfoundry/version.rb +4 -0
  82. data/lib/cfoundry/zip.rb +56 -0
  83. data/lib/cfoundry.rb +5 -0
  84. data/release_notes/release_1_5_3.md +177 -0
  85. data/release_notes/release_2.3.1.md +14 -0
  86. data/release_notes/release_2.3.3.md +38 -0
  87. data/release_notes/release_2.3.4.md +16 -0
  88. data/release_notes/release_2.3.5.md +14 -0
  89. data/release_notes/release_2.3.6.md +14 -0
  90. data/release_notes/release_2.3.6.rc1.md +29 -0
  91. data/release_notes/release_2.3.6.rc2.md +19 -0
  92. data/release_notes/release_2.3.7.rc1.md +14 -0
  93. data/release_notes/release_2.4.0.md +41 -0
  94. data/release_notes/release_2.4.1.rc1.md +58 -0
  95. data/release_notes/release_3.0.0.md +21 -0
  96. data/release_notes/release_3.0.1.md +16 -0
  97. data/release_notes/release_3.0.2.rc1.md +19 -0
  98. data/release_notes/release_4.0.0.md +19 -0
  99. data/release_notes/release_4.0.1.md +14 -0
  100. data/release_notes/release_4.0.2.rc1.md +14 -0
  101. data/release_notes/release_4.0.2.rc2.md +11 -0
  102. data/release_notes/release_4.0.2.rc3.md +11 -0
  103. data/release_notes/release_4.0.2.rc4.md +19 -0
  104. data/release_notes/release_4.0.2.rc5.md +14 -0
  105. data/release_notes/release_4.0.3.md +19 -0
  106. data/release_notes/release_4.0.4.rc1.md +14 -0
  107. data/release_notes/release_4.0.4.rc2.md +14 -0
  108. data/release_notes/release_4.1.0.md +19 -0
  109. data/release_notes/release_4.2.0.rc.md +24 -0
  110. data/release_notes/release_4.3.0.md +22 -0
  111. data/release_notes/release_4.3.1.md +14 -0
  112. data/release_notes/release_4.3.10.md +14 -0
  113. data/release_notes/release_4.3.11.md +14 -0
  114. data/release_notes/release_4.3.12.md +14 -0
  115. data/release_notes/release_4.3.2.rc1.md +21 -0
  116. data/release_notes/release_4.3.3.md +24 -0
  117. data/release_notes/release_4.3.4.md +11 -0
  118. data/release_notes/release_4.3.4.rc1.md +24 -0
  119. data/release_notes/release_4.3.5.md +36 -0
  120. data/release_notes/release_4.3.5.rc1.md +21 -0
  121. data/release_notes/release_4.3.6.md +14 -0
  122. data/release_notes/release_4.3.7.md +50 -0
  123. data/release_notes/release_4.3.8.md +19 -0
  124. data/release_notes/release_4.3.9.md +14 -0
  125. data/release_notes/release_4.4.0.md +16 -0
  126. data/release_notes/release_4.5.1.md +11 -0
  127. data/release_notes/release_4.5.2.md +14 -0
  128. data/release_notes/release_4.5.3.md +29 -0
  129. data/release_notes/release_4.6.0.md +24 -0
  130. data/release_notes/release_4.6.1.md +14 -0
  131. data/release_notes/release_4.6.2.md +16 -0
  132. data/release_notes/release_4.6.3.rc1.md +14 -0
  133. data/release_notes/release_4.6.3.rc2.md +14 -0
  134. data/release_notes/release_4.6.3.rc3.md +17 -0
  135. data/release_notes/release_4.7.0.md +11 -0
  136. data/release_notes/release_4.7.1.md +14 -0
  137. data/release_notes/release_4.7.1.rc.1.md +14 -0
  138. data/release_notes/release_4.7.1.rc1.md +19 -0
  139. data/script/gpp +3 -0
  140. data/spec/cc_api_stub/app_usage_events_spec.rb +12 -0
  141. data/spec/cc_api_stub/applications_spec.rb +69 -0
  142. data/spec/cc_api_stub/domains_spec.rb +40 -0
  143. data/spec/cc_api_stub/events_spec.rb +12 -0
  144. data/spec/cc_api_stub/frameworks_spec.rb +19 -0
  145. data/spec/cc_api_stub/login_spec.rb +20 -0
  146. data/spec/cc_api_stub/organization_users_spec.rb +35 -0
  147. data/spec/cc_api_stub/organizations_spec.rb +118 -0
  148. data/spec/cc_api_stub/routes_spec.rb +19 -0
  149. data/spec/cc_api_stub/runtimes_spec.rb +19 -0
  150. data/spec/cc_api_stub/service_bindings_spec.rb +13 -0
  151. data/spec/cc_api_stub/service_instances_spec.rb +19 -0
  152. data/spec/cc_api_stub/services_spec.rb +11 -0
  153. data/spec/cc_api_stub/space_users_spec.rb +35 -0
  154. data/spec/cc_api_stub/spaces_spec.rb +38 -0
  155. data/spec/cc_api_stub/users_spec.rb +107 -0
  156. data/spec/cfoundry/auth_token_spec.rb +154 -0
  157. data/spec/cfoundry/baseclient_spec.rb +298 -0
  158. data/spec/cfoundry/client_spec.rb +13 -0
  159. data/spec/cfoundry/errors_spec.rb +117 -0
  160. data/spec/cfoundry/rest_client_spec.rb +349 -0
  161. data/spec/cfoundry/trace_helpers_spec.rb +91 -0
  162. data/spec/cfoundry/uaaclient_spec.rb +435 -0
  163. data/spec/cfoundry/upload_helpers_spec.rb +182 -0
  164. data/spec/cfoundry/v2/app_event_spec.rb +97 -0
  165. data/spec/cfoundry/v2/app_instance_spec.rb +31 -0
  166. data/spec/cfoundry/v2/app_spec.rb +354 -0
  167. data/spec/cfoundry/v2/app_usage_event_spec.rb +15 -0
  168. data/spec/cfoundry/v2/base_spec.rb +375 -0
  169. data/spec/cfoundry/v2/client_spec.rb +121 -0
  170. data/spec/cfoundry/v2/domain_spec.rb +63 -0
  171. data/spec/cfoundry/v2/event_spec.rb +15 -0
  172. data/spec/cfoundry/v2/managed_service_instance_spec.rb +149 -0
  173. data/spec/cfoundry/v2/model_magic/attribute_spec.rb +123 -0
  174. data/spec/cfoundry/v2/model_magic/has_summary_spec.rb +17 -0
  175. data/spec/cfoundry/v2/model_magic/to_many_spec.rb +53 -0
  176. data/spec/cfoundry/v2/model_magic/to_one_spec.rb +106 -0
  177. data/spec/cfoundry/v2/model_magic_spec.rb +43 -0
  178. data/spec/cfoundry/v2/model_spec.rb +434 -0
  179. data/spec/cfoundry/v2/organization_spec.rb +135 -0
  180. data/spec/cfoundry/v2/quota_definition_spec.rb +50 -0
  181. data/spec/cfoundry/v2/route_spec.rb +42 -0
  182. data/spec/cfoundry/v2/service_plan_spec.rb +53 -0
  183. data/spec/cfoundry/v2/service_spec.rb +58 -0
  184. data/spec/cfoundry/v2/space_spec.rb +13 -0
  185. data/spec/cfoundry/v2/user_provided_service_instance_spec.rb +57 -0
  186. data/spec/cfoundry/v2/user_spec.rb +206 -0
  187. data/spec/cfoundry/validator_spec.rb +94 -0
  188. data/spec/factories/app_events_factory.rb +7 -0
  189. data/spec/factories/app_usage_events_factory.rb +32 -0
  190. data/spec/factories/apps_factory.rb +11 -0
  191. data/spec/factories/clients_factory.rb +7 -0
  192. data/spec/factories/domains_factory.rb +10 -0
  193. data/spec/factories/events_factory.rb +50 -0
  194. data/spec/factories/organizations_factory.rb +12 -0
  195. data/spec/factories/quota_definitions_factory.rb +8 -0
  196. data/spec/factories/routes_factory.rb +10 -0
  197. data/spec/factories/service_instances_factory.rb +10 -0
  198. data/spec/factories/service_plans_factory.rb +10 -0
  199. data/spec/factories/services_factory.rb +10 -0
  200. data/spec/factories/spaces_factory.rb +10 -0
  201. data/spec/factories/user_provided_service_instances_factory.rb +10 -0
  202. data/spec/factories/users_factory.rb +10 -0
  203. data/spec/fixtures/apps/with_cfignore/.cfignore +4 -0
  204. data/spec/fixtures/apps/with_cfignore/.hidden_file +1 -0
  205. data/spec/fixtures/apps/with_cfignore/ambiguous_ignored +0 -0
  206. data/spec/fixtures/apps/with_cfignore/ignored_dir/file_in_ignored_dir.txt +1 -0
  207. data/spec/fixtures/apps/with_cfignore/ignored_file.txt +1 -0
  208. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/file_in_non_ignored_dir.txt +1 -0
  209. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/ignored_file.txt +1 -0
  210. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/toplevel_ignored.txt +0 -0
  211. data/spec/fixtures/apps/with_cfignore/non_ignored_file.txt +1 -0
  212. data/spec/fixtures/apps/with_cfignore/toplevel_ignored.txt +0 -0
  213. data/spec/fixtures/apps/with_dotfiles/.dotfile +1 -0
  214. data/spec/fixtures/apps/with_dotfiles/xyz +1 -0
  215. data/spec/fixtures/apps/with_external_symlink/foo +1 -0
  216. data/spec/fixtures/apps/with_ignored_external_symlink/.cfignore +1 -0
  217. data/spec/fixtures/apps/with_ignored_external_symlink/foo +1 -0
  218. data/spec/fixtures/apps/with_nested_directories/foo/bar/baz/fizz +0 -0
  219. data/spec/fixtures/apps/with_nested_directories/xyz +0 -0
  220. data/spec/fixtures/empty_file +0 -0
  221. data/spec/fixtures/fake_cc_app_usage_events.json +152 -0
  222. data/spec/fixtures/fake_cc_application.json +20 -0
  223. data/spec/fixtures/fake_cc_application_summary.json +56 -0
  224. data/spec/fixtures/fake_cc_created_application.json +11 -0
  225. data/spec/fixtures/fake_cc_created_domain.json +15 -0
  226. data/spec/fixtures/fake_cc_created_organization.json +11 -0
  227. data/spec/fixtures/fake_cc_created_route.json +13 -0
  228. data/spec/fixtures/fake_cc_created_service_instance.json +11 -0
  229. data/spec/fixtures/fake_cc_created_space.json +11 -0
  230. data/spec/fixtures/fake_cc_created_user.json +11 -0
  231. data/spec/fixtures/fake_cc_domain.json +55 -0
  232. data/spec/fixtures/fake_cc_domain_spaces.json +27 -0
  233. data/spec/fixtures/fake_cc_empty_search.json +7 -0
  234. data/spec/fixtures/fake_cc_events.json +419 -0
  235. data/spec/fixtures/fake_cc_frameworks.json +20 -0
  236. data/spec/fixtures/fake_cc_managed_service_instance.json +83 -0
  237. data/spec/fixtures/fake_cc_organization.json +161 -0
  238. data/spec/fixtures/fake_cc_organization_domains.json +59 -0
  239. data/spec/fixtures/fake_cc_organization_search.json +37 -0
  240. data/spec/fixtures/fake_cc_organization_spaces.json +99 -0
  241. data/spec/fixtures/fake_cc_organization_summary.json +20 -0
  242. data/spec/fixtures/fake_cc_organization_users.json +81 -0
  243. data/spec/fixtures/fake_cc_route.json +16 -0
  244. data/spec/fixtures/fake_cc_runtimes.json +20 -0
  245. data/spec/fixtures/fake_cc_service_binding.json +22 -0
  246. data/spec/fixtures/fake_cc_service_bindings.json +24 -0
  247. data/spec/fixtures/fake_cc_service_instance.json +83 -0
  248. data/spec/fixtures/fake_cc_service_instances.json +72 -0
  249. data/spec/fixtures/fake_cc_services.json +160 -0
  250. data/spec/fixtures/fake_cc_space.json +45 -0
  251. data/spec/fixtures/fake_cc_space_apps.json +49 -0
  252. data/spec/fixtures/fake_cc_space_summary.json +84 -0
  253. data/spec/fixtures/fake_cc_spaces.json +92 -0
  254. data/spec/fixtures/fake_cc_stats.json +29 -0
  255. data/spec/fixtures/fake_cc_user.json +139 -0
  256. data/spec/fixtures/fake_cc_user_organizations.json +92 -0
  257. data/spec/fixtures/fake_cc_user_provided_service_instance.json +51 -0
  258. data/spec/fixtures/fake_cc_user_with_managers.json +85 -0
  259. data/spec/integration/client_spec.rb +38 -0
  260. data/spec/spec_helper.rb +22 -0
  261. data/spec/support/factory_girl.rb +6 -0
  262. data/spec/support/shared_examples/cc_api_stub_request_examples.rb +79 -0
  263. data/spec/support/shared_examples/client_login_examples.rb +46 -0
  264. data/spec/support/shared_examples/model_summary_examples.rb +34 -0
  265. data/spec/support/test_model_builder.rb +10 -0
  266. data/vendor/errors/README.md +4 -0
  267. data/vendor/errors/v1.yml +189 -0
  268. data/vendor/errors/v2.yml +384 -0
  269. metadata +693 -0
data/LICENSE ADDED
@@ -0,0 +1,987 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
204
+ =======================================================================
205
+
206
+
207
+ cf-cfoundry:
208
+
209
+ cf-cfoundry: includes a number of subcomponents with separate copyright
210
+ notices and license terms. The product that includes this file
211
+ does not necessarily use all the open source subcomponents referred
212
+ to below. Your use of the source code for the these subcomponents
213
+ is subject to the terms and conditions of the following licenses.
214
+
215
+ SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES
216
+
217
+ >>> builder-3.0.4
218
+ >>> diff-lcs-1.2.4
219
+ >>> factory_girl-4.2.0
220
+ >>> gem-release-0.6.0
221
+ >>> git-1.2.5
222
+ >>> hashie-2.0.5
223
+ >>> i18n-0.6.4
224
+ >>> metaclass-0.0.1
225
+ >>> multipart-post-1.2.0
226
+ >>> rake-10.1.0
227
+ >>> shoulda-matchers-1.5.6
228
+ >>> thor-0.18.1
229
+
230
+
231
+
232
+ SECTION 2: Apache License, V2.0
233
+
234
+ >>> addressable-2.3.5
235
+ >>> cf-uaa-lib-1.3.10
236
+
237
+
238
+
239
+ SECTION 3: Ruby Clause-6
240
+
241
+ >>> highline-1.5.2
242
+ >>> json-1.4.6
243
+ >>> json_pure-1.8.0
244
+ >>> rubyzip-0.9.9
245
+
246
+
247
+
248
+ APPENDIX. Standard License Files
249
+
250
+ >>> Ruby Clause-6
251
+
252
+
253
+
254
+
255
+ --------------- SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES ----------
256
+
257
+ BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES are applicable to the following component(s).
258
+
259
+
260
+ >>> builder-3.0.4
261
+
262
+ Copyright (c) 2003-2012 Jim Weirich (jim.weirich@gmail.com)
263
+
264
+ Permission is hereby granted, free of charge, to any person obtaining
265
+ a copy of this software and associated documentation files (the
266
+ "Software"), to deal in the Software without restriction, including
267
+ without limitation the rights to use, copy, modify, merge, publish,
268
+ distribute, sublicense, and/or sell copies of the Software, and to
269
+ permit persons to whom the Software is furnished to do so, subject to
270
+ the following conditions:
271
+
272
+ The above copyright notice and this permission notice shall be
273
+ included in all copies or substantial portions of the Software.
274
+
275
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
276
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
277
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
278
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
279
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
280
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
281
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
282
+
283
+
284
+ >>> diff-lcs-1.2.4
285
+
286
+ [PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. PLEASE SEE BELOW FOR THE FULL TEXT OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
287
+
288
+ == License
289
+
290
+ This software is available under three licenses: the GNU GPL version 2 (or at
291
+ your option, a later version), the Perl Artistic license, or the MIT license.
292
+ Note that my preference for licensing is the MIT license, but Algorithm::Diff
293
+ was dually originally licensed with the Perl Artistic and the GNU GPL ("the
294
+ same terms as Perl itself") and given that the Ruby implementation originally
295
+ hewed pretty closely to the Perl version, I must maintain the additional
296
+ licensing terms.
297
+
298
+ * Copyright 20042013 Austin Ziegler.
299
+ * Adapted from Algorithm::Diff (Perl) by Ned Konz and a Smalltalk version by
300
+ Mario I. Wolczko.
301
+
302
+ === MIT License
303
+
304
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
305
+ this software and associated documentation files (the "Software"), to deal in
306
+ the Software without restriction, including without limitation the rights to
307
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
308
+ of the Software, and to permit persons to whom the Software is furnished to do
309
+ so, subject to the following conditions:
310
+
311
+ The above copyright notice and this permission notice shall be included in all
312
+ copies or substantial portions of the Software.
313
+
314
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
315
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
316
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
317
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
318
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
319
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
320
+ SOFTWARE.
321
+
322
+ === Perl Artistic License (version 2)
323
+ See the file docs/artistic.txt in the main distribution.
324
+
325
+ === GNU GPL version 2
326
+ See the file docs/COPYING.txt in the main distribution.
327
+
328
+
329
+ >>> factory_girl-4.2.0
330
+
331
+ Copyright (c) 2008-2013 Joe Ferris and thoughtbot, inc.
332
+
333
+ Permission is hereby granted, free of charge, to any person obtaining a copy
334
+ of this software and associated documentation files (the "Software"), to deal
335
+ in the Software without restriction, including without limitation the rights
336
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
337
+ copies of the Software, and to permit persons to whom the Software is
338
+ furnished to do so, subject to the following conditions:
339
+
340
+ The above copyright notice and this permission notice shall be included in
341
+ all copies or substantial portions of the Software.
342
+
343
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
344
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
345
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
346
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
347
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
348
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
349
+ THE SOFTWARE.
350
+
351
+
352
+ >>> gem-release-0.6.0
353
+
354
+ MIT LICENSE
355
+
356
+ Copyright (c) <% year %> <%= author %> <<%= email %>>
357
+
358
+ Permission is hereby granted, free of charge, to any person obtaining a copy
359
+ of this software and associated documentation files (the "Software"), to deal
360
+ in the Software without restriction, including without limitation the rights
361
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
362
+ copies of the Software, and to permit persons to whom the Software is
363
+ furnished to do so, subject to the following conditions:
364
+
365
+ The above copyright notice and this permission notice shall be included in
366
+ all copies or substantial portions of the Software.
367
+
368
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
369
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
370
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
371
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
372
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
373
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
374
+ THE SOFTWARE.
375
+
376
+
377
+ >>> git-1.2.5
378
+
379
+ Copyright (c) 2008 Scott Chacon
380
+
381
+ Permission is hereby granted, free of charge, to any person obtaining a copy
382
+ of this software and associated documentation files (the "Software"), to deal
383
+ in the Software without restriction, including without limitation the rights
384
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
385
+ copies of the Software, and to permit persons to whom the Software is
386
+ furnished to do so, subject to the following conditions:
387
+
388
+ The above copyright notice and this permission notice shall be included in
389
+ all copies or substantial portions of the Software.
390
+
391
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
392
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
393
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
394
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
395
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
396
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
397
+ THE SOFTWARE.
398
+
399
+
400
+ >>> hashie-2.0.5
401
+
402
+ Copyright (c) 2009 Intridea, Inc.
403
+
404
+ Permission is hereby granted, free of charge, to any person obtaining
405
+ a copy of this software and associated documentation files (the
406
+ "Software"), to deal in the Software without restriction, including
407
+ without limitation the rights to use, copy, modify, merge, publish,
408
+ distribute, sublicense, and/or sell copies of the Software, and to
409
+ permit persons to whom the Software is furnished to do so, subject to
410
+ the following conditions:
411
+
412
+ The above copyright notice and this permission notice shall be
413
+ included in all copies or substantial portions of the Software.
414
+
415
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
416
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
417
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
418
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
419
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
420
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
421
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
422
+
423
+
424
+ >>> i18n-0.6.4
425
+
426
+ Copyright (c) 2008 The Ruby I18n team
427
+
428
+ Permission is hereby granted, free of charge, to any person obtaining
429
+ a copy of this software and associated documentation files (the
430
+ "Software"), to deal in the Software without restriction, including
431
+ without limitation the rights to use, copy, modify, merge, publish,
432
+ distribute, sublicense, and/or sell copies of the Software, and to
433
+ permit persons to whom the Software is furnished to do so, subject to
434
+ the following conditions:
435
+
436
+ The above copyright notice and this permission notice shall be
437
+ included in all copies or substantial portions of the Software.
438
+
439
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
440
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
441
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
442
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
443
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
444
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
445
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
446
+
447
+
448
+ ADDITIONAL LICENSE INFORMATION:
449
+
450
+ > Ruby License
451
+
452
+ i18n-0.6.1.gem.tar\data.tar.gz\data.tar\lib\i18n\gettext\po_parser.rb
453
+
454
+ Copyright (C) 2003-2009 Masao Mutoh <mutoh at highway.ne.jp>
455
+
456
+ You may redistribute it and/or modify it under the same
457
+ license terms as Ruby.
458
+
459
+ 1. You may make and give away verbatim copies of the source form of the
460
+ software without restriction, provided that you duplicate all of the
461
+ original copyright notices and associated disclaimers.
462
+
463
+ 2. You may modify your copy of the software in any way, provided that
464
+ you do at least ONE of the following:
465
+
466
+ a) place your modifications in the Public Domain or otherwise
467
+ make them Freely Available, such as by posting said
468
+ modifications to Usenet or an equivalent medium, or by allowing
469
+ the author to include your modifications in the software.
470
+
471
+ b) use the modified software only within your corporation or
472
+ organization.
473
+
474
+ c) give non-standard binaries non-standard names, with
475
+ instructions on where to get the original software distribution.
476
+
477
+ d) make other distribution arrangements with the author.
478
+
479
+ 3. You may distribute the software in object code or binary form,
480
+ provided that you do at least ONE of the following:
481
+
482
+ a) distribute the binaries and library files of the software,
483
+ together with instructions (in the manual page or equivalent)
484
+ on where to get the original distribution.
485
+
486
+ b) accompany the distribution with the machine-readable source of
487
+ the software.
488
+
489
+ c) give non-standard binaries non-standard names, with
490
+ instructions on where to get the original software distribution.
491
+
492
+ d) make other distribution arrangements with the author.
493
+
494
+ 4. You may modify and include the part of the software into any other
495
+ software (possibly commercial). But some files in the distribution
496
+ are not written by the author, so that they are not under these terms.
497
+
498
+ For the list of those files and their copying conditions, see the
499
+ file LEGAL.
500
+
501
+ 5. The scripts and library files supplied as input to or produced as
502
+ output from the software do not automatically fall under the
503
+ copyright of the software, but belong to whomever generated them,
504
+ and may be sold commercially, and may be aggregated with this
505
+ software.
506
+
507
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
508
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
509
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
510
+ PURPOSE.
511
+
512
+
513
+ >>> metaclass-0.0.1
514
+
515
+ == Licence (MIT)
516
+
517
+ Copyright (c) 2011 James Mead
518
+
519
+ Permission is hereby granted, free of charge, to any person obtaining a copy
520
+ of this software and associated documentation files (the "Software"), to deal
521
+ in the Software without restriction, including without limitation the rights
522
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
523
+ copies of the Software, and to permit persons to whom the Software is
524
+ furnished to do so, subject to the following conditions:
525
+
526
+ The above copyright notice and this permission notice shall be included in all
527
+ copies or substantial portions of the Software.
528
+
529
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
530
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
531
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
532
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
533
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
534
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
535
+ SOFTWARE.
536
+
537
+
538
+ >>> multipart-post-1.2.0
539
+
540
+ Copyright (c) 2007-2012 Nick Sieger nick@nicksieger.com
541
+
542
+ Permission is hereby granted, free of charge, to any person obtaining
543
+ a copy of this software and associated documentation files (the
544
+ 'Software'), to deal in the Software without restriction, including
545
+ without limitation the rights to use, copy, modify, merge, publish,
546
+ distribute, sublicense, and/or sell copies of the Software, and to
547
+ permit persons to whom the Software is furnished to do so, subject to
548
+ the following conditions:
549
+
550
+ The above copyright notice and this permission notice shall be
551
+ included in all copies or substantial portions of the Software.
552
+
553
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
554
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
555
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
556
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
557
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
558
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
559
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
560
+
561
+
562
+ >>> rake-10.1.0
563
+
564
+ Copyright (c) 2003, 2004 Jim Weirich
565
+
566
+ Permission is hereby granted, free of charge, to any person obtaining
567
+ a copy of this software and associated documentation files (the
568
+ "Software"), to deal in the Software without restriction, including
569
+ without limitation the rights to use, copy, modify, merge, publish,
570
+ distribute, sublicense, and/or sell copies of the Software, and to
571
+ permit persons to whom the Software is furnished to do so, subject to
572
+ the following conditions:
573
+
574
+ The above copyright notice and this permission notice shall be
575
+ included in all copies or substantial portions of the Software.
576
+
577
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
578
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
579
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
580
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
581
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
582
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
583
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
584
+
585
+
586
+ >>> shoulda-matchers-1.5.6
587
+
588
+ Copyright (c) 2006-2013, Tammer Saleh, thoughtbot, inc.
589
+
590
+ Permission is hereby granted, free of charge, to any person
591
+ obtaining a copy of this software and associated documentation
592
+ files (the "Software"), to deal in the Software without
593
+ restriction, including without limitation the rights to use,
594
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
595
+ copies of the Software, and to permit persons to whom the
596
+ Software is furnished to do so, subject to the following
597
+ conditions:
598
+
599
+ The above copyright notice and this permission notice shall be
600
+ included in all copies or substantial portions of the Software.
601
+
602
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
603
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
604
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
605
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
606
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
607
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
608
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
609
+ OTHER DEALINGS IN THE SOFTWARE.
610
+
611
+
612
+ >>> thor-0.18.1
613
+
614
+ Copyright (c) 2008 Yehuda Katz, Eric Hodel, et al.
615
+
616
+ Permission is hereby granted, free of charge, to any person obtaining
617
+ a copy of this software and associated documentation files (the
618
+ "Software"), to deal in the Software without restriction, including
619
+ without limitation the rights to use, copy, modify, merge, publish,
620
+ distribute, sublicense, and/or sell copies of the Software, and to
621
+ permit persons to whom the Software is furnished to do so, subject to
622
+ the following conditions:
623
+
624
+ The above copyright notice and this permission notice shall be
625
+ included in all copies or substantial portions of the Software.
626
+
627
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
628
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
629
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
630
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
631
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
632
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
633
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
634
+
635
+
636
+ --------------- SECTION 2: Apache License, V2.0 ----------
637
+
638
+ Apache License, V2.0 is applicable to the following component(s).
639
+
640
+
641
+ >>> addressable-2.3.5
642
+
643
+ coding: utf-8
644
+ Copyright (C) 2006-2013 Bob Aman
645
+
646
+ Licensed under the Apache License, Version 2.0 (the "License");
647
+ you may not use this file except in compliance with the License.
648
+ You may obtain a copy of the License at
649
+
650
+ http://www.apache.org/licenses/LICENSE-2.0
651
+
652
+ Unless required by applicable law or agreed to in writing, software
653
+ distributed under the License is distributed on an "AS IS" BASIS,
654
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
655
+ See the License for the specific language governing permissions and
656
+ limitations under the License.
657
+
658
+
659
+ >>> cf-uaa-lib-1.3.10
660
+
661
+ Cloud Foundry 2012.02.03 Beta
662
+ Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
663
+
664
+ This product is licensed to you under the Apache License, Version 2.0 (the "License").
665
+ You may not use this product except in compliance with the License.
666
+
667
+ This product includes a number of subcomponents with
668
+ separate copyright notices and license terms. Your use of these
669
+ subcomponents is subject to the terms and conditions of the
670
+ subcomponent's license, as noted in the LICENSE file.
671
+
672
+
673
+ --------------- SECTION 3: Ruby Clause-6 ----------
674
+
675
+ Ruby Clause-6 is applicable to the following component(s).
676
+
677
+
678
+ >>> highline-1.5.2
679
+
680
+ [PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY LICENSE. PLEASE SEE BELOW FOR THE FULL TEXT OF THE RUBY LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
681
+
682
+
683
+ Created by James Edward Gray II on 2005-04-26.
684
+ Copyright 2005 Gray Productions. All rights reserved.
685
+
686
+ License Terms
687
+
688
+ Distributed under the user's choice of the {GPL Version 2}[http://www.gnu.org/licenses/old-licenses/gpl-2.0.html] (see COPYING for details) or the
689
+ {Ruby software license}[http://www.ruby-lang.org/en/LICENSE.txt] by
690
+ James Edward Gray II and Greg Brown.
691
+
692
+ Please email James[mailto:james@grayproductions.net] with any questions.
693
+
694
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
695
+ You can redistribute it and/or modify it under either the terms of the GPL
696
+ (see COPYING.txt file), or the conditions below:
697
+
698
+ 1. You may make and give away verbatim copies of the source form of the
699
+ software without restriction, provided that you duplicate all of the
700
+ original copyright notices and associated disclaimers.
701
+
702
+ 2. You may modify your copy of the software in any way, provided that
703
+ you do at least ONE of the following:
704
+
705
+ a) place your modifications in the Public Domain or otherwise
706
+ make them Freely Available, such as by posting said
707
+ modifications to Usenet or an equivalent medium, or by allowing
708
+ the author to include your modifications in the software.
709
+
710
+ b) use the modified software only within your corporation or
711
+ organization.
712
+
713
+ c) rename any non-standard executables so the names do not conflict
714
+ with standard executables, which must also be provided.
715
+
716
+ d) make other distribution arrangements with the author.
717
+
718
+ 3. You may distribute the software in object code or executable
719
+ form, provided that you do at least ONE of the following:
720
+
721
+ a) distribute the executables and library files of the software,
722
+ together with instructions (in the manual page or equivalent)
723
+ on where to get the original distribution.
724
+
725
+ b) accompany the distribution with the machine-readable source of
726
+ the software.
727
+
728
+ c) give non-standard executables non-standard names, with
729
+ instructions on where to get the original software distribution.
730
+
731
+ d) make other distribution arrangements with the author.
732
+
733
+ 4. You may modify and include the part of the software into any other
734
+ software (possibly commercial). But some files in the distribution
735
+ are not written by the author, so that they are not under this terms.
736
+
737
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
738
+ files under the ./missing directory. See each file for the copying
739
+ condition.
740
+
741
+ 5. The scripts and library files supplied as input to or produced as
742
+ output from the software do not automatically fall under the
743
+ copyright of the software, but belong to whomever generated them,
744
+ and may be sold commercially, and may be aggregated with this
745
+ software.
746
+
747
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
748
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
749
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
750
+ PURPOSE.
751
+
752
+
753
+ >>> json-1.4.6
754
+
755
+ [PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBY CLAUSE-6 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE RUBY CLAUSE-6 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
756
+
757
+ License
758
+
759
+ This is software is distributed under the same license as Ruby itself. See http://www.ruby-lang.org/en/LICENSE.txt.
760
+
761
+
762
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
763
+ You can redistribute it and/or modify it under either the terms of the GPL
764
+ (see COPYING.txt file), or the conditions below:
765
+
766
+ 1. You may make and give away verbatim copies of the source form of the
767
+ software without restriction, provided that you duplicate all of the
768
+ original copyright notices and associated disclaimers.
769
+
770
+ 2. You may modify your copy of the software in any way, provided that
771
+ you do at least ONE of the following:
772
+
773
+ a) place your modifications in the Public Domain or otherwise
774
+ make them Freely Available, such as by posting said
775
+ modifications to Usenet or an equivalent medium, or by allowing
776
+ the author to include your modifications in the software.
777
+
778
+ b) use the modified software only within your corporation or
779
+ organization.
780
+
781
+ c) rename any non-standard executables so the names do not conflict
782
+ with standard executables, which must also be provided.
783
+
784
+ d) make other distribution arrangements with the author.
785
+
786
+ 3. You may distribute the software in object code or executable
787
+ form, provided that you do at least ONE of the following:
788
+
789
+ a) distribute the executables and library files of the software,
790
+ together with instructions (in the manual page or equivalent)
791
+ on where to get the original distribution.
792
+
793
+ b) accompany the distribution with the machine-readable source of
794
+ the software.
795
+
796
+ c) give non-standard executables non-standard names, with
797
+ instructions on where to get the original software distribution.
798
+
799
+ d) make other distribution arrangements with the author.
800
+
801
+ 4. You may modify and include the part of the software into any other
802
+ software (possibly commercial). But some files in the distribution
803
+ are not written by the author, so that they are not under this terms.
804
+
805
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
806
+ files under the ./missing directory. See each file for the copying
807
+ condition.
808
+
809
+ 5. The scripts and library files supplied as input to or produced as
810
+ output from the software do not automatically fall under the
811
+ copyright of the software, but belong to whomever generated them,
812
+ and may be sold commercially, and may be aggregated with this
813
+ software.
814
+
815
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
816
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
817
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
818
+ PURPOSE.
819
+
820
+
821
+ >>> json_pure-1.8.0
822
+
823
+ [PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE RUBYCLAUSE-6 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE RUBYCLAUSE-6 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE]
824
+
825
+ This code is copyrighted work by Daniel Luz <dev at mernen dot com>.
826
+
827
+ Distributed under the Ruby and GPLv2 licenses; see COPYING and GPL files
828
+ for details.
829
+
830
+
831
+ >>> rubyzip-0.9.9
832
+
833
+ License
834
+
835
+ rubyzip is distributed under the same license as ruby. See
836
+ http://www.ruby-lang.org/en/LICENSE.txt
837
+
838
+ [PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE Ruby Clause-6. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE Ruby Clause-6. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
839
+
840
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
841
+ You can redistribute it and/or modify it under either the terms of the
842
+ 2-clause BSDL (see the file BSDL), or the conditions below:
843
+
844
+ 1. You may make and give away verbatim copies of the source form of the
845
+ software without restriction, provided that you duplicate all of the
846
+ original copyright notices and associated disclaimers.
847
+
848
+ 2. You may modify your copy of the software in any way, provided that
849
+ you do at least ONE of the following:
850
+
851
+ a) place your modifications in the Public Domain or otherwise
852
+ make them Freely Available, such as by posting said
853
+ modifications to Usenet or an equivalent medium, or by allowing
854
+ the author to include your modifications in the software.
855
+
856
+ b) use the modified software only within your corporation or
857
+ organization.
858
+
859
+ c) give non-standard binaries non-standard names, with
860
+ instructions on where to get the original software distribution.
861
+
862
+ d) make other distribution arrangements with the author.
863
+
864
+ 3. You may distribute the software in object code or binary form,
865
+ provided that you do at least ONE of the following:
866
+
867
+ a) distribute the binaries and library files of the software,
868
+ together with instructions (in the manual page or equivalent)
869
+ on where to get the original distribution.
870
+
871
+ b) accompany the distribution with the machine-readable source of
872
+ the software.
873
+
874
+ c) give non-standard binaries non-standard names, with
875
+ instructions on where to get the original software distribution.
876
+
877
+ d) make other distribution arrangements with the author.
878
+
879
+ 4. You may modify and include the part of the software into any other
880
+ software (possibly commercial). But some files in the distribution
881
+ are not written by the author, so that they are not under these terms.
882
+
883
+ For the list of those files and their copying conditions, see the
884
+ file LEGAL.
885
+
886
+ 5. The scripts and library files supplied as input to or produced as
887
+ output from the software do not automatically fall under the
888
+ copyright of the software, but belong to whomever generated them,
889
+ and may be sold commercially, and may be aggregated with this
890
+ software.
891
+
892
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
893
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
894
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
895
+ PURPOSE.
896
+
897
+
898
+ =============== APPENDIX. Standard License Files ==============
899
+
900
+
901
+
902
+ --------------- SECTION 1: Ruby Clause-6 -----------
903
+
904
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
905
+ You can redistribute it and/or modify it under either the terms of the GPL
906
+ (see COPYING.txt file), or the conditions below:
907
+
908
+ 1. You may make and give away verbatim copies of the source form of the
909
+ software without restriction, provided that you duplicate all of the
910
+ original copyright notices and associated disclaimers.
911
+
912
+
913
+ 2. You may modify your copy of the software in any way, provided that
914
+ you do at least ONE of the following:
915
+
916
+ a) place your modifications in the Public Domain or otherwise
917
+ make them Freely Available, such as by posting said
918
+ modifications to Usenet or an equivalent medium, or by allowing
919
+ the author to include your modifications in the software.
920
+
921
+ b) use the modified software only within your corporation or
922
+ organization.
923
+
924
+ c) rename any non-standard executables so the names do not conflict
925
+ with standard executables, which must also be provided.
926
+
927
+ d) make other distribution arrangements with the author.
928
+
929
+
930
+ 3. You may distribute the software in object code or executable
931
+ form, provided that you do at least ONE of the following:
932
+
933
+ a) distribute the executables and library files of the software,
934
+ together with instructions (in the manual page or equivalent)
935
+ on where to get the original distribution.
936
+
937
+ b) accompany the distribution with the machine-readable source of
938
+ the software.
939
+
940
+ c) give non-standard executables non-standard names, with
941
+ instructions on where to get the original software distribution.
942
+
943
+ d) make other distribution arrangements with the author.
944
+
945
+
946
+ 4. You may modify and include the part of the software into any other
947
+ software (possibly commercial). But some files in the distribution
948
+ are not written by the author, so that they are not under this terms.
949
+
950
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
951
+ files under the ./missing directory. See each file for the copying
952
+ condition.
953
+
954
+
955
+ 5. The scripts and library files supplied as input to or produced as
956
+ output from the software do not automatically fall under the
957
+ copyright of the software, but belong to whomever generated them,
958
+ and may be sold commercially, and may be aggregated with this
959
+ software.
960
+
961
+
962
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
963
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
964
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
965
+ PURPOSE.
966
+
967
+
968
+ ===========================================================================
969
+
970
+ To the extent any open source components are licensed under the
971
+ GPL and/or LGPL, or other similar licenses that require the
972
+ source code and/or modifications to source code to be made
973
+ available (as would be noted above), you may obtain a copy of
974
+ the source code corresponding to the binaries for such open
975
+ source components and modifications thereto, if any, (the
976
+ "Source Files"), by downloading the Source Files from VMware's website at
977
+ http://www.vmware.com/download/open_source.html, or by sending a request,
978
+ with your name and address to: GoPivotal, Inc., 1900 S. Norfolk Street #125,
979
+ San Mateo, CA 94403, Attention: General Counsel.
980
+ All such requests should clearly specify: OPEN SOURCE FILES REQUEST,
981
+ Attention General Counsel. GoPivotal shall mail a copy of the
982
+ Source Files to you on a CD or equivalent physical medium. This
983
+ offer to obtain a copy of the Source Files is valid for three
984
+ years from the date you acquired this Software product. Alternatively,
985
+ the Source Files may accompany the GoPivotal product.
986
+
987
+ [CFCFOUNDRY8152013AV081913]