enterprisifier 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. data/.document +5 -0
  2. data/.gitignore +22 -0
  3. data/LICENSE +20 -0
  4. data/README.md +3 -0
  5. data/Rakefile +57 -0
  6. data/VERSION +1 -0
  7. data/lib/enterprisifier.rb +7 -0
  8. data/lib/enterprisifier/code_generation.rb +1 -0
  9. data/lib/enterprisifier/code_generation/code_builder.rb +33 -0
  10. data/lib/enterprisifier/code_generation/code_generator.rb +281 -0
  11. data/lib/enterprisifier/code_generation/generator.rb +102 -0
  12. data/lib/enterprisifier/code_generation/generators/attribute_generator.rb +22 -0
  13. data/lib/enterprisifier/code_generation/generators/choice_generator.rb +12 -0
  14. data/lib/enterprisifier/code_generation/generators/complex_content_generator.rb +12 -0
  15. data/lib/enterprisifier/code_generation/generators/complex_type_generator.rb +12 -0
  16. data/lib/enterprisifier/code_generation/generators/element_generator.rb +28 -0
  17. data/lib/enterprisifier/code_generation/generators/extension_generator.rb +11 -0
  18. data/lib/enterprisifier/code_generation/generators/group_generator.rb +27 -0
  19. data/lib/enterprisifier/code_generation/generators/restriction_generator.rb +11 -0
  20. data/lib/enterprisifier/code_generation/generators/sequence_generator.rb +12 -0
  21. data/lib/enterprisifier/code_generation/generators/simple_content_generator.rb +12 -0
  22. data/lib/enterprisifier/code_generation/generators/simple_type_generator.rb +11 -0
  23. data/lib/enterprisifier/code_generation/generators/union_generator.rb +34 -0
  24. data/lib/enterprisifier/constants.rb +3 -0
  25. data/lib/enterprisifier/logging.rb +5 -0
  26. data/lib/enterprisifier/marshalling.rb +0 -0
  27. data/lib/enterprisifier/marshalling/builder.rb +11 -0
  28. data/lib/enterprisifier/marshalling/instantiatable_element.rb +170 -0
  29. data/lib/enterprisifier/marshalling/namespace.rb +23 -0
  30. data/lib/enterprisifier/marshalling/reification.rb +30 -0
  31. data/lib/enterprisifier/marshalling/schema_composition.rb +170 -0
  32. data/lib/enterprisifier/marshalling/xsd/schema/attribute.rb +48 -0
  33. data/lib/enterprisifier/marshalling/xsd/schema/choice.rb +18 -0
  34. data/lib/enterprisifier/marshalling/xsd/schema/complex_content.rb +18 -0
  35. data/lib/enterprisifier/marshalling/xsd/schema/complex_type.rb +28 -0
  36. data/lib/enterprisifier/marshalling/xsd/schema/element.rb +92 -0
  37. data/lib/enterprisifier/marshalling/xsd/schema/extension.rb +29 -0
  38. data/lib/enterprisifier/marshalling/xsd/schema/group.rb +22 -0
  39. data/lib/enterprisifier/marshalling/xsd/schema/restriction.rb +29 -0
  40. data/lib/enterprisifier/marshalling/xsd/schema/sequence.rb +21 -0
  41. data/lib/enterprisifier/marshalling/xsd/schema/simple_content.rb +18 -0
  42. data/lib/enterprisifier/marshalling/xsd/schema/simple_type.rb +23 -0
  43. data/lib/enterprisifier/marshalling/xsd/schema/union.rb +23 -0
  44. data/lib/enterprisifier/marshalling/xsd/types/boolean.rb +14 -0
  45. data/lib/enterprisifier/marshalling/xsd/types/date.rb +13 -0
  46. data/lib/enterprisifier/marshalling/xsd/types/date_time.rb +13 -0
  47. data/lib/enterprisifier/marshalling/xsd/types/decimal.rb +13 -0
  48. data/lib/enterprisifier/marshalling/xsd/types/string.rb +14 -0
  49. data/lib/enterprisifier/marshalling/xsd/types/time.rb +14 -0
  50. data/lib/enterprisifier/schema.rb +1 -0
  51. data/lib/enterprisifier/schema/base_element.rb +156 -0
  52. data/lib/enterprisifier/schema/element_factory.rb +29 -0
  53. data/lib/enterprisifier/schema/elements/annotation.rb +20 -0
  54. data/lib/enterprisifier/schema/elements/attribute.rb +22 -0
  55. data/lib/enterprisifier/schema/elements/choice.rb +13 -0
  56. data/lib/enterprisifier/schema/elements/complex_content.rb +13 -0
  57. data/lib/enterprisifier/schema/elements/complex_type.rb +13 -0
  58. data/lib/enterprisifier/schema/elements/documentation.rb +12 -0
  59. data/lib/enterprisifier/schema/elements/element.rb +23 -0
  60. data/lib/enterprisifier/schema/elements/enumeration.rb +12 -0
  61. data/lib/enterprisifier/schema/elements/extension.rb +12 -0
  62. data/lib/enterprisifier/schema/elements/fraction_digits.rb +12 -0
  63. data/lib/enterprisifier/schema/elements/group.rb +12 -0
  64. data/lib/enterprisifier/schema/elements/import.rb +28 -0
  65. data/lib/enterprisifier/schema/elements/include.rb +28 -0
  66. data/lib/enterprisifier/schema/elements/max_inclusive.rb +12 -0
  67. data/lib/enterprisifier/schema/elements/min_inclusive.rb +12 -0
  68. data/lib/enterprisifier/schema/elements/pattern.rb +12 -0
  69. data/lib/enterprisifier/schema/elements/restriction.rb +12 -0
  70. data/lib/enterprisifier/schema/elements/schema.rb +71 -0
  71. data/lib/enterprisifier/schema/elements/sequence.rb +12 -0
  72. data/lib/enterprisifier/schema/elements/simple_content.rb +12 -0
  73. data/lib/enterprisifier/schema/elements/simple_type.rb +12 -0
  74. data/lib/enterprisifier/schema/elements/union.rb +17 -0
  75. data/lib/enterprisifier/schema/elements/unknown_element.rb +12 -0
  76. data/lib/enterprisifier/schema/loader.rb +61 -0
  77. data/test/enterprisifier_test.rb +35 -0
  78. data/test/example/e_business_for_media/aaaa/elements/aaaa_message_header.rb +15 -0
  79. data/test/example/e_business_for_media/aaaa/elements/aaaa_values.rb +52 -0
  80. data/test/example/e_business_for_media/aaaa/elements/action.rb +17 -0
  81. data/test/example/e_business_for_media/aaaa/elements/business_object.rb +17 -0
  82. data/test/example/e_business_for_media/aaaa/elements/media.rb +17 -0
  83. data/test/example/e_business_for_media/aaaa/elements/schema_name.rb +17 -0
  84. data/test/example/e_business_for_media/aaaa/elements/schema_version.rb +17 -0
  85. data/test/example/e_business_for_media/aaaa/elements/unique_message_id.rb +19 -0
  86. data/test/example/e_business_for_media/aaaa/types/aaaa_message_type.rb +58 -0
  87. data/test/example/e_business_for_media/aaaa/types/action_string.rb +18 -0
  88. data/test/example/e_business_for_media/aaaa/types/business_object_string.rb +18 -0
  89. data/test/example/e_business_for_media/aaaa/types/guid.rb +20 -0
  90. data/test/example/e_business_for_media/aaaa/types/media_string.rb +19 -0
  91. data/test/example/e_business_for_media/aaaa/types/schema_name_string.rb +18 -0
  92. data/test/example/e_business_for_media/aaaa/types/schema_version_string.rb +18 -0
  93. data/test/example/e_business_for_media/aaaa/types/unique_message_id.rb +18 -0
  94. data/test/example/e_business_for_media/iab/attributes/currency.rb +17 -0
  95. data/test/example/e_business_for_media/iab/attributes/id_owner.rb +19 -0
  96. data/test/example/e_business_for_media/iab/attributes/name.rb +19 -0
  97. data/test/example/e_business_for_media/iab/attributes/prefix.rb +18 -0
  98. data/test/example/e_business_for_media/iab/attributes/primary.rb +33 -0
  99. data/test/example/e_business_for_media/iab/attributes/script.rb +23 -0
  100. data/test/example/e_business_for_media/iab/attributes/sms_enabled.rb +20 -0
  101. data/test/example/e_business_for_media/iab/attributes/type.rb +30 -0
  102. data/test/example/e_business_for_media/iab/attributes/valid_from.rb +18 -0
  103. data/test/example/e_business_for_media/iab/attributes/valid_to.rb +18 -0
  104. data/test/example/e_business_for_media/iab/elements/ad_server.rb +17 -0
  105. data/test/example/e_business_for_media/iab/elements/additional_metrics.rb +16 -0
  106. data/test/example/e_business_for_media/iab/elements/address.rb +16 -0
  107. data/test/example/e_business_for_media/iab/elements/address_line.rb +22 -0
  108. data/test/example/e_business_for_media/iab/elements/advertiser.rb +17 -0
  109. data/test/example/e_business_for_media/iab/elements/affix.rb +53 -0
  110. data/test/example/e_business_for_media/iab/elements/agency.rb +19 -0
  111. data/test/example/e_business_for_media/iab/elements/agency_commission.rb +19 -0
  112. data/test/example/e_business_for_media/iab/elements/alternate_script.rb +147 -0
  113. data/test/example/e_business_for_media/iab/elements/amount.rb +16 -0
  114. data/test/example/e_business_for_media/iab/elements/area_city_code.rb +18 -0
  115. data/test/example/e_business_for_media/iab/elements/attachments.rb +18 -0
  116. data/test/example/e_business_for_media/iab/elements/audience.rb +17 -0
  117. data/test/example/e_business_for_media/iab/elements/background.rb +15 -0
  118. data/test/example/e_business_for_media/iab/elements/basis.rb +26 -0
  119. data/test/example/e_business_for_media/iab/elements/billing_frequency.rb +15 -0
  120. data/test/example/e_business_for_media/iab/elements/billing_info.rb +16 -0
  121. data/test/example/e_business_for_media/iab/elements/billing_notes.rb +16 -0
  122. data/test/example/e_business_for_media/iab/elements/billing_partner.rb +16 -0
  123. data/test/example/e_business_for_media/iab/elements/billing_statistics_source.rb +16 -0
  124. data/test/example/e_business_for_media/iab/elements/brand_name.rb +17 -0
  125. data/test/example/e_business_for_media/iab/elements/budget.rb +16 -0
  126. data/test/example/e_business_for_media/iab/elements/building_number.rb +23 -0
  127. data/test/example/e_business_for_media/iab/elements/campaign_brief.rb +38 -0
  128. data/test/example/e_business_for_media/iab/elements/campaign_reference_id.rb +18 -0
  129. data/test/example/e_business_for_media/iab/elements/campaign_reference_info.rb +16 -0
  130. data/test/example/e_business_for_media/iab/elements/category.rb +16 -0
  131. data/test/example/e_business_for_media/iab/elements/context.rb +17 -0
  132. data/test/example/e_business_for_media/iab/elements/contract_details.rb +17 -0
  133. data/test/example/e_business_for_media/iab/elements/count.rb +16 -0
  134. data/test/example/e_business_for_media/iab/elements/country_code.rb +23 -0
  135. data/test/example/e_business_for_media/iab/elements/created_date.rb +15 -0
  136. data/test/example/e_business_for_media/iab/elements/creating_system.rb +16 -0
  137. data/test/example/e_business_for_media/iab/elements/date.rb +16 -0
  138. data/test/example/e_business_for_media/iab/elements/delivery.rb +17 -0
  139. data/test/example/e_business_for_media/iab/elements/delivery_address.rb +72 -0
  140. data/test/example/e_business_for_media/iab/elements/description.rb +16 -0
  141. data/test/example/e_business_for_media/iab/elements/desired_positioning_notes.rb +16 -0
  142. data/test/example/e_business_for_media/iab/elements/destination_system.rb +16 -0
  143. data/test/example/e_business_for_media/iab/elements/discount.rb +19 -0
  144. data/test/example/e_business_for_media/iab/elements/distribution.rb +15 -0
  145. data/test/example/e_business_for_media/iab/elements/document_id.rb +20 -0
  146. data/test/example/e_business_for_media/iab/elements/document_name.rb +16 -0
  147. data/test/example/e_business_for_media/iab/elements/document_sender.rb +17 -0
  148. data/test/example/e_business_for_media/iab/elements/due_date.rb +15 -0
  149. data/test/example/e_business_for_media/iab/elements/end_date.rb +16 -0
  150. data/test/example/e_business_for_media/iab/elements/extension.rb +17 -0
  151. data/test/example/e_business_for_media/iab/elements/family_name.rb +55 -0
  152. data/test/example/e_business_for_media/iab/elements/fax.rb +16 -0
  153. data/test/example/e_business_for_media/iab/elements/flight_exclusivity_guidelines.rb +16 -0
  154. data/test/example/e_business_for_media/iab/elements/format.rb +16 -0
  155. data/test/example/e_business_for_media/iab/elements/formatted_name.rb +22 -0
  156. data/test/example/e_business_for_media/iab/elements/formatted_number.rb +18 -0
  157. data/test/example/e_business_for_media/iab/elements/geographic_considerations.rb +15 -0
  158. data/test/example/e_business_for_media/iab/elements/given_name.rb +19 -0
  159. data/test/example/e_business_for_media/iab/elements/goal.rb +29 -0
  160. data/test/example/e_business_for_media/iab/elements/gross_cost.rb +16 -0
  161. data/test/example/e_business_for_media/iab/elements/iab_advertiser_info.rb +15 -0
  162. data/test/example/e_business_for_media/iab/elements/iab_billing_info.rb +15 -0
  163. data/test/example/e_business_for_media/iab/elements/iab_message_base.rb +15 -0
  164. data/test/example/e_business_for_media/iab/elements/iab_message_header.rb +17 -0
  165. data/test/example/e_business_for_media/iab/elements/iab_publisher_info.rb +15 -0
  166. data/test/example/e_business_for_media/iab/elements/iab_type_of_contact.rb +17 -0
  167. data/test/example/e_business_for_media/iab/elements/id.rb +17 -0
  168. data/test/example/e_business_for_media/iab/elements/id_value.rb +34 -0
  169. data/test/example/e_business_for_media/iab/elements/in_reference_to.rb +33 -0
  170. data/test/example/e_business_for_media/iab/elements/industry.rb +17 -0
  171. data/test/example/e_business_for_media/iab/elements/instructions.rb +15 -0
  172. data/test/example/e_business_for_media/iab/elements/international_country_code.rb +17 -0
  173. data/test/example/e_business_for_media/iab/elements/internet_email_address.rb +16 -0
  174. data/test/example/e_business_for_media/iab/elements/internet_web_address.rb +17 -0
  175. data/test/example/e_business_for_media/iab/elements/legal_name.rb +19 -0
  176. data/test/example/e_business_for_media/iab/elements/link.rb +16 -0
  177. data/test/example/e_business_for_media/iab/elements/location.rb +17 -0
  178. data/test/example/e_business_for_media/iab/elements/make_good_policy.rb +16 -0
  179. data/test/example/e_business_for_media/iab/elements/middle_name.rb +17 -0
  180. data/test/example/e_business_for_media/iab/elements/mobile.rb +17 -0
  181. data/test/example/e_business_for_media/iab/elements/municipality.rb +17 -0
  182. data/test/example/e_business_for_media/iab/elements/name.rb +16 -0
  183. data/test/example/e_business_for_media/iab/elements/national_number.rb +19 -0
  184. data/test/example/e_business_for_media/iab/elements/net_cost.rb +16 -0
  185. data/test/example/e_business_for_media/iab/elements/non_standard_value.rb +16 -0
  186. data/test/example/e_business_for_media/iab/elements/notes.rb +16 -0
  187. data/test/example/e_business_for_media/iab/elements/order_status.rb +17 -0
  188. data/test/example/e_business_for_media/iab/elements/other_contacts.rb +18 -0
  189. data/test/example/e_business_for_media/iab/elements/other_id.rb +20 -0
  190. data/test/example/e_business_for_media/iab/elements/other_target.rb +17 -0
  191. data/test/example/e_business_for_media/iab/elements/out_clause.rb +16 -0
  192. data/test/example/e_business_for_media/iab/elements/pager.rb +16 -0
  193. data/test/example/e_business_for_media/iab/elements/partner.rb +19 -0
  194. data/test/example/e_business_for_media/iab/elements/payment_terms.rb +16 -0
  195. data/test/example/e_business_for_media/iab/elements/payment_type.rb +15 -0
  196. data/test/example/e_business_for_media/iab/elements/percent.rb +16 -0
  197. data/test/example/e_business_for_media/iab/elements/person_name.rb +16 -0
  198. data/test/example/e_business_for_media/iab/elements/post_office_box.rb +18 -0
  199. data/test/example/e_business_for_media/iab/elements/postal_address.rb +16 -0
  200. data/test/example/e_business_for_media/iab/elements/postal_code.rb +18 -0
  201. data/test/example/e_business_for_media/iab/elements/preferred_given_name.rb +18 -0
  202. data/test/example/e_business_for_media/iab/elements/primary_contact.rb +16 -0
  203. data/test/example/e_business_for_media/iab/elements/primary_id.rb +17 -0
  204. data/test/example/e_business_for_media/iab/elements/primary_success_metric.rb +15 -0
  205. data/test/example/e_business_for_media/iab/elements/product_name.rb +17 -0
  206. data/test/example/e_business_for_media/iab/elements/property_name.rb +16 -0
  207. data/test/example/e_business_for_media/iab/elements/publisher.rb +17 -0
  208. data/test/example/e_business_for_media/iab/elements/referenced_document_id.rb +15 -0
  209. data/test/example/e_business_for_media/iab/elements/referenced_version.rb +22 -0
  210. data/test/example/e_business_for_media/iab/elements/region.rb +21 -0
  211. data/test/example/e_business_for_media/iab/elements/request_for_proposal.rb +16 -0
  212. data/test/example/e_business_for_media/iab/elements/rfp_details.rb +15 -0
  213. data/test/example/e_business_for_media/iab/elements/rfp_response_requirements.rb +15 -0
  214. data/test/example/e_business_for_media/iab/elements/role.rb +31 -0
  215. data/test/example/e_business_for_media/iab/elements/selection_criteria.rb +16 -0
  216. data/test/example/e_business_for_media/iab/elements/sent_date.rb +15 -0
  217. data/test/example/e_business_for_media/iab/elements/standard_value.rb +16 -0
  218. data/test/example/e_business_for_media/iab/elements/start_date.rb +16 -0
  219. data/test/example/e_business_for_media/iab/elements/street_name.rb +21 -0
  220. data/test/example/e_business_for_media/iab/elements/subscriber_number.rb +19 -0
  221. data/test/example/e_business_for_media/iab/elements/target_audience.rb +15 -0
  222. data/test/example/e_business_for_media/iab/elements/targeting.rb +42 -0
  223. data/test/example/e_business_for_media/iab/elements/telephone.rb +16 -0
  224. data/test/example/e_business_for_media/iab/elements/terms_and_conditions.rb +27 -0
  225. data/test/example/e_business_for_media/iab/elements/terms_attachment.rb +15 -0
  226. data/test/example/e_business_for_media/iab/elements/terms_text.rb +15 -0
  227. data/test/example/e_business_for_media/iab/elements/time.rb +17 -0
  228. data/test/example/e_business_for_media/iab/elements/title.rb +17 -0
  229. data/test/example/e_business_for_media/iab/elements/ttytdd.rb +17 -0
  230. data/test/example/e_business_for_media/iab/elements/type.rb +15 -0
  231. data/test/example/e_business_for_media/iab/elements/unit.rb +21 -0
  232. data/test/example/e_business_for_media/iab/elements/use.rb +17 -0
  233. data/test/example/e_business_for_media/iab/elements/value.rb +15 -0
  234. data/test/example/e_business_for_media/iab/elements/version.rb +24 -0
  235. data/test/example/e_business_for_media/iab/elements/when_available.rb +19 -0
  236. data/test/example/e_business_for_media/iab/elements/zero_cost.rb +15 -0
  237. data/test/example/e_business_for_media/iab/groups/telcom_number_group.rb +52 -0
  238. data/test/example/e_business_for_media/iab/types/attachment_type.rb +32 -0
  239. data/test/example/e_business_for_media/iab/types/base_cost.rb +32 -0
  240. data/test/example/e_business_for_media/iab/types/base_target_type.rb +31 -0
  241. data/test/example/e_business_for_media/iab/types/base_unit.rb +27 -0
  242. data/test/example/e_business_for_media/iab/types/campaign_reference_info_type.rb +81 -0
  243. data/test/example/e_business_for_media/iab/types/contact_method_location_pattern_extension_type.rb +22 -0
  244. data/test/example/e_business_for_media/iab/types/contact_method_location_type.rb +24 -0
  245. data/test/example/e_business_for_media/iab/types/contact_method_type.rb +81 -0
  246. data/test/example/e_business_for_media/iab/types/contact_method_use_pattern_extension_type.rb +22 -0
  247. data/test/example/e_business_for_media/iab/types/contact_method_use_type.rb +23 -0
  248. data/test/example/e_business_for_media/iab/types/contact_method_when_available_type.rb +20 -0
  249. data/test/example/e_business_for_media/iab/types/contract_details_type.rb +46 -0
  250. data/test/example/e_business_for_media/iab/types/cost_method_enumeration.rb +29 -0
  251. data/test/example/e_business_for_media/iab/types/cost_method_type.rb +28 -0
  252. data/test/example/e_business_for_media/iab/types/currency_code_type.rb +20 -0
  253. data/test/example/e_business_for_media/iab/types/discount_type.rb +36 -0
  254. data/test/example/e_business_for_media/iab/types/entity_id_type.rb +57 -0
  255. data/test/example/e_business_for_media/iab/types/generic_target_type.rb +31 -0
  256. data/test/example/e_business_for_media/iab/types/iab_advertiser_info_type.rb +38 -0
  257. data/test/example/e_business_for_media/iab/types/iab_billing_info_type.rb +54 -0
  258. data/test/example/e_business_for_media/iab/types/iab_contact_method_type.rb +44 -0
  259. data/test/example/e_business_for_media/iab/types/iab_date_time_type.rb +28 -0
  260. data/test/example/e_business_for_media/iab/types/iab_distribution_enumerated_type.rb +22 -0
  261. data/test/example/e_business_for_media/iab/types/iab_distribution_type.rb +20 -0
  262. data/test/example/e_business_for_media/iab/types/iab_message_base_type.rb +47 -0
  263. data/test/example/e_business_for_media/iab/types/iab_message_header_type.rb +34 -0
  264. data/test/example/e_business_for_media/iab/types/iab_partner_info_type.rb +67 -0
  265. data/test/example/e_business_for_media/iab/types/iab_payment_terms_enumerated_type.rb +23 -0
  266. data/test/example/e_business_for_media/iab/types/iab_payment_terms_type.rb +20 -0
  267. data/test/example/e_business_for_media/iab/types/iab_payment_type_enumerated_type.rb +21 -0
  268. data/test/example/e_business_for_media/iab/types/iab_publisher_info_type.rb +29 -0
  269. data/test/example/e_business_for_media/iab/types/iab_type_of_contact_type.rb +30 -0
  270. data/test/example/e_business_for_media/iab/types/internet_email_address_type.rb +19 -0
  271. data/test/example/e_business_for_media/iab/types/internet_web_address_type.rb +20 -0
  272. data/test/example/e_business_for_media/iab/types/mobile_telcom_number_type.rb +33 -0
  273. data/test/example/e_business_for_media/iab/types/monetary_type.rb +28 -0
  274. data/test/example/e_business_for_media/iab/types/percentage_type.rb +21 -0
  275. data/test/example/e_business_for_media/iab/types/person_name_type.rb +282 -0
  276. data/test/example/e_business_for_media/iab/types/postal_address_type.rb +120 -0
  277. data/test/example/e_business_for_media/iab/types/request_for_proposal_type.rb +35 -0
  278. data/test/example/e_business_for_media/iab/types/rfp_details_type.rb +118 -0
  279. data/test/example/e_business_for_media/iab/types/rfp_response_requirements_type.rb +33 -0
  280. data/test/example/e_business_for_media/iab/types/telcom_number_type.rb +34 -0
  281. data/test/example/e_business_for_media/iab/types/unit_type.rb +28 -0
  282. data/test/example/e_business_for_media/iab/types/unit_type_enumeration.rb +27 -0
  283. data/test/example/e_business_for_media/iab/types/zero_cost_type.rb +29 -0
  284. data/test/example/e_business_for_media/iab/types/zero_cost_type_enumeration.rb +21 -0
  285. data/test/marshalling_test.rb +13 -0
  286. data/test/mocks.rb +10 -0
  287. data/test/teststrap.rb +23 -0
  288. data/test/xsd/AAAA_Common.xsd +76 -0
  289. data/test/xsd/HRXMLlicense.txt +32 -0
  290. data/test/xsd/IAB_Acknowledgement.xsd +181 -0
  291. data/test/xsd/IAB_AdvertiserCommon.xsd +40 -0
  292. data/test/xsd/IAB_BillingCommon.xsd +75 -0
  293. data/test/xsd/IAB_CampaignCommon.xsd +80 -0
  294. data/test/xsd/IAB_Common.xsd +1176 -0
  295. data/test/xsd/IAB_ContractCommon.xsd +54 -0
  296. data/test/xsd/IAB_InsertionOrderCommon.xsd +40 -0
  297. data/test/xsd/IAB_LineItemCommon.xsd +328 -0
  298. data/test/xsd/IAB_MessageCommon.xsd +66 -0
  299. data/test/xsd/IAB_OrderCommon.xsd +98 -0
  300. data/test/xsd/IAB_ProposalCommon.xsd +30 -0
  301. data/test/xsd/IAB_PublisherCommon.xsd +26 -0
  302. data/test/xsd/IAB_RFPCommon.xsd +126 -0
  303. metadata +626 -0
@@ -0,0 +1,98 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Created with Liquid XML Studio 1.0.8.0 (http://www.liquid-technologies.com) -->
3
+ <xsd:schema xmlns="http://ns.iab.net" xmlns:q1="http://ns.iab.net" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://ns.iab.net" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
4
+ <xsd:include schemaLocation="IAB_LineItemCommon.xsd" />
5
+ <xsd:include schemaLocation="IAB_BillingCommon.xsd" />
6
+ <xsd:annotation>
7
+ <xsd:documentation>
8
+ "Copyright Interactive Advertising Bureau. All Rights Reserved. http://www.iab.net/ebiz"
9
+ Name: IAB_OrderCommon.xsd
10
+ Date this version: 2008-09-30
11
+ Author(s): Lon Pilot and IAB Ad Ops Council E-Business Working Group
12
+
13
+ Change History:
14
+ NONE
15
+ </xsd:documentation>
16
+ </xsd:annotation>
17
+ <xsd:element name="OrderDetails" type="q1:OrderDetailsType">
18
+ <xsd:annotation>
19
+ <xsd:documentation>Element used to represent the overall proposal/insertion order properties.</xsd:documentation>
20
+ </xsd:annotation>
21
+ </xsd:element>
22
+ <xsd:complexType name="OrderDetailsType">
23
+ <xsd:sequence>
24
+ <xsd:element name="PrimaryID" type="q1:EntityIdType">
25
+ <xsd:annotation>
26
+ <xsd:documentation>Publisher line item ID</xsd:documentation>
27
+ </xsd:annotation>
28
+ </xsd:element>
29
+ <xsd:element minOccurs="0" maxOccurs="unbounded" name="OtherID" type="q1:EntityIdType">
30
+ <xsd:annotation>
31
+ <xsd:documentation>Additional IDs from Agency and Partner systems.</xsd:documentation>
32
+ </xsd:annotation>
33
+ </xsd:element>
34
+ <xsd:element name="Name" type="xsd:string">
35
+ <xsd:annotation>
36
+ <xsd:documentation>Name of the order for identification purposes.</xsd:documentation>
37
+ </xsd:annotation>
38
+ </xsd:element>
39
+ <xsd:element name="StartDate" type="q1:IABDateTimeType">
40
+ <xsd:annotation>
41
+ <xsd:documentation>Start date of the overall order</xsd:documentation>
42
+ </xsd:annotation>
43
+ </xsd:element>
44
+ <xsd:element name="EndDate" type="q1:IABDateTimeType">
45
+ <xsd:annotation>
46
+ <xsd:documentation>End date of the overall order</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:element>
49
+ <xsd:element minOccurs="0" name="Notes" type="xsd:string" />
50
+ <xsd:element maxOccurs="unbounded" name="TotalUnits">
51
+ <xsd:annotation>
52
+ <xsd:documentation>Summary of the total units being proposed/contracted</xsd:documentation>
53
+ </xsd:annotation>
54
+ <xsd:complexType>
55
+ <xsd:complexContent mixed="false">
56
+ <xsd:extension base="q1:BaseUnit" />
57
+ </xsd:complexContent>
58
+ </xsd:complexType>
59
+ </xsd:element>
60
+ <xsd:element minOccurs="0" ref="q1:IsBillable" />
61
+ <xsd:element minOccurs="0" ref="q1:ZeroCost" />
62
+ <xsd:element maxOccurs="unbounded" name="LineItems" type="q1:LineItemType">
63
+ <xsd:annotation>
64
+ <xsd:documentation>All information on media details</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:element>
67
+ <xsd:element default="1" name="InvoiceGroupNumber">
68
+ <xsd:annotation>
69
+ <xsd:documentation>Used when multiple campaigns and/or invoices are included in a single proposal. If only one invoice, value defaults to 1.</xsd:documentation>
70
+ </xsd:annotation>
71
+ <xsd:simpleType>
72
+ <xsd:restriction base="xsd:int">
73
+ <xsd:minInclusive value="1" />
74
+ </xsd:restriction>
75
+ </xsd:simpleType>
76
+ </xsd:element>
77
+ <xsd:element minOccurs="0" name="OtherTerms">
78
+ <xsd:annotation>
79
+ <xsd:documentation>Can be included inline or as a reference to an external document</xsd:documentation>
80
+ </xsd:annotation>
81
+ <xsd:complexType>
82
+ <xsd:choice>
83
+ <xsd:element name="TermsText" type="xsd:string">
84
+ <xsd:annotation>
85
+ <xsd:documentation>Used for text version of Terms and Conditions if attachment is not used.</xsd:documentation>
86
+ </xsd:annotation>
87
+ </xsd:element>
88
+ <xsd:element name="TermsAttachment" type="q1:AttachmentType">
89
+ <xsd:annotation>
90
+ <xsd:documentation>File attachment of Terms and Conditions</xsd:documentation>
91
+ </xsd:annotation>
92
+ </xsd:element>
93
+ </xsd:choice>
94
+ </xsd:complexType>
95
+ </xsd:element>
96
+ </xsd:sequence>
97
+ </xsd:complexType>
98
+ </xsd:schema>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Created with Liquid XML Studio 1.0.8.0 (http://www.liquid-technologies.com) -->
3
+ <xsd:schema xmlns="http://ns.iab.net" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://ns.iab.net" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
4
+ <xsd:include schemaLocation="IAB_MessageCommon.xsd" />
5
+ <xsd:include schemaLocation="IAB_ContractCommon.xsd" />
6
+ <xsd:include schemaLocation="IAB_OrderCommon.xsd" />
7
+ <xsd:annotation>
8
+ <xsd:documentation>
9
+ "Copyright Interactive Advertising Bureau. All Rights Reserved. http://www.iab.net/ebiz"
10
+ Name: IAB_ProposalCommon.xsd
11
+ Date this version: 2008-09-30
12
+ Author(s): Lon Pilot and IAB Ad Ops Council E-Business Working Group
13
+
14
+ Change History:
15
+ NONE
16
+ </xsd:documentation>
17
+ </xsd:annotation>
18
+ <xsd:element name="Proposal" type="ProposalType" />
19
+ <xsd:complexType name="ProposalType">
20
+ <xsd:complexContent mixed="false">
21
+ <xsd:extension base="IABMessageBaseType">
22
+ <xsd:sequence>
23
+ <xsd:element name="ExpirationDate" type="IABDateTimeType" />
24
+ <xsd:element maxOccurs="unbounded" name="ProposalDetails" type="OrderDetailsType" />
25
+ <xsd:element name="ProposedContract" type="ContractDetailsType" />
26
+ </xsd:sequence>
27
+ </xsd:extension>
28
+ </xsd:complexContent>
29
+ </xsd:complexType>
30
+ </xsd:schema>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- edited with XMLSpy v2008 sp1 (http://www.altova.com) by Lon Pilot (Advertising.com) -->
3
+ <xsd:schema xmlns="http://ns.iab.net" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ns.iab.net" elementFormDefault="qualified" attributeFormDefault="unqualified">
4
+ <xsd:annotation>
5
+ <xsd:documentation>
6
+ "Copyright Interactive Advertising Bureau. All Rights Reserved. http://www.iab.net/ebiz"
7
+ Name: IAB_PublisherCommon.xsd
8
+ Date this version: 2008-09-30
9
+ Author(s): Lon Pilot and IAB Ad Ops Council E-Business Working Group
10
+
11
+ Change History:
12
+ NONE
13
+ </xsd:documentation>
14
+ </xsd:annotation>
15
+ <xsd:include schemaLocation="IAB_Common.xsd"/>
16
+ <xsd:element name="IABPublisherInfo" type="IABPublisherInfoType"/>
17
+ <xsd:complexType name="IABPublisherInfoType">
18
+ <xsd:complexContent>
19
+ <xsd:extension base="IABPartnerInfoType">
20
+ <xsd:sequence>
21
+ <xsd:element name="PropertyName" type="InternetWebAddressType" maxOccurs="unbounded"/>
22
+ </xsd:sequence>
23
+ </xsd:extension>
24
+ </xsd:complexContent>
25
+ </xsd:complexType>
26
+ </xsd:schema>
@@ -0,0 +1,126 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- edited with XMLSpy v2008 rel. 2 sp1 (http://www.altova.com) by Jeremy Fain (IAB) -->
3
+ <!-- Created with Liquid XML Studio 1.0.8.0 (http://www.liquid-technologies.com) -->
4
+ <xsd:schema xmlns="http://ns.iab.net" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ns.iab.net" elementFormDefault="qualified" attributeFormDefault="unqualified">
5
+ <xsd:annotation>
6
+ <xsd:documentation>
7
+ "Copyright Interactive Advertising Bureau. All Rights Reserved. http://www.iab.net/ebiz"
8
+ Name: IAB_RFPCommon.xsd
9
+ Date this version: 2008-09-30
10
+ Author(s): Lon Pilot and IAB Ad Ops Council E-Business Working Group
11
+
12
+ Change History:
13
+ NONE
14
+ </xsd:documentation>
15
+ </xsd:annotation>
16
+ <xsd:include schemaLocation="IAB_MessageCommon.xsd"/>
17
+ <xsd:include schemaLocation="IAB_ContractCommon.xsd"/>
18
+ <xsd:element name="RequestForProposal" type="RequestForProposalType">
19
+ <xsd:annotation>
20
+ <xsd:documentation>Root element for request for proposal communication</xsd:documentation>
21
+ </xsd:annotation>
22
+ </xsd:element>
23
+ <xsd:complexType name="RequestForProposalType" mixed="false">
24
+ <xsd:complexContent mixed="false">
25
+ <xsd:extension base="IABMessageBaseType">
26
+ <xsd:sequence>
27
+ <xsd:element ref="RFPDetails">
28
+ <xsd:annotation>
29
+ <xsd:documentation>Details of the requested media campaign</xsd:documentation>
30
+ </xsd:annotation>
31
+ </xsd:element>
32
+ <xsd:element ref="RFPResponseRequirements">
33
+ <xsd:annotation>
34
+ <xsd:documentation>Instructions for replying to the RFP</xsd:documentation>
35
+ </xsd:annotation>
36
+ </xsd:element>
37
+ </xsd:sequence>
38
+ </xsd:extension>
39
+ </xsd:complexContent>
40
+ </xsd:complexType>
41
+ <xsd:element name="RFPDetails" type="RFPDetailsType"/>
42
+ <xsd:complexType name="RFPDetailsType">
43
+ <xsd:sequence>
44
+ <xsd:element name="Budget" type="MonetaryType">
45
+ <xsd:annotation>
46
+ <xsd:documentation>Budget that the publisher should build towards</xsd:documentation>
47
+ </xsd:annotation>
48
+ </xsd:element>
49
+ <xsd:element name="StartDate" type="xsd:date">
50
+ <xsd:annotation>
51
+ <xsd:documentation>Anticipated start date of campaign</xsd:documentation>
52
+ </xsd:annotation>
53
+ </xsd:element>
54
+ <xsd:element name="EndDate" type="xsd:date">
55
+ <xsd:annotation>
56
+ <xsd:documentation>Anticipated end date of campaign</xsd:documentation>
57
+ </xsd:annotation>
58
+ </xsd:element>
59
+ <xsd:element name="CampaignBrief">
60
+ <xsd:complexType>
61
+ <xsd:sequence>
62
+ <xsd:element name="Background" type="xsd:string"/>
63
+ <xsd:element name="Description" type="xsd:string">
64
+ <xsd:annotation>
65
+ <xsd:documentation>Can be used for a full description of the campign goals and publisher requests.</xsd:documentation>
66
+ </xsd:annotation>
67
+ </xsd:element>
68
+ <xsd:element name="GeographicConsiderations" type="xsd:string"/>
69
+ <xsd:element name="TargetAudience" type="xsd:string"/>
70
+ <xsd:element name="PrimarySuccessMetric" type="xsd:string"/>
71
+ <xsd:element name="AdditionalMetrics" type="xsd:string" minOccurs="0"/>
72
+ <xsd:element name="DesiredPositioningNotes" type="xsd:string" minOccurs="0"/>
73
+ </xsd:sequence>
74
+ </xsd:complexType>
75
+ </xsd:element>
76
+ <xsd:element name="Attachments" type="AttachmentType" minOccurs="0" maxOccurs="unbounded">
77
+ <xsd:annotation>
78
+ <xsd:documentation>The RFP can be submitted as an attachment as well or instead.</xsd:documentation>
79
+ </xsd:annotation>
80
+ </xsd:element>
81
+ <xsd:element name="Goal" minOccurs="0" maxOccurs="unbounded">
82
+ <xsd:annotation>
83
+ <xsd:documentation>A generic object that can be used in repetition to state specific campaign goals and the measurement of that goal.</xsd:documentation>
84
+ </xsd:annotation>
85
+ <xsd:complexType>
86
+ <xsd:sequence>
87
+ <xsd:element name="Value" type="xsd:string"/>
88
+ <xsd:element name="Type" type="xsd:string"/>
89
+ </xsd:sequence>
90
+ </xsd:complexType>
91
+ </xsd:element>
92
+ <xsd:element name="Targeting" minOccurs="0">
93
+ <xsd:annotation>
94
+ <xsd:documentation>Similar to Proposal Line Item Targeting - no industry standards exist for communicating targeting so this flexible framework can be used for providing text representations of the targeting being requested.</xsd:documentation>
95
+ </xsd:annotation>
96
+ <xsd:complexType>
97
+ <xsd:sequence>
98
+ <xsd:element name="Audience" type="BaseTargetType" minOccurs="0" maxOccurs="unbounded"/>
99
+ <xsd:element name="Context" type="BaseTargetType" minOccurs="0" maxOccurs="unbounded"/>
100
+ <xsd:element name="Delivery" type="BaseTargetType" minOccurs="0" maxOccurs="unbounded"/>
101
+ <xsd:element name="OtherTarget" type="GenericTargetType" minOccurs="0" maxOccurs="unbounded"/>
102
+ </xsd:sequence>
103
+ </xsd:complexType>
104
+ </xsd:element>
105
+ <xsd:element name="Notes" type="xsd:string" minOccurs="0"/>
106
+ <xsd:element name="FlightExclusivityGuidelines" type="xsd:string" minOccurs="0"/>
107
+ <xsd:element name="PaymentTerms" type="IABPaymentTermsType" minOccurs="0"/>
108
+ <xsd:element name="BillingNotes" type="xsd:string" minOccurs="0"/>
109
+ <xsd:element ref="TermsAndConditions" minOccurs="0"/>
110
+ </xsd:sequence>
111
+ </xsd:complexType>
112
+ <xsd:element name="RFPResponseRequirements" type="RFPResponseRequirementsType"/>
113
+ <xsd:complexType name="RFPResponseRequirementsType">
114
+ <xsd:sequence>
115
+ <xsd:element name="DueDate" type="IABDateTimeType"/>
116
+ <xsd:element name="Format" type="xsd:string">
117
+ <xsd:annotation>
118
+ <xsd:documentation>Excel spreadsheet, presentation, any notes on format of response.</xsd:documentation>
119
+ </xsd:annotation>
120
+ </xsd:element>
121
+ <xsd:element name="Instructions" type="xsd:string"/>
122
+ <xsd:element name="DestinationSystem" type="xsd:string" minOccurs="0"/>
123
+ <xsd:element name="SelectionCriteria" type="xsd:string" minOccurs="0"/>
124
+ </xsd:sequence>
125
+ </xsd:complexType>
126
+ </xsd:schema>
metadata ADDED
@@ -0,0 +1,626 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: enterprisifier
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - gabrielg
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-19 00:00:00 -06:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: nokogiri
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: activesupport
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: riot
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: yard
47
+ type: :development
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: "0"
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: ruby-debug
57
+ type: :development
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: "0"
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: faker
67
+ type: :development
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
75
+ description: ENTERPRISE
76
+ email: gabriel.gironda@gmail.com
77
+ executables: []
78
+
79
+ extensions: []
80
+
81
+ extra_rdoc_files:
82
+ - LICENSE
83
+ - README.md
84
+ files:
85
+ - .document
86
+ - .gitignore
87
+ - LICENSE
88
+ - README.md
89
+ - Rakefile
90
+ - VERSION
91
+ - lib/enterprisifier.rb
92
+ - lib/enterprisifier/code_generation.rb
93
+ - lib/enterprisifier/code_generation/code_builder.rb
94
+ - lib/enterprisifier/code_generation/code_generator.rb
95
+ - lib/enterprisifier/code_generation/generator.rb
96
+ - lib/enterprisifier/code_generation/generators/attribute_generator.rb
97
+ - lib/enterprisifier/code_generation/generators/choice_generator.rb
98
+ - lib/enterprisifier/code_generation/generators/complex_content_generator.rb
99
+ - lib/enterprisifier/code_generation/generators/complex_type_generator.rb
100
+ - lib/enterprisifier/code_generation/generators/element_generator.rb
101
+ - lib/enterprisifier/code_generation/generators/extension_generator.rb
102
+ - lib/enterprisifier/code_generation/generators/group_generator.rb
103
+ - lib/enterprisifier/code_generation/generators/restriction_generator.rb
104
+ - lib/enterprisifier/code_generation/generators/sequence_generator.rb
105
+ - lib/enterprisifier/code_generation/generators/simple_content_generator.rb
106
+ - lib/enterprisifier/code_generation/generators/simple_type_generator.rb
107
+ - lib/enterprisifier/code_generation/generators/union_generator.rb
108
+ - lib/enterprisifier/constants.rb
109
+ - lib/enterprisifier/logging.rb
110
+ - lib/enterprisifier/marshalling.rb
111
+ - lib/enterprisifier/marshalling/builder.rb
112
+ - lib/enterprisifier/marshalling/instantiatable_element.rb
113
+ - lib/enterprisifier/marshalling/namespace.rb
114
+ - lib/enterprisifier/marshalling/reification.rb
115
+ - lib/enterprisifier/marshalling/schema_composition.rb
116
+ - lib/enterprisifier/marshalling/xsd/schema/attribute.rb
117
+ - lib/enterprisifier/marshalling/xsd/schema/choice.rb
118
+ - lib/enterprisifier/marshalling/xsd/schema/complex_content.rb
119
+ - lib/enterprisifier/marshalling/xsd/schema/complex_type.rb
120
+ - lib/enterprisifier/marshalling/xsd/schema/element.rb
121
+ - lib/enterprisifier/marshalling/xsd/schema/extension.rb
122
+ - lib/enterprisifier/marshalling/xsd/schema/group.rb
123
+ - lib/enterprisifier/marshalling/xsd/schema/restriction.rb
124
+ - lib/enterprisifier/marshalling/xsd/schema/sequence.rb
125
+ - lib/enterprisifier/marshalling/xsd/schema/simple_content.rb
126
+ - lib/enterprisifier/marshalling/xsd/schema/simple_type.rb
127
+ - lib/enterprisifier/marshalling/xsd/schema/union.rb
128
+ - lib/enterprisifier/marshalling/xsd/types/boolean.rb
129
+ - lib/enterprisifier/marshalling/xsd/types/date.rb
130
+ - lib/enterprisifier/marshalling/xsd/types/date_time.rb
131
+ - lib/enterprisifier/marshalling/xsd/types/decimal.rb
132
+ - lib/enterprisifier/marshalling/xsd/types/string.rb
133
+ - lib/enterprisifier/marshalling/xsd/types/time.rb
134
+ - lib/enterprisifier/schema.rb
135
+ - lib/enterprisifier/schema/base_element.rb
136
+ - lib/enterprisifier/schema/element_factory.rb
137
+ - lib/enterprisifier/schema/elements/annotation.rb
138
+ - lib/enterprisifier/schema/elements/attribute.rb
139
+ - lib/enterprisifier/schema/elements/choice.rb
140
+ - lib/enterprisifier/schema/elements/complex_content.rb
141
+ - lib/enterprisifier/schema/elements/complex_type.rb
142
+ - lib/enterprisifier/schema/elements/documentation.rb
143
+ - lib/enterprisifier/schema/elements/element.rb
144
+ - lib/enterprisifier/schema/elements/enumeration.rb
145
+ - lib/enterprisifier/schema/elements/extension.rb
146
+ - lib/enterprisifier/schema/elements/fraction_digits.rb
147
+ - lib/enterprisifier/schema/elements/group.rb
148
+ - lib/enterprisifier/schema/elements/import.rb
149
+ - lib/enterprisifier/schema/elements/include.rb
150
+ - lib/enterprisifier/schema/elements/max_inclusive.rb
151
+ - lib/enterprisifier/schema/elements/min_inclusive.rb
152
+ - lib/enterprisifier/schema/elements/pattern.rb
153
+ - lib/enterprisifier/schema/elements/restriction.rb
154
+ - lib/enterprisifier/schema/elements/schema.rb
155
+ - lib/enterprisifier/schema/elements/sequence.rb
156
+ - lib/enterprisifier/schema/elements/simple_content.rb
157
+ - lib/enterprisifier/schema/elements/simple_type.rb
158
+ - lib/enterprisifier/schema/elements/union.rb
159
+ - lib/enterprisifier/schema/elements/unknown_element.rb
160
+ - lib/enterprisifier/schema/loader.rb
161
+ - test/enterprisifier_test.rb
162
+ - test/example/e_business_for_media/aaaa/elements/aaaa_message_header.rb
163
+ - test/example/e_business_for_media/aaaa/elements/aaaa_values.rb
164
+ - test/example/e_business_for_media/aaaa/elements/action.rb
165
+ - test/example/e_business_for_media/aaaa/elements/business_object.rb
166
+ - test/example/e_business_for_media/aaaa/elements/media.rb
167
+ - test/example/e_business_for_media/aaaa/elements/schema_name.rb
168
+ - test/example/e_business_for_media/aaaa/elements/schema_version.rb
169
+ - test/example/e_business_for_media/aaaa/elements/unique_message_id.rb
170
+ - test/example/e_business_for_media/aaaa/types/aaaa_message_type.rb
171
+ - test/example/e_business_for_media/aaaa/types/action_string.rb
172
+ - test/example/e_business_for_media/aaaa/types/business_object_string.rb
173
+ - test/example/e_business_for_media/aaaa/types/guid.rb
174
+ - test/example/e_business_for_media/aaaa/types/media_string.rb
175
+ - test/example/e_business_for_media/aaaa/types/schema_name_string.rb
176
+ - test/example/e_business_for_media/aaaa/types/schema_version_string.rb
177
+ - test/example/e_business_for_media/aaaa/types/unique_message_id.rb
178
+ - test/example/e_business_for_media/iab/attributes/currency.rb
179
+ - test/example/e_business_for_media/iab/attributes/id_owner.rb
180
+ - test/example/e_business_for_media/iab/attributes/name.rb
181
+ - test/example/e_business_for_media/iab/attributes/prefix.rb
182
+ - test/example/e_business_for_media/iab/attributes/primary.rb
183
+ - test/example/e_business_for_media/iab/attributes/script.rb
184
+ - test/example/e_business_for_media/iab/attributes/sms_enabled.rb
185
+ - test/example/e_business_for_media/iab/attributes/type.rb
186
+ - test/example/e_business_for_media/iab/attributes/valid_from.rb
187
+ - test/example/e_business_for_media/iab/attributes/valid_to.rb
188
+ - test/example/e_business_for_media/iab/elements/ad_server.rb
189
+ - test/example/e_business_for_media/iab/elements/additional_metrics.rb
190
+ - test/example/e_business_for_media/iab/elements/address.rb
191
+ - test/example/e_business_for_media/iab/elements/address_line.rb
192
+ - test/example/e_business_for_media/iab/elements/advertiser.rb
193
+ - test/example/e_business_for_media/iab/elements/affix.rb
194
+ - test/example/e_business_for_media/iab/elements/agency.rb
195
+ - test/example/e_business_for_media/iab/elements/agency_commission.rb
196
+ - test/example/e_business_for_media/iab/elements/alternate_script.rb
197
+ - test/example/e_business_for_media/iab/elements/amount.rb
198
+ - test/example/e_business_for_media/iab/elements/area_city_code.rb
199
+ - test/example/e_business_for_media/iab/elements/attachments.rb
200
+ - test/example/e_business_for_media/iab/elements/audience.rb
201
+ - test/example/e_business_for_media/iab/elements/background.rb
202
+ - test/example/e_business_for_media/iab/elements/basis.rb
203
+ - test/example/e_business_for_media/iab/elements/billing_frequency.rb
204
+ - test/example/e_business_for_media/iab/elements/billing_info.rb
205
+ - test/example/e_business_for_media/iab/elements/billing_notes.rb
206
+ - test/example/e_business_for_media/iab/elements/billing_partner.rb
207
+ - test/example/e_business_for_media/iab/elements/billing_statistics_source.rb
208
+ - test/example/e_business_for_media/iab/elements/brand_name.rb
209
+ - test/example/e_business_for_media/iab/elements/budget.rb
210
+ - test/example/e_business_for_media/iab/elements/building_number.rb
211
+ - test/example/e_business_for_media/iab/elements/campaign_brief.rb
212
+ - test/example/e_business_for_media/iab/elements/campaign_reference_id.rb
213
+ - test/example/e_business_for_media/iab/elements/campaign_reference_info.rb
214
+ - test/example/e_business_for_media/iab/elements/category.rb
215
+ - test/example/e_business_for_media/iab/elements/context.rb
216
+ - test/example/e_business_for_media/iab/elements/contract_details.rb
217
+ - test/example/e_business_for_media/iab/elements/count.rb
218
+ - test/example/e_business_for_media/iab/elements/country_code.rb
219
+ - test/example/e_business_for_media/iab/elements/created_date.rb
220
+ - test/example/e_business_for_media/iab/elements/creating_system.rb
221
+ - test/example/e_business_for_media/iab/elements/date.rb
222
+ - test/example/e_business_for_media/iab/elements/delivery.rb
223
+ - test/example/e_business_for_media/iab/elements/delivery_address.rb
224
+ - test/example/e_business_for_media/iab/elements/description.rb
225
+ - test/example/e_business_for_media/iab/elements/desired_positioning_notes.rb
226
+ - test/example/e_business_for_media/iab/elements/destination_system.rb
227
+ - test/example/e_business_for_media/iab/elements/discount.rb
228
+ - test/example/e_business_for_media/iab/elements/distribution.rb
229
+ - test/example/e_business_for_media/iab/elements/document_id.rb
230
+ - test/example/e_business_for_media/iab/elements/document_name.rb
231
+ - test/example/e_business_for_media/iab/elements/document_sender.rb
232
+ - test/example/e_business_for_media/iab/elements/due_date.rb
233
+ - test/example/e_business_for_media/iab/elements/end_date.rb
234
+ - test/example/e_business_for_media/iab/elements/extension.rb
235
+ - test/example/e_business_for_media/iab/elements/family_name.rb
236
+ - test/example/e_business_for_media/iab/elements/fax.rb
237
+ - test/example/e_business_for_media/iab/elements/flight_exclusivity_guidelines.rb
238
+ - test/example/e_business_for_media/iab/elements/format.rb
239
+ - test/example/e_business_for_media/iab/elements/formatted_name.rb
240
+ - test/example/e_business_for_media/iab/elements/formatted_number.rb
241
+ - test/example/e_business_for_media/iab/elements/geographic_considerations.rb
242
+ - test/example/e_business_for_media/iab/elements/given_name.rb
243
+ - test/example/e_business_for_media/iab/elements/goal.rb
244
+ - test/example/e_business_for_media/iab/elements/gross_cost.rb
245
+ - test/example/e_business_for_media/iab/elements/iab_advertiser_info.rb
246
+ - test/example/e_business_for_media/iab/elements/iab_billing_info.rb
247
+ - test/example/e_business_for_media/iab/elements/iab_message_base.rb
248
+ - test/example/e_business_for_media/iab/elements/iab_message_header.rb
249
+ - test/example/e_business_for_media/iab/elements/iab_publisher_info.rb
250
+ - test/example/e_business_for_media/iab/elements/iab_type_of_contact.rb
251
+ - test/example/e_business_for_media/iab/elements/id.rb
252
+ - test/example/e_business_for_media/iab/elements/id_value.rb
253
+ - test/example/e_business_for_media/iab/elements/in_reference_to.rb
254
+ - test/example/e_business_for_media/iab/elements/industry.rb
255
+ - test/example/e_business_for_media/iab/elements/instructions.rb
256
+ - test/example/e_business_for_media/iab/elements/international_country_code.rb
257
+ - test/example/e_business_for_media/iab/elements/internet_email_address.rb
258
+ - test/example/e_business_for_media/iab/elements/internet_web_address.rb
259
+ - test/example/e_business_for_media/iab/elements/legal_name.rb
260
+ - test/example/e_business_for_media/iab/elements/link.rb
261
+ - test/example/e_business_for_media/iab/elements/location.rb
262
+ - test/example/e_business_for_media/iab/elements/make_good_policy.rb
263
+ - test/example/e_business_for_media/iab/elements/middle_name.rb
264
+ - test/example/e_business_for_media/iab/elements/mobile.rb
265
+ - test/example/e_business_for_media/iab/elements/municipality.rb
266
+ - test/example/e_business_for_media/iab/elements/name.rb
267
+ - test/example/e_business_for_media/iab/elements/national_number.rb
268
+ - test/example/e_business_for_media/iab/elements/net_cost.rb
269
+ - test/example/e_business_for_media/iab/elements/non_standard_value.rb
270
+ - test/example/e_business_for_media/iab/elements/notes.rb
271
+ - test/example/e_business_for_media/iab/elements/order_status.rb
272
+ - test/example/e_business_for_media/iab/elements/other_contacts.rb
273
+ - test/example/e_business_for_media/iab/elements/other_id.rb
274
+ - test/example/e_business_for_media/iab/elements/other_target.rb
275
+ - test/example/e_business_for_media/iab/elements/out_clause.rb
276
+ - test/example/e_business_for_media/iab/elements/pager.rb
277
+ - test/example/e_business_for_media/iab/elements/partner.rb
278
+ - test/example/e_business_for_media/iab/elements/payment_terms.rb
279
+ - test/example/e_business_for_media/iab/elements/payment_type.rb
280
+ - test/example/e_business_for_media/iab/elements/percent.rb
281
+ - test/example/e_business_for_media/iab/elements/person_name.rb
282
+ - test/example/e_business_for_media/iab/elements/post_office_box.rb
283
+ - test/example/e_business_for_media/iab/elements/postal_address.rb
284
+ - test/example/e_business_for_media/iab/elements/postal_code.rb
285
+ - test/example/e_business_for_media/iab/elements/preferred_given_name.rb
286
+ - test/example/e_business_for_media/iab/elements/primary_contact.rb
287
+ - test/example/e_business_for_media/iab/elements/primary_id.rb
288
+ - test/example/e_business_for_media/iab/elements/primary_success_metric.rb
289
+ - test/example/e_business_for_media/iab/elements/product_name.rb
290
+ - test/example/e_business_for_media/iab/elements/property_name.rb
291
+ - test/example/e_business_for_media/iab/elements/publisher.rb
292
+ - test/example/e_business_for_media/iab/elements/referenced_document_id.rb
293
+ - test/example/e_business_for_media/iab/elements/referenced_version.rb
294
+ - test/example/e_business_for_media/iab/elements/region.rb
295
+ - test/example/e_business_for_media/iab/elements/request_for_proposal.rb
296
+ - test/example/e_business_for_media/iab/elements/rfp_details.rb
297
+ - test/example/e_business_for_media/iab/elements/rfp_response_requirements.rb
298
+ - test/example/e_business_for_media/iab/elements/role.rb
299
+ - test/example/e_business_for_media/iab/elements/selection_criteria.rb
300
+ - test/example/e_business_for_media/iab/elements/sent_date.rb
301
+ - test/example/e_business_for_media/iab/elements/standard_value.rb
302
+ - test/example/e_business_for_media/iab/elements/start_date.rb
303
+ - test/example/e_business_for_media/iab/elements/street_name.rb
304
+ - test/example/e_business_for_media/iab/elements/subscriber_number.rb
305
+ - test/example/e_business_for_media/iab/elements/target_audience.rb
306
+ - test/example/e_business_for_media/iab/elements/targeting.rb
307
+ - test/example/e_business_for_media/iab/elements/telephone.rb
308
+ - test/example/e_business_for_media/iab/elements/terms_and_conditions.rb
309
+ - test/example/e_business_for_media/iab/elements/terms_attachment.rb
310
+ - test/example/e_business_for_media/iab/elements/terms_text.rb
311
+ - test/example/e_business_for_media/iab/elements/time.rb
312
+ - test/example/e_business_for_media/iab/elements/title.rb
313
+ - test/example/e_business_for_media/iab/elements/ttytdd.rb
314
+ - test/example/e_business_for_media/iab/elements/type.rb
315
+ - test/example/e_business_for_media/iab/elements/unit.rb
316
+ - test/example/e_business_for_media/iab/elements/use.rb
317
+ - test/example/e_business_for_media/iab/elements/value.rb
318
+ - test/example/e_business_for_media/iab/elements/version.rb
319
+ - test/example/e_business_for_media/iab/elements/when_available.rb
320
+ - test/example/e_business_for_media/iab/elements/zero_cost.rb
321
+ - test/example/e_business_for_media/iab/groups/telcom_number_group.rb
322
+ - test/example/e_business_for_media/iab/types/attachment_type.rb
323
+ - test/example/e_business_for_media/iab/types/base_cost.rb
324
+ - test/example/e_business_for_media/iab/types/base_target_type.rb
325
+ - test/example/e_business_for_media/iab/types/base_unit.rb
326
+ - test/example/e_business_for_media/iab/types/campaign_reference_info_type.rb
327
+ - test/example/e_business_for_media/iab/types/contact_method_location_pattern_extension_type.rb
328
+ - test/example/e_business_for_media/iab/types/contact_method_location_type.rb
329
+ - test/example/e_business_for_media/iab/types/contact_method_type.rb
330
+ - test/example/e_business_for_media/iab/types/contact_method_use_pattern_extension_type.rb
331
+ - test/example/e_business_for_media/iab/types/contact_method_use_type.rb
332
+ - test/example/e_business_for_media/iab/types/contact_method_when_available_type.rb
333
+ - test/example/e_business_for_media/iab/types/contract_details_type.rb
334
+ - test/example/e_business_for_media/iab/types/cost_method_enumeration.rb
335
+ - test/example/e_business_for_media/iab/types/cost_method_type.rb
336
+ - test/example/e_business_for_media/iab/types/currency_code_type.rb
337
+ - test/example/e_business_for_media/iab/types/discount_type.rb
338
+ - test/example/e_business_for_media/iab/types/entity_id_type.rb
339
+ - test/example/e_business_for_media/iab/types/generic_target_type.rb
340
+ - test/example/e_business_for_media/iab/types/iab_advertiser_info_type.rb
341
+ - test/example/e_business_for_media/iab/types/iab_billing_info_type.rb
342
+ - test/example/e_business_for_media/iab/types/iab_contact_method_type.rb
343
+ - test/example/e_business_for_media/iab/types/iab_date_time_type.rb
344
+ - test/example/e_business_for_media/iab/types/iab_distribution_enumerated_type.rb
345
+ - test/example/e_business_for_media/iab/types/iab_distribution_type.rb
346
+ - test/example/e_business_for_media/iab/types/iab_message_base_type.rb
347
+ - test/example/e_business_for_media/iab/types/iab_message_header_type.rb
348
+ - test/example/e_business_for_media/iab/types/iab_partner_info_type.rb
349
+ - test/example/e_business_for_media/iab/types/iab_payment_terms_enumerated_type.rb
350
+ - test/example/e_business_for_media/iab/types/iab_payment_terms_type.rb
351
+ - test/example/e_business_for_media/iab/types/iab_payment_type_enumerated_type.rb
352
+ - test/example/e_business_for_media/iab/types/iab_publisher_info_type.rb
353
+ - test/example/e_business_for_media/iab/types/iab_type_of_contact_type.rb
354
+ - test/example/e_business_for_media/iab/types/internet_email_address_type.rb
355
+ - test/example/e_business_for_media/iab/types/internet_web_address_type.rb
356
+ - test/example/e_business_for_media/iab/types/mobile_telcom_number_type.rb
357
+ - test/example/e_business_for_media/iab/types/monetary_type.rb
358
+ - test/example/e_business_for_media/iab/types/percentage_type.rb
359
+ - test/example/e_business_for_media/iab/types/person_name_type.rb
360
+ - test/example/e_business_for_media/iab/types/postal_address_type.rb
361
+ - test/example/e_business_for_media/iab/types/request_for_proposal_type.rb
362
+ - test/example/e_business_for_media/iab/types/rfp_details_type.rb
363
+ - test/example/e_business_for_media/iab/types/rfp_response_requirements_type.rb
364
+ - test/example/e_business_for_media/iab/types/telcom_number_type.rb
365
+ - test/example/e_business_for_media/iab/types/unit_type.rb
366
+ - test/example/e_business_for_media/iab/types/unit_type_enumeration.rb
367
+ - test/example/e_business_for_media/iab/types/zero_cost_type.rb
368
+ - test/example/e_business_for_media/iab/types/zero_cost_type_enumeration.rb
369
+ - test/marshalling_test.rb
370
+ - test/mocks.rb
371
+ - test/teststrap.rb
372
+ - test/xsd/AAAA_Common.xsd
373
+ - test/xsd/HRXMLlicense.txt
374
+ - test/xsd/IAB_Acknowledgement.xsd
375
+ - test/xsd/IAB_AdvertiserCommon.xsd
376
+ - test/xsd/IAB_BillingCommon.xsd
377
+ - test/xsd/IAB_CampaignCommon.xsd
378
+ - test/xsd/IAB_Common.xsd
379
+ - test/xsd/IAB_ContractCommon.xsd
380
+ - test/xsd/IAB_InsertionOrderCommon.xsd
381
+ - test/xsd/IAB_LineItemCommon.xsd
382
+ - test/xsd/IAB_MessageCommon.xsd
383
+ - test/xsd/IAB_OrderCommon.xsd
384
+ - test/xsd/IAB_ProposalCommon.xsd
385
+ - test/xsd/IAB_PublisherCommon.xsd
386
+ - test/xsd/IAB_RFPCommon.xsd
387
+ has_rdoc: true
388
+ homepage: http://github.com/gabrielg/enterprisifier
389
+ licenses: []
390
+
391
+ post_install_message:
392
+ rdoc_options:
393
+ - --charset=UTF-8
394
+ require_paths:
395
+ - lib
396
+ required_ruby_version: !ruby/object:Gem::Requirement
397
+ requirements:
398
+ - - ">="
399
+ - !ruby/object:Gem::Version
400
+ version: "0"
401
+ version:
402
+ required_rubygems_version: !ruby/object:Gem::Requirement
403
+ requirements:
404
+ - - ">="
405
+ - !ruby/object:Gem::Version
406
+ version: "0"
407
+ version:
408
+ requirements: []
409
+
410
+ rubyforge_project:
411
+ rubygems_version: 1.3.5
412
+ signing_key:
413
+ specification_version: 3
414
+ summary: Makes things enterprisey.
415
+ test_files:
416
+ - test/enterprisifier_test.rb
417
+ - test/example/e_business_for_media/aaaa/elements/aaaa_message_header.rb
418
+ - test/example/e_business_for_media/aaaa/elements/aaaa_values.rb
419
+ - test/example/e_business_for_media/aaaa/elements/action.rb
420
+ - test/example/e_business_for_media/aaaa/elements/business_object.rb
421
+ - test/example/e_business_for_media/aaaa/elements/media.rb
422
+ - test/example/e_business_for_media/aaaa/elements/schema_name.rb
423
+ - test/example/e_business_for_media/aaaa/elements/schema_version.rb
424
+ - test/example/e_business_for_media/aaaa/elements/unique_message_id.rb
425
+ - test/example/e_business_for_media/aaaa/types/aaaa_message_type.rb
426
+ - test/example/e_business_for_media/aaaa/types/action_string.rb
427
+ - test/example/e_business_for_media/aaaa/types/business_object_string.rb
428
+ - test/example/e_business_for_media/aaaa/types/guid.rb
429
+ - test/example/e_business_for_media/aaaa/types/media_string.rb
430
+ - test/example/e_business_for_media/aaaa/types/schema_name_string.rb
431
+ - test/example/e_business_for_media/aaaa/types/schema_version_string.rb
432
+ - test/example/e_business_for_media/aaaa/types/unique_message_id.rb
433
+ - test/example/e_business_for_media/iab/attributes/currency.rb
434
+ - test/example/e_business_for_media/iab/attributes/id_owner.rb
435
+ - test/example/e_business_for_media/iab/attributes/name.rb
436
+ - test/example/e_business_for_media/iab/attributes/prefix.rb
437
+ - test/example/e_business_for_media/iab/attributes/primary.rb
438
+ - test/example/e_business_for_media/iab/attributes/script.rb
439
+ - test/example/e_business_for_media/iab/attributes/sms_enabled.rb
440
+ - test/example/e_business_for_media/iab/attributes/type.rb
441
+ - test/example/e_business_for_media/iab/attributes/valid_from.rb
442
+ - test/example/e_business_for_media/iab/attributes/valid_to.rb
443
+ - test/example/e_business_for_media/iab/elements/ad_server.rb
444
+ - test/example/e_business_for_media/iab/elements/additional_metrics.rb
445
+ - test/example/e_business_for_media/iab/elements/address.rb
446
+ - test/example/e_business_for_media/iab/elements/address_line.rb
447
+ - test/example/e_business_for_media/iab/elements/advertiser.rb
448
+ - test/example/e_business_for_media/iab/elements/affix.rb
449
+ - test/example/e_business_for_media/iab/elements/agency.rb
450
+ - test/example/e_business_for_media/iab/elements/agency_commission.rb
451
+ - test/example/e_business_for_media/iab/elements/alternate_script.rb
452
+ - test/example/e_business_for_media/iab/elements/amount.rb
453
+ - test/example/e_business_for_media/iab/elements/area_city_code.rb
454
+ - test/example/e_business_for_media/iab/elements/attachments.rb
455
+ - test/example/e_business_for_media/iab/elements/audience.rb
456
+ - test/example/e_business_for_media/iab/elements/background.rb
457
+ - test/example/e_business_for_media/iab/elements/basis.rb
458
+ - test/example/e_business_for_media/iab/elements/billing_frequency.rb
459
+ - test/example/e_business_for_media/iab/elements/billing_info.rb
460
+ - test/example/e_business_for_media/iab/elements/billing_notes.rb
461
+ - test/example/e_business_for_media/iab/elements/billing_partner.rb
462
+ - test/example/e_business_for_media/iab/elements/billing_statistics_source.rb
463
+ - test/example/e_business_for_media/iab/elements/brand_name.rb
464
+ - test/example/e_business_for_media/iab/elements/budget.rb
465
+ - test/example/e_business_for_media/iab/elements/building_number.rb
466
+ - test/example/e_business_for_media/iab/elements/campaign_brief.rb
467
+ - test/example/e_business_for_media/iab/elements/campaign_reference_id.rb
468
+ - test/example/e_business_for_media/iab/elements/campaign_reference_info.rb
469
+ - test/example/e_business_for_media/iab/elements/category.rb
470
+ - test/example/e_business_for_media/iab/elements/context.rb
471
+ - test/example/e_business_for_media/iab/elements/contract_details.rb
472
+ - test/example/e_business_for_media/iab/elements/count.rb
473
+ - test/example/e_business_for_media/iab/elements/country_code.rb
474
+ - test/example/e_business_for_media/iab/elements/created_date.rb
475
+ - test/example/e_business_for_media/iab/elements/creating_system.rb
476
+ - test/example/e_business_for_media/iab/elements/date.rb
477
+ - test/example/e_business_for_media/iab/elements/delivery.rb
478
+ - test/example/e_business_for_media/iab/elements/delivery_address.rb
479
+ - test/example/e_business_for_media/iab/elements/description.rb
480
+ - test/example/e_business_for_media/iab/elements/desired_positioning_notes.rb
481
+ - test/example/e_business_for_media/iab/elements/destination_system.rb
482
+ - test/example/e_business_for_media/iab/elements/discount.rb
483
+ - test/example/e_business_for_media/iab/elements/distribution.rb
484
+ - test/example/e_business_for_media/iab/elements/document_id.rb
485
+ - test/example/e_business_for_media/iab/elements/document_name.rb
486
+ - test/example/e_business_for_media/iab/elements/document_sender.rb
487
+ - test/example/e_business_for_media/iab/elements/due_date.rb
488
+ - test/example/e_business_for_media/iab/elements/end_date.rb
489
+ - test/example/e_business_for_media/iab/elements/extension.rb
490
+ - test/example/e_business_for_media/iab/elements/family_name.rb
491
+ - test/example/e_business_for_media/iab/elements/fax.rb
492
+ - test/example/e_business_for_media/iab/elements/flight_exclusivity_guidelines.rb
493
+ - test/example/e_business_for_media/iab/elements/format.rb
494
+ - test/example/e_business_for_media/iab/elements/formatted_name.rb
495
+ - test/example/e_business_for_media/iab/elements/formatted_number.rb
496
+ - test/example/e_business_for_media/iab/elements/geographic_considerations.rb
497
+ - test/example/e_business_for_media/iab/elements/given_name.rb
498
+ - test/example/e_business_for_media/iab/elements/goal.rb
499
+ - test/example/e_business_for_media/iab/elements/gross_cost.rb
500
+ - test/example/e_business_for_media/iab/elements/iab_advertiser_info.rb
501
+ - test/example/e_business_for_media/iab/elements/iab_billing_info.rb
502
+ - test/example/e_business_for_media/iab/elements/iab_message_base.rb
503
+ - test/example/e_business_for_media/iab/elements/iab_message_header.rb
504
+ - test/example/e_business_for_media/iab/elements/iab_publisher_info.rb
505
+ - test/example/e_business_for_media/iab/elements/iab_type_of_contact.rb
506
+ - test/example/e_business_for_media/iab/elements/id.rb
507
+ - test/example/e_business_for_media/iab/elements/id_value.rb
508
+ - test/example/e_business_for_media/iab/elements/in_reference_to.rb
509
+ - test/example/e_business_for_media/iab/elements/industry.rb
510
+ - test/example/e_business_for_media/iab/elements/instructions.rb
511
+ - test/example/e_business_for_media/iab/elements/international_country_code.rb
512
+ - test/example/e_business_for_media/iab/elements/internet_email_address.rb
513
+ - test/example/e_business_for_media/iab/elements/internet_web_address.rb
514
+ - test/example/e_business_for_media/iab/elements/legal_name.rb
515
+ - test/example/e_business_for_media/iab/elements/link.rb
516
+ - test/example/e_business_for_media/iab/elements/location.rb
517
+ - test/example/e_business_for_media/iab/elements/make_good_policy.rb
518
+ - test/example/e_business_for_media/iab/elements/middle_name.rb
519
+ - test/example/e_business_for_media/iab/elements/mobile.rb
520
+ - test/example/e_business_for_media/iab/elements/municipality.rb
521
+ - test/example/e_business_for_media/iab/elements/name.rb
522
+ - test/example/e_business_for_media/iab/elements/national_number.rb
523
+ - test/example/e_business_for_media/iab/elements/net_cost.rb
524
+ - test/example/e_business_for_media/iab/elements/non_standard_value.rb
525
+ - test/example/e_business_for_media/iab/elements/notes.rb
526
+ - test/example/e_business_for_media/iab/elements/order_status.rb
527
+ - test/example/e_business_for_media/iab/elements/other_contacts.rb
528
+ - test/example/e_business_for_media/iab/elements/other_id.rb
529
+ - test/example/e_business_for_media/iab/elements/other_target.rb
530
+ - test/example/e_business_for_media/iab/elements/out_clause.rb
531
+ - test/example/e_business_for_media/iab/elements/pager.rb
532
+ - test/example/e_business_for_media/iab/elements/partner.rb
533
+ - test/example/e_business_for_media/iab/elements/payment_terms.rb
534
+ - test/example/e_business_for_media/iab/elements/payment_type.rb
535
+ - test/example/e_business_for_media/iab/elements/percent.rb
536
+ - test/example/e_business_for_media/iab/elements/person_name.rb
537
+ - test/example/e_business_for_media/iab/elements/post_office_box.rb
538
+ - test/example/e_business_for_media/iab/elements/postal_address.rb
539
+ - test/example/e_business_for_media/iab/elements/postal_code.rb
540
+ - test/example/e_business_for_media/iab/elements/preferred_given_name.rb
541
+ - test/example/e_business_for_media/iab/elements/primary_contact.rb
542
+ - test/example/e_business_for_media/iab/elements/primary_id.rb
543
+ - test/example/e_business_for_media/iab/elements/primary_success_metric.rb
544
+ - test/example/e_business_for_media/iab/elements/product_name.rb
545
+ - test/example/e_business_for_media/iab/elements/property_name.rb
546
+ - test/example/e_business_for_media/iab/elements/publisher.rb
547
+ - test/example/e_business_for_media/iab/elements/referenced_document_id.rb
548
+ - test/example/e_business_for_media/iab/elements/referenced_version.rb
549
+ - test/example/e_business_for_media/iab/elements/region.rb
550
+ - test/example/e_business_for_media/iab/elements/request_for_proposal.rb
551
+ - test/example/e_business_for_media/iab/elements/rfp_details.rb
552
+ - test/example/e_business_for_media/iab/elements/rfp_response_requirements.rb
553
+ - test/example/e_business_for_media/iab/elements/role.rb
554
+ - test/example/e_business_for_media/iab/elements/selection_criteria.rb
555
+ - test/example/e_business_for_media/iab/elements/sent_date.rb
556
+ - test/example/e_business_for_media/iab/elements/standard_value.rb
557
+ - test/example/e_business_for_media/iab/elements/start_date.rb
558
+ - test/example/e_business_for_media/iab/elements/street_name.rb
559
+ - test/example/e_business_for_media/iab/elements/subscriber_number.rb
560
+ - test/example/e_business_for_media/iab/elements/target_audience.rb
561
+ - test/example/e_business_for_media/iab/elements/targeting.rb
562
+ - test/example/e_business_for_media/iab/elements/telephone.rb
563
+ - test/example/e_business_for_media/iab/elements/terms_and_conditions.rb
564
+ - test/example/e_business_for_media/iab/elements/terms_attachment.rb
565
+ - test/example/e_business_for_media/iab/elements/terms_text.rb
566
+ - test/example/e_business_for_media/iab/elements/time.rb
567
+ - test/example/e_business_for_media/iab/elements/title.rb
568
+ - test/example/e_business_for_media/iab/elements/ttytdd.rb
569
+ - test/example/e_business_for_media/iab/elements/type.rb
570
+ - test/example/e_business_for_media/iab/elements/unit.rb
571
+ - test/example/e_business_for_media/iab/elements/use.rb
572
+ - test/example/e_business_for_media/iab/elements/value.rb
573
+ - test/example/e_business_for_media/iab/elements/version.rb
574
+ - test/example/e_business_for_media/iab/elements/when_available.rb
575
+ - test/example/e_business_for_media/iab/elements/zero_cost.rb
576
+ - test/example/e_business_for_media/iab/groups/telcom_number_group.rb
577
+ - test/example/e_business_for_media/iab/types/attachment_type.rb
578
+ - test/example/e_business_for_media/iab/types/base_cost.rb
579
+ - test/example/e_business_for_media/iab/types/base_target_type.rb
580
+ - test/example/e_business_for_media/iab/types/base_unit.rb
581
+ - test/example/e_business_for_media/iab/types/campaign_reference_info_type.rb
582
+ - test/example/e_business_for_media/iab/types/contact_method_location_pattern_extension_type.rb
583
+ - test/example/e_business_for_media/iab/types/contact_method_location_type.rb
584
+ - test/example/e_business_for_media/iab/types/contact_method_type.rb
585
+ - test/example/e_business_for_media/iab/types/contact_method_use_pattern_extension_type.rb
586
+ - test/example/e_business_for_media/iab/types/contact_method_use_type.rb
587
+ - test/example/e_business_for_media/iab/types/contact_method_when_available_type.rb
588
+ - test/example/e_business_for_media/iab/types/contract_details_type.rb
589
+ - test/example/e_business_for_media/iab/types/cost_method_enumeration.rb
590
+ - test/example/e_business_for_media/iab/types/cost_method_type.rb
591
+ - test/example/e_business_for_media/iab/types/currency_code_type.rb
592
+ - test/example/e_business_for_media/iab/types/discount_type.rb
593
+ - test/example/e_business_for_media/iab/types/entity_id_type.rb
594
+ - test/example/e_business_for_media/iab/types/generic_target_type.rb
595
+ - test/example/e_business_for_media/iab/types/iab_advertiser_info_type.rb
596
+ - test/example/e_business_for_media/iab/types/iab_billing_info_type.rb
597
+ - test/example/e_business_for_media/iab/types/iab_contact_method_type.rb
598
+ - test/example/e_business_for_media/iab/types/iab_date_time_type.rb
599
+ - test/example/e_business_for_media/iab/types/iab_distribution_enumerated_type.rb
600
+ - test/example/e_business_for_media/iab/types/iab_distribution_type.rb
601
+ - test/example/e_business_for_media/iab/types/iab_message_base_type.rb
602
+ - test/example/e_business_for_media/iab/types/iab_message_header_type.rb
603
+ - test/example/e_business_for_media/iab/types/iab_partner_info_type.rb
604
+ - test/example/e_business_for_media/iab/types/iab_payment_terms_enumerated_type.rb
605
+ - test/example/e_business_for_media/iab/types/iab_payment_terms_type.rb
606
+ - test/example/e_business_for_media/iab/types/iab_payment_type_enumerated_type.rb
607
+ - test/example/e_business_for_media/iab/types/iab_publisher_info_type.rb
608
+ - test/example/e_business_for_media/iab/types/iab_type_of_contact_type.rb
609
+ - test/example/e_business_for_media/iab/types/internet_email_address_type.rb
610
+ - test/example/e_business_for_media/iab/types/internet_web_address_type.rb
611
+ - test/example/e_business_for_media/iab/types/mobile_telcom_number_type.rb
612
+ - test/example/e_business_for_media/iab/types/monetary_type.rb
613
+ - test/example/e_business_for_media/iab/types/percentage_type.rb
614
+ - test/example/e_business_for_media/iab/types/person_name_type.rb
615
+ - test/example/e_business_for_media/iab/types/postal_address_type.rb
616
+ - test/example/e_business_for_media/iab/types/request_for_proposal_type.rb
617
+ - test/example/e_business_for_media/iab/types/rfp_details_type.rb
618
+ - test/example/e_business_for_media/iab/types/rfp_response_requirements_type.rb
619
+ - test/example/e_business_for_media/iab/types/telcom_number_type.rb
620
+ - test/example/e_business_for_media/iab/types/unit_type.rb
621
+ - test/example/e_business_for_media/iab/types/unit_type_enumeration.rb
622
+ - test/example/e_business_for_media/iab/types/zero_cost_type.rb
623
+ - test/example/e_business_for_media/iab/types/zero_cost_type_enumeration.rb
624
+ - test/marshalling_test.rb
625
+ - test/mocks.rb
626
+ - test/teststrap.rb