enterprisifier 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
@@ -0,0 +1,571 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{enterprisifier}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["gabrielg"]
|
12
|
+
s.date = %q{2010-02-19}
|
13
|
+
s.description = %q{ENTERPRISE}
|
14
|
+
s.email = %q{gabriel.gironda@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.md"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"enterprisifier.gemspec",
|
27
|
+
"lib/enterprisifier.rb",
|
28
|
+
"lib/enterprisifier/code_generation.rb",
|
29
|
+
"lib/enterprisifier/code_generation/code_builder.rb",
|
30
|
+
"lib/enterprisifier/code_generation/code_generator.rb",
|
31
|
+
"lib/enterprisifier/code_generation/generator.rb",
|
32
|
+
"lib/enterprisifier/code_generation/generators/attribute_generator.rb",
|
33
|
+
"lib/enterprisifier/code_generation/generators/choice_generator.rb",
|
34
|
+
"lib/enterprisifier/code_generation/generators/complex_content_generator.rb",
|
35
|
+
"lib/enterprisifier/code_generation/generators/complex_type_generator.rb",
|
36
|
+
"lib/enterprisifier/code_generation/generators/element_generator.rb",
|
37
|
+
"lib/enterprisifier/code_generation/generators/extension_generator.rb",
|
38
|
+
"lib/enterprisifier/code_generation/generators/group_generator.rb",
|
39
|
+
"lib/enterprisifier/code_generation/generators/restriction_generator.rb",
|
40
|
+
"lib/enterprisifier/code_generation/generators/sequence_generator.rb",
|
41
|
+
"lib/enterprisifier/code_generation/generators/simple_content_generator.rb",
|
42
|
+
"lib/enterprisifier/code_generation/generators/simple_type_generator.rb",
|
43
|
+
"lib/enterprisifier/code_generation/generators/union_generator.rb",
|
44
|
+
"lib/enterprisifier/constants.rb",
|
45
|
+
"lib/enterprisifier/logging.rb",
|
46
|
+
"lib/enterprisifier/marshalling.rb",
|
47
|
+
"lib/enterprisifier/marshalling/builder.rb",
|
48
|
+
"lib/enterprisifier/marshalling/instantiatable_element.rb",
|
49
|
+
"lib/enterprisifier/marshalling/namespace.rb",
|
50
|
+
"lib/enterprisifier/marshalling/reification.rb",
|
51
|
+
"lib/enterprisifier/marshalling/schema_composition.rb",
|
52
|
+
"lib/enterprisifier/marshalling/xsd/schema/attribute.rb",
|
53
|
+
"lib/enterprisifier/marshalling/xsd/schema/choice.rb",
|
54
|
+
"lib/enterprisifier/marshalling/xsd/schema/complex_content.rb",
|
55
|
+
"lib/enterprisifier/marshalling/xsd/schema/complex_type.rb",
|
56
|
+
"lib/enterprisifier/marshalling/xsd/schema/element.rb",
|
57
|
+
"lib/enterprisifier/marshalling/xsd/schema/extension.rb",
|
58
|
+
"lib/enterprisifier/marshalling/xsd/schema/group.rb",
|
59
|
+
"lib/enterprisifier/marshalling/xsd/schema/restriction.rb",
|
60
|
+
"lib/enterprisifier/marshalling/xsd/schema/sequence.rb",
|
61
|
+
"lib/enterprisifier/marshalling/xsd/schema/simple_content.rb",
|
62
|
+
"lib/enterprisifier/marshalling/xsd/schema/simple_type.rb",
|
63
|
+
"lib/enterprisifier/marshalling/xsd/schema/union.rb",
|
64
|
+
"lib/enterprisifier/marshalling/xsd/types/boolean.rb",
|
65
|
+
"lib/enterprisifier/marshalling/xsd/types/date.rb",
|
66
|
+
"lib/enterprisifier/marshalling/xsd/types/date_time.rb",
|
67
|
+
"lib/enterprisifier/marshalling/xsd/types/decimal.rb",
|
68
|
+
"lib/enterprisifier/marshalling/xsd/types/string.rb",
|
69
|
+
"lib/enterprisifier/marshalling/xsd/types/time.rb",
|
70
|
+
"lib/enterprisifier/schema.rb",
|
71
|
+
"lib/enterprisifier/schema/base_element.rb",
|
72
|
+
"lib/enterprisifier/schema/element_factory.rb",
|
73
|
+
"lib/enterprisifier/schema/elements/annotation.rb",
|
74
|
+
"lib/enterprisifier/schema/elements/attribute.rb",
|
75
|
+
"lib/enterprisifier/schema/elements/choice.rb",
|
76
|
+
"lib/enterprisifier/schema/elements/complex_content.rb",
|
77
|
+
"lib/enterprisifier/schema/elements/complex_type.rb",
|
78
|
+
"lib/enterprisifier/schema/elements/documentation.rb",
|
79
|
+
"lib/enterprisifier/schema/elements/element.rb",
|
80
|
+
"lib/enterprisifier/schema/elements/enumeration.rb",
|
81
|
+
"lib/enterprisifier/schema/elements/extension.rb",
|
82
|
+
"lib/enterprisifier/schema/elements/fraction_digits.rb",
|
83
|
+
"lib/enterprisifier/schema/elements/group.rb",
|
84
|
+
"lib/enterprisifier/schema/elements/import.rb",
|
85
|
+
"lib/enterprisifier/schema/elements/include.rb",
|
86
|
+
"lib/enterprisifier/schema/elements/max_inclusive.rb",
|
87
|
+
"lib/enterprisifier/schema/elements/min_inclusive.rb",
|
88
|
+
"lib/enterprisifier/schema/elements/pattern.rb",
|
89
|
+
"lib/enterprisifier/schema/elements/restriction.rb",
|
90
|
+
"lib/enterprisifier/schema/elements/schema.rb",
|
91
|
+
"lib/enterprisifier/schema/elements/sequence.rb",
|
92
|
+
"lib/enterprisifier/schema/elements/simple_content.rb",
|
93
|
+
"lib/enterprisifier/schema/elements/simple_type.rb",
|
94
|
+
"lib/enterprisifier/schema/elements/union.rb",
|
95
|
+
"lib/enterprisifier/schema/elements/unknown_element.rb",
|
96
|
+
"lib/enterprisifier/schema/loader.rb",
|
97
|
+
"test/enterprisifier_test.rb",
|
98
|
+
"test/example/e_business_for_media/aaaa/elements/aaaa_message_header.rb",
|
99
|
+
"test/example/e_business_for_media/aaaa/elements/aaaa_values.rb",
|
100
|
+
"test/example/e_business_for_media/aaaa/elements/action.rb",
|
101
|
+
"test/example/e_business_for_media/aaaa/elements/business_object.rb",
|
102
|
+
"test/example/e_business_for_media/aaaa/elements/media.rb",
|
103
|
+
"test/example/e_business_for_media/aaaa/elements/schema_name.rb",
|
104
|
+
"test/example/e_business_for_media/aaaa/elements/schema_version.rb",
|
105
|
+
"test/example/e_business_for_media/aaaa/elements/unique_message_id.rb",
|
106
|
+
"test/example/e_business_for_media/aaaa/types/aaaa_message_type.rb",
|
107
|
+
"test/example/e_business_for_media/aaaa/types/action_string.rb",
|
108
|
+
"test/example/e_business_for_media/aaaa/types/business_object_string.rb",
|
109
|
+
"test/example/e_business_for_media/aaaa/types/guid.rb",
|
110
|
+
"test/example/e_business_for_media/aaaa/types/media_string.rb",
|
111
|
+
"test/example/e_business_for_media/aaaa/types/schema_name_string.rb",
|
112
|
+
"test/example/e_business_for_media/aaaa/types/schema_version_string.rb",
|
113
|
+
"test/example/e_business_for_media/aaaa/types/unique_message_id.rb",
|
114
|
+
"test/example/e_business_for_media/iab/attributes/currency.rb",
|
115
|
+
"test/example/e_business_for_media/iab/attributes/id_owner.rb",
|
116
|
+
"test/example/e_business_for_media/iab/attributes/name.rb",
|
117
|
+
"test/example/e_business_for_media/iab/attributes/prefix.rb",
|
118
|
+
"test/example/e_business_for_media/iab/attributes/primary.rb",
|
119
|
+
"test/example/e_business_for_media/iab/attributes/script.rb",
|
120
|
+
"test/example/e_business_for_media/iab/attributes/sms_enabled.rb",
|
121
|
+
"test/example/e_business_for_media/iab/attributes/type.rb",
|
122
|
+
"test/example/e_business_for_media/iab/attributes/valid_from.rb",
|
123
|
+
"test/example/e_business_for_media/iab/attributes/valid_to.rb",
|
124
|
+
"test/example/e_business_for_media/iab/elements/ad_server.rb",
|
125
|
+
"test/example/e_business_for_media/iab/elements/additional_metrics.rb",
|
126
|
+
"test/example/e_business_for_media/iab/elements/address.rb",
|
127
|
+
"test/example/e_business_for_media/iab/elements/address_line.rb",
|
128
|
+
"test/example/e_business_for_media/iab/elements/advertiser.rb",
|
129
|
+
"test/example/e_business_for_media/iab/elements/affix.rb",
|
130
|
+
"test/example/e_business_for_media/iab/elements/agency.rb",
|
131
|
+
"test/example/e_business_for_media/iab/elements/agency_commission.rb",
|
132
|
+
"test/example/e_business_for_media/iab/elements/alternate_script.rb",
|
133
|
+
"test/example/e_business_for_media/iab/elements/amount.rb",
|
134
|
+
"test/example/e_business_for_media/iab/elements/area_city_code.rb",
|
135
|
+
"test/example/e_business_for_media/iab/elements/attachments.rb",
|
136
|
+
"test/example/e_business_for_media/iab/elements/audience.rb",
|
137
|
+
"test/example/e_business_for_media/iab/elements/background.rb",
|
138
|
+
"test/example/e_business_for_media/iab/elements/basis.rb",
|
139
|
+
"test/example/e_business_for_media/iab/elements/billing_frequency.rb",
|
140
|
+
"test/example/e_business_for_media/iab/elements/billing_info.rb",
|
141
|
+
"test/example/e_business_for_media/iab/elements/billing_notes.rb",
|
142
|
+
"test/example/e_business_for_media/iab/elements/billing_partner.rb",
|
143
|
+
"test/example/e_business_for_media/iab/elements/billing_statistics_source.rb",
|
144
|
+
"test/example/e_business_for_media/iab/elements/brand_name.rb",
|
145
|
+
"test/example/e_business_for_media/iab/elements/budget.rb",
|
146
|
+
"test/example/e_business_for_media/iab/elements/building_number.rb",
|
147
|
+
"test/example/e_business_for_media/iab/elements/campaign_brief.rb",
|
148
|
+
"test/example/e_business_for_media/iab/elements/campaign_reference_id.rb",
|
149
|
+
"test/example/e_business_for_media/iab/elements/campaign_reference_info.rb",
|
150
|
+
"test/example/e_business_for_media/iab/elements/category.rb",
|
151
|
+
"test/example/e_business_for_media/iab/elements/context.rb",
|
152
|
+
"test/example/e_business_for_media/iab/elements/contract_details.rb",
|
153
|
+
"test/example/e_business_for_media/iab/elements/count.rb",
|
154
|
+
"test/example/e_business_for_media/iab/elements/country_code.rb",
|
155
|
+
"test/example/e_business_for_media/iab/elements/created_date.rb",
|
156
|
+
"test/example/e_business_for_media/iab/elements/creating_system.rb",
|
157
|
+
"test/example/e_business_for_media/iab/elements/date.rb",
|
158
|
+
"test/example/e_business_for_media/iab/elements/delivery.rb",
|
159
|
+
"test/example/e_business_for_media/iab/elements/delivery_address.rb",
|
160
|
+
"test/example/e_business_for_media/iab/elements/description.rb",
|
161
|
+
"test/example/e_business_for_media/iab/elements/desired_positioning_notes.rb",
|
162
|
+
"test/example/e_business_for_media/iab/elements/destination_system.rb",
|
163
|
+
"test/example/e_business_for_media/iab/elements/discount.rb",
|
164
|
+
"test/example/e_business_for_media/iab/elements/distribution.rb",
|
165
|
+
"test/example/e_business_for_media/iab/elements/document_id.rb",
|
166
|
+
"test/example/e_business_for_media/iab/elements/document_name.rb",
|
167
|
+
"test/example/e_business_for_media/iab/elements/document_sender.rb",
|
168
|
+
"test/example/e_business_for_media/iab/elements/due_date.rb",
|
169
|
+
"test/example/e_business_for_media/iab/elements/end_date.rb",
|
170
|
+
"test/example/e_business_for_media/iab/elements/extension.rb",
|
171
|
+
"test/example/e_business_for_media/iab/elements/family_name.rb",
|
172
|
+
"test/example/e_business_for_media/iab/elements/fax.rb",
|
173
|
+
"test/example/e_business_for_media/iab/elements/flight_exclusivity_guidelines.rb",
|
174
|
+
"test/example/e_business_for_media/iab/elements/format.rb",
|
175
|
+
"test/example/e_business_for_media/iab/elements/formatted_name.rb",
|
176
|
+
"test/example/e_business_for_media/iab/elements/formatted_number.rb",
|
177
|
+
"test/example/e_business_for_media/iab/elements/geographic_considerations.rb",
|
178
|
+
"test/example/e_business_for_media/iab/elements/given_name.rb",
|
179
|
+
"test/example/e_business_for_media/iab/elements/goal.rb",
|
180
|
+
"test/example/e_business_for_media/iab/elements/gross_cost.rb",
|
181
|
+
"test/example/e_business_for_media/iab/elements/iab_advertiser_info.rb",
|
182
|
+
"test/example/e_business_for_media/iab/elements/iab_billing_info.rb",
|
183
|
+
"test/example/e_business_for_media/iab/elements/iab_message_base.rb",
|
184
|
+
"test/example/e_business_for_media/iab/elements/iab_message_header.rb",
|
185
|
+
"test/example/e_business_for_media/iab/elements/iab_publisher_info.rb",
|
186
|
+
"test/example/e_business_for_media/iab/elements/iab_type_of_contact.rb",
|
187
|
+
"test/example/e_business_for_media/iab/elements/id.rb",
|
188
|
+
"test/example/e_business_for_media/iab/elements/id_value.rb",
|
189
|
+
"test/example/e_business_for_media/iab/elements/in_reference_to.rb",
|
190
|
+
"test/example/e_business_for_media/iab/elements/industry.rb",
|
191
|
+
"test/example/e_business_for_media/iab/elements/instructions.rb",
|
192
|
+
"test/example/e_business_for_media/iab/elements/international_country_code.rb",
|
193
|
+
"test/example/e_business_for_media/iab/elements/internet_email_address.rb",
|
194
|
+
"test/example/e_business_for_media/iab/elements/internet_web_address.rb",
|
195
|
+
"test/example/e_business_for_media/iab/elements/legal_name.rb",
|
196
|
+
"test/example/e_business_for_media/iab/elements/link.rb",
|
197
|
+
"test/example/e_business_for_media/iab/elements/location.rb",
|
198
|
+
"test/example/e_business_for_media/iab/elements/make_good_policy.rb",
|
199
|
+
"test/example/e_business_for_media/iab/elements/middle_name.rb",
|
200
|
+
"test/example/e_business_for_media/iab/elements/mobile.rb",
|
201
|
+
"test/example/e_business_for_media/iab/elements/municipality.rb",
|
202
|
+
"test/example/e_business_for_media/iab/elements/name.rb",
|
203
|
+
"test/example/e_business_for_media/iab/elements/national_number.rb",
|
204
|
+
"test/example/e_business_for_media/iab/elements/net_cost.rb",
|
205
|
+
"test/example/e_business_for_media/iab/elements/non_standard_value.rb",
|
206
|
+
"test/example/e_business_for_media/iab/elements/notes.rb",
|
207
|
+
"test/example/e_business_for_media/iab/elements/order_status.rb",
|
208
|
+
"test/example/e_business_for_media/iab/elements/other_contacts.rb",
|
209
|
+
"test/example/e_business_for_media/iab/elements/other_id.rb",
|
210
|
+
"test/example/e_business_for_media/iab/elements/other_target.rb",
|
211
|
+
"test/example/e_business_for_media/iab/elements/out_clause.rb",
|
212
|
+
"test/example/e_business_for_media/iab/elements/pager.rb",
|
213
|
+
"test/example/e_business_for_media/iab/elements/partner.rb",
|
214
|
+
"test/example/e_business_for_media/iab/elements/payment_terms.rb",
|
215
|
+
"test/example/e_business_for_media/iab/elements/payment_type.rb",
|
216
|
+
"test/example/e_business_for_media/iab/elements/percent.rb",
|
217
|
+
"test/example/e_business_for_media/iab/elements/person_name.rb",
|
218
|
+
"test/example/e_business_for_media/iab/elements/post_office_box.rb",
|
219
|
+
"test/example/e_business_for_media/iab/elements/postal_address.rb",
|
220
|
+
"test/example/e_business_for_media/iab/elements/postal_code.rb",
|
221
|
+
"test/example/e_business_for_media/iab/elements/preferred_given_name.rb",
|
222
|
+
"test/example/e_business_for_media/iab/elements/primary_contact.rb",
|
223
|
+
"test/example/e_business_for_media/iab/elements/primary_id.rb",
|
224
|
+
"test/example/e_business_for_media/iab/elements/primary_success_metric.rb",
|
225
|
+
"test/example/e_business_for_media/iab/elements/product_name.rb",
|
226
|
+
"test/example/e_business_for_media/iab/elements/property_name.rb",
|
227
|
+
"test/example/e_business_for_media/iab/elements/publisher.rb",
|
228
|
+
"test/example/e_business_for_media/iab/elements/referenced_document_id.rb",
|
229
|
+
"test/example/e_business_for_media/iab/elements/referenced_version.rb",
|
230
|
+
"test/example/e_business_for_media/iab/elements/region.rb",
|
231
|
+
"test/example/e_business_for_media/iab/elements/request_for_proposal.rb",
|
232
|
+
"test/example/e_business_for_media/iab/elements/rfp_details.rb",
|
233
|
+
"test/example/e_business_for_media/iab/elements/rfp_response_requirements.rb",
|
234
|
+
"test/example/e_business_for_media/iab/elements/role.rb",
|
235
|
+
"test/example/e_business_for_media/iab/elements/selection_criteria.rb",
|
236
|
+
"test/example/e_business_for_media/iab/elements/sent_date.rb",
|
237
|
+
"test/example/e_business_for_media/iab/elements/standard_value.rb",
|
238
|
+
"test/example/e_business_for_media/iab/elements/start_date.rb",
|
239
|
+
"test/example/e_business_for_media/iab/elements/street_name.rb",
|
240
|
+
"test/example/e_business_for_media/iab/elements/subscriber_number.rb",
|
241
|
+
"test/example/e_business_for_media/iab/elements/target_audience.rb",
|
242
|
+
"test/example/e_business_for_media/iab/elements/targeting.rb",
|
243
|
+
"test/example/e_business_for_media/iab/elements/telephone.rb",
|
244
|
+
"test/example/e_business_for_media/iab/elements/terms_and_conditions.rb",
|
245
|
+
"test/example/e_business_for_media/iab/elements/terms_attachment.rb",
|
246
|
+
"test/example/e_business_for_media/iab/elements/terms_text.rb",
|
247
|
+
"test/example/e_business_for_media/iab/elements/time.rb",
|
248
|
+
"test/example/e_business_for_media/iab/elements/title.rb",
|
249
|
+
"test/example/e_business_for_media/iab/elements/ttytdd.rb",
|
250
|
+
"test/example/e_business_for_media/iab/elements/type.rb",
|
251
|
+
"test/example/e_business_for_media/iab/elements/unit.rb",
|
252
|
+
"test/example/e_business_for_media/iab/elements/use.rb",
|
253
|
+
"test/example/e_business_for_media/iab/elements/value.rb",
|
254
|
+
"test/example/e_business_for_media/iab/elements/version.rb",
|
255
|
+
"test/example/e_business_for_media/iab/elements/when_available.rb",
|
256
|
+
"test/example/e_business_for_media/iab/elements/zero_cost.rb",
|
257
|
+
"test/example/e_business_for_media/iab/groups/telcom_number_group.rb",
|
258
|
+
"test/example/e_business_for_media/iab/types/attachment_type.rb",
|
259
|
+
"test/example/e_business_for_media/iab/types/base_cost.rb",
|
260
|
+
"test/example/e_business_for_media/iab/types/base_target_type.rb",
|
261
|
+
"test/example/e_business_for_media/iab/types/base_unit.rb",
|
262
|
+
"test/example/e_business_for_media/iab/types/campaign_reference_info_type.rb",
|
263
|
+
"test/example/e_business_for_media/iab/types/contact_method_location_pattern_extension_type.rb",
|
264
|
+
"test/example/e_business_for_media/iab/types/contact_method_location_type.rb",
|
265
|
+
"test/example/e_business_for_media/iab/types/contact_method_type.rb",
|
266
|
+
"test/example/e_business_for_media/iab/types/contact_method_use_pattern_extension_type.rb",
|
267
|
+
"test/example/e_business_for_media/iab/types/contact_method_use_type.rb",
|
268
|
+
"test/example/e_business_for_media/iab/types/contact_method_when_available_type.rb",
|
269
|
+
"test/example/e_business_for_media/iab/types/contract_details_type.rb",
|
270
|
+
"test/example/e_business_for_media/iab/types/cost_method_enumeration.rb",
|
271
|
+
"test/example/e_business_for_media/iab/types/cost_method_type.rb",
|
272
|
+
"test/example/e_business_for_media/iab/types/currency_code_type.rb",
|
273
|
+
"test/example/e_business_for_media/iab/types/discount_type.rb",
|
274
|
+
"test/example/e_business_for_media/iab/types/entity_id_type.rb",
|
275
|
+
"test/example/e_business_for_media/iab/types/generic_target_type.rb",
|
276
|
+
"test/example/e_business_for_media/iab/types/iab_advertiser_info_type.rb",
|
277
|
+
"test/example/e_business_for_media/iab/types/iab_billing_info_type.rb",
|
278
|
+
"test/example/e_business_for_media/iab/types/iab_contact_method_type.rb",
|
279
|
+
"test/example/e_business_for_media/iab/types/iab_date_time_type.rb",
|
280
|
+
"test/example/e_business_for_media/iab/types/iab_distribution_enumerated_type.rb",
|
281
|
+
"test/example/e_business_for_media/iab/types/iab_distribution_type.rb",
|
282
|
+
"test/example/e_business_for_media/iab/types/iab_message_base_type.rb",
|
283
|
+
"test/example/e_business_for_media/iab/types/iab_message_header_type.rb",
|
284
|
+
"test/example/e_business_for_media/iab/types/iab_partner_info_type.rb",
|
285
|
+
"test/example/e_business_for_media/iab/types/iab_payment_terms_enumerated_type.rb",
|
286
|
+
"test/example/e_business_for_media/iab/types/iab_payment_terms_type.rb",
|
287
|
+
"test/example/e_business_for_media/iab/types/iab_payment_type_enumerated_type.rb",
|
288
|
+
"test/example/e_business_for_media/iab/types/iab_publisher_info_type.rb",
|
289
|
+
"test/example/e_business_for_media/iab/types/iab_type_of_contact_type.rb",
|
290
|
+
"test/example/e_business_for_media/iab/types/internet_email_address_type.rb",
|
291
|
+
"test/example/e_business_for_media/iab/types/internet_web_address_type.rb",
|
292
|
+
"test/example/e_business_for_media/iab/types/mobile_telcom_number_type.rb",
|
293
|
+
"test/example/e_business_for_media/iab/types/monetary_type.rb",
|
294
|
+
"test/example/e_business_for_media/iab/types/percentage_type.rb",
|
295
|
+
"test/example/e_business_for_media/iab/types/person_name_type.rb",
|
296
|
+
"test/example/e_business_for_media/iab/types/postal_address_type.rb",
|
297
|
+
"test/example/e_business_for_media/iab/types/request_for_proposal_type.rb",
|
298
|
+
"test/example/e_business_for_media/iab/types/rfp_details_type.rb",
|
299
|
+
"test/example/e_business_for_media/iab/types/rfp_response_requirements_type.rb",
|
300
|
+
"test/example/e_business_for_media/iab/types/telcom_number_type.rb",
|
301
|
+
"test/example/e_business_for_media/iab/types/unit_type.rb",
|
302
|
+
"test/example/e_business_for_media/iab/types/unit_type_enumeration.rb",
|
303
|
+
"test/example/e_business_for_media/iab/types/zero_cost_type.rb",
|
304
|
+
"test/example/e_business_for_media/iab/types/zero_cost_type_enumeration.rb",
|
305
|
+
"test/marshalling_test.rb",
|
306
|
+
"test/mocks.rb",
|
307
|
+
"test/teststrap.rb",
|
308
|
+
"test/xsd/AAAA_Common.xsd",
|
309
|
+
"test/xsd/HRXMLlicense.txt",
|
310
|
+
"test/xsd/IAB_Acknowledgement.xsd",
|
311
|
+
"test/xsd/IAB_AdvertiserCommon.xsd",
|
312
|
+
"test/xsd/IAB_BillingCommon.xsd",
|
313
|
+
"test/xsd/IAB_CampaignCommon.xsd",
|
314
|
+
"test/xsd/IAB_Common.xsd",
|
315
|
+
"test/xsd/IAB_ContractCommon.xsd",
|
316
|
+
"test/xsd/IAB_InsertionOrderCommon.xsd",
|
317
|
+
"test/xsd/IAB_LineItemCommon.xsd",
|
318
|
+
"test/xsd/IAB_MessageCommon.xsd",
|
319
|
+
"test/xsd/IAB_OrderCommon.xsd",
|
320
|
+
"test/xsd/IAB_ProposalCommon.xsd",
|
321
|
+
"test/xsd/IAB_PublisherCommon.xsd",
|
322
|
+
"test/xsd/IAB_RFPCommon.xsd"
|
323
|
+
]
|
324
|
+
s.homepage = %q{http://github.com/gabrielg/enterprisifier}
|
325
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
326
|
+
s.require_paths = ["lib"]
|
327
|
+
s.rubygems_version = %q{1.3.5}
|
328
|
+
s.summary = %q{Makes things enterprisey.}
|
329
|
+
s.test_files = [
|
330
|
+
"test/enterprisifier_test.rb",
|
331
|
+
"test/example/e_business_for_media/aaaa/elements/aaaa_message_header.rb",
|
332
|
+
"test/example/e_business_for_media/aaaa/elements/aaaa_values.rb",
|
333
|
+
"test/example/e_business_for_media/aaaa/elements/action.rb",
|
334
|
+
"test/example/e_business_for_media/aaaa/elements/business_object.rb",
|
335
|
+
"test/example/e_business_for_media/aaaa/elements/media.rb",
|
336
|
+
"test/example/e_business_for_media/aaaa/elements/schema_name.rb",
|
337
|
+
"test/example/e_business_for_media/aaaa/elements/schema_version.rb",
|
338
|
+
"test/example/e_business_for_media/aaaa/elements/unique_message_id.rb",
|
339
|
+
"test/example/e_business_for_media/aaaa/types/aaaa_message_type.rb",
|
340
|
+
"test/example/e_business_for_media/aaaa/types/action_string.rb",
|
341
|
+
"test/example/e_business_for_media/aaaa/types/business_object_string.rb",
|
342
|
+
"test/example/e_business_for_media/aaaa/types/guid.rb",
|
343
|
+
"test/example/e_business_for_media/aaaa/types/media_string.rb",
|
344
|
+
"test/example/e_business_for_media/aaaa/types/schema_name_string.rb",
|
345
|
+
"test/example/e_business_for_media/aaaa/types/schema_version_string.rb",
|
346
|
+
"test/example/e_business_for_media/aaaa/types/unique_message_id.rb",
|
347
|
+
"test/example/e_business_for_media/iab/attributes/currency.rb",
|
348
|
+
"test/example/e_business_for_media/iab/attributes/id_owner.rb",
|
349
|
+
"test/example/e_business_for_media/iab/attributes/name.rb",
|
350
|
+
"test/example/e_business_for_media/iab/attributes/prefix.rb",
|
351
|
+
"test/example/e_business_for_media/iab/attributes/primary.rb",
|
352
|
+
"test/example/e_business_for_media/iab/attributes/script.rb",
|
353
|
+
"test/example/e_business_for_media/iab/attributes/sms_enabled.rb",
|
354
|
+
"test/example/e_business_for_media/iab/attributes/type.rb",
|
355
|
+
"test/example/e_business_for_media/iab/attributes/valid_from.rb",
|
356
|
+
"test/example/e_business_for_media/iab/attributes/valid_to.rb",
|
357
|
+
"test/example/e_business_for_media/iab/elements/ad_server.rb",
|
358
|
+
"test/example/e_business_for_media/iab/elements/additional_metrics.rb",
|
359
|
+
"test/example/e_business_for_media/iab/elements/address.rb",
|
360
|
+
"test/example/e_business_for_media/iab/elements/address_line.rb",
|
361
|
+
"test/example/e_business_for_media/iab/elements/advertiser.rb",
|
362
|
+
"test/example/e_business_for_media/iab/elements/affix.rb",
|
363
|
+
"test/example/e_business_for_media/iab/elements/agency.rb",
|
364
|
+
"test/example/e_business_for_media/iab/elements/agency_commission.rb",
|
365
|
+
"test/example/e_business_for_media/iab/elements/alternate_script.rb",
|
366
|
+
"test/example/e_business_for_media/iab/elements/amount.rb",
|
367
|
+
"test/example/e_business_for_media/iab/elements/area_city_code.rb",
|
368
|
+
"test/example/e_business_for_media/iab/elements/attachments.rb",
|
369
|
+
"test/example/e_business_for_media/iab/elements/audience.rb",
|
370
|
+
"test/example/e_business_for_media/iab/elements/background.rb",
|
371
|
+
"test/example/e_business_for_media/iab/elements/basis.rb",
|
372
|
+
"test/example/e_business_for_media/iab/elements/billing_frequency.rb",
|
373
|
+
"test/example/e_business_for_media/iab/elements/billing_info.rb",
|
374
|
+
"test/example/e_business_for_media/iab/elements/billing_notes.rb",
|
375
|
+
"test/example/e_business_for_media/iab/elements/billing_partner.rb",
|
376
|
+
"test/example/e_business_for_media/iab/elements/billing_statistics_source.rb",
|
377
|
+
"test/example/e_business_for_media/iab/elements/brand_name.rb",
|
378
|
+
"test/example/e_business_for_media/iab/elements/budget.rb",
|
379
|
+
"test/example/e_business_for_media/iab/elements/building_number.rb",
|
380
|
+
"test/example/e_business_for_media/iab/elements/campaign_brief.rb",
|
381
|
+
"test/example/e_business_for_media/iab/elements/campaign_reference_id.rb",
|
382
|
+
"test/example/e_business_for_media/iab/elements/campaign_reference_info.rb",
|
383
|
+
"test/example/e_business_for_media/iab/elements/category.rb",
|
384
|
+
"test/example/e_business_for_media/iab/elements/context.rb",
|
385
|
+
"test/example/e_business_for_media/iab/elements/contract_details.rb",
|
386
|
+
"test/example/e_business_for_media/iab/elements/count.rb",
|
387
|
+
"test/example/e_business_for_media/iab/elements/country_code.rb",
|
388
|
+
"test/example/e_business_for_media/iab/elements/created_date.rb",
|
389
|
+
"test/example/e_business_for_media/iab/elements/creating_system.rb",
|
390
|
+
"test/example/e_business_for_media/iab/elements/date.rb",
|
391
|
+
"test/example/e_business_for_media/iab/elements/delivery.rb",
|
392
|
+
"test/example/e_business_for_media/iab/elements/delivery_address.rb",
|
393
|
+
"test/example/e_business_for_media/iab/elements/description.rb",
|
394
|
+
"test/example/e_business_for_media/iab/elements/desired_positioning_notes.rb",
|
395
|
+
"test/example/e_business_for_media/iab/elements/destination_system.rb",
|
396
|
+
"test/example/e_business_for_media/iab/elements/discount.rb",
|
397
|
+
"test/example/e_business_for_media/iab/elements/distribution.rb",
|
398
|
+
"test/example/e_business_for_media/iab/elements/document_id.rb",
|
399
|
+
"test/example/e_business_for_media/iab/elements/document_name.rb",
|
400
|
+
"test/example/e_business_for_media/iab/elements/document_sender.rb",
|
401
|
+
"test/example/e_business_for_media/iab/elements/due_date.rb",
|
402
|
+
"test/example/e_business_for_media/iab/elements/end_date.rb",
|
403
|
+
"test/example/e_business_for_media/iab/elements/extension.rb",
|
404
|
+
"test/example/e_business_for_media/iab/elements/family_name.rb",
|
405
|
+
"test/example/e_business_for_media/iab/elements/fax.rb",
|
406
|
+
"test/example/e_business_for_media/iab/elements/flight_exclusivity_guidelines.rb",
|
407
|
+
"test/example/e_business_for_media/iab/elements/format.rb",
|
408
|
+
"test/example/e_business_for_media/iab/elements/formatted_name.rb",
|
409
|
+
"test/example/e_business_for_media/iab/elements/formatted_number.rb",
|
410
|
+
"test/example/e_business_for_media/iab/elements/geographic_considerations.rb",
|
411
|
+
"test/example/e_business_for_media/iab/elements/given_name.rb",
|
412
|
+
"test/example/e_business_for_media/iab/elements/goal.rb",
|
413
|
+
"test/example/e_business_for_media/iab/elements/gross_cost.rb",
|
414
|
+
"test/example/e_business_for_media/iab/elements/iab_advertiser_info.rb",
|
415
|
+
"test/example/e_business_for_media/iab/elements/iab_billing_info.rb",
|
416
|
+
"test/example/e_business_for_media/iab/elements/iab_message_base.rb",
|
417
|
+
"test/example/e_business_for_media/iab/elements/iab_message_header.rb",
|
418
|
+
"test/example/e_business_for_media/iab/elements/iab_publisher_info.rb",
|
419
|
+
"test/example/e_business_for_media/iab/elements/iab_type_of_contact.rb",
|
420
|
+
"test/example/e_business_for_media/iab/elements/id.rb",
|
421
|
+
"test/example/e_business_for_media/iab/elements/id_value.rb",
|
422
|
+
"test/example/e_business_for_media/iab/elements/in_reference_to.rb",
|
423
|
+
"test/example/e_business_for_media/iab/elements/industry.rb",
|
424
|
+
"test/example/e_business_for_media/iab/elements/instructions.rb",
|
425
|
+
"test/example/e_business_for_media/iab/elements/international_country_code.rb",
|
426
|
+
"test/example/e_business_for_media/iab/elements/internet_email_address.rb",
|
427
|
+
"test/example/e_business_for_media/iab/elements/internet_web_address.rb",
|
428
|
+
"test/example/e_business_for_media/iab/elements/legal_name.rb",
|
429
|
+
"test/example/e_business_for_media/iab/elements/link.rb",
|
430
|
+
"test/example/e_business_for_media/iab/elements/location.rb",
|
431
|
+
"test/example/e_business_for_media/iab/elements/make_good_policy.rb",
|
432
|
+
"test/example/e_business_for_media/iab/elements/middle_name.rb",
|
433
|
+
"test/example/e_business_for_media/iab/elements/mobile.rb",
|
434
|
+
"test/example/e_business_for_media/iab/elements/municipality.rb",
|
435
|
+
"test/example/e_business_for_media/iab/elements/name.rb",
|
436
|
+
"test/example/e_business_for_media/iab/elements/national_number.rb",
|
437
|
+
"test/example/e_business_for_media/iab/elements/net_cost.rb",
|
438
|
+
"test/example/e_business_for_media/iab/elements/non_standard_value.rb",
|
439
|
+
"test/example/e_business_for_media/iab/elements/notes.rb",
|
440
|
+
"test/example/e_business_for_media/iab/elements/order_status.rb",
|
441
|
+
"test/example/e_business_for_media/iab/elements/other_contacts.rb",
|
442
|
+
"test/example/e_business_for_media/iab/elements/other_id.rb",
|
443
|
+
"test/example/e_business_for_media/iab/elements/other_target.rb",
|
444
|
+
"test/example/e_business_for_media/iab/elements/out_clause.rb",
|
445
|
+
"test/example/e_business_for_media/iab/elements/pager.rb",
|
446
|
+
"test/example/e_business_for_media/iab/elements/partner.rb",
|
447
|
+
"test/example/e_business_for_media/iab/elements/payment_terms.rb",
|
448
|
+
"test/example/e_business_for_media/iab/elements/payment_type.rb",
|
449
|
+
"test/example/e_business_for_media/iab/elements/percent.rb",
|
450
|
+
"test/example/e_business_for_media/iab/elements/person_name.rb",
|
451
|
+
"test/example/e_business_for_media/iab/elements/post_office_box.rb",
|
452
|
+
"test/example/e_business_for_media/iab/elements/postal_address.rb",
|
453
|
+
"test/example/e_business_for_media/iab/elements/postal_code.rb",
|
454
|
+
"test/example/e_business_for_media/iab/elements/preferred_given_name.rb",
|
455
|
+
"test/example/e_business_for_media/iab/elements/primary_contact.rb",
|
456
|
+
"test/example/e_business_for_media/iab/elements/primary_id.rb",
|
457
|
+
"test/example/e_business_for_media/iab/elements/primary_success_metric.rb",
|
458
|
+
"test/example/e_business_for_media/iab/elements/product_name.rb",
|
459
|
+
"test/example/e_business_for_media/iab/elements/property_name.rb",
|
460
|
+
"test/example/e_business_for_media/iab/elements/publisher.rb",
|
461
|
+
"test/example/e_business_for_media/iab/elements/referenced_document_id.rb",
|
462
|
+
"test/example/e_business_for_media/iab/elements/referenced_version.rb",
|
463
|
+
"test/example/e_business_for_media/iab/elements/region.rb",
|
464
|
+
"test/example/e_business_for_media/iab/elements/request_for_proposal.rb",
|
465
|
+
"test/example/e_business_for_media/iab/elements/rfp_details.rb",
|
466
|
+
"test/example/e_business_for_media/iab/elements/rfp_response_requirements.rb",
|
467
|
+
"test/example/e_business_for_media/iab/elements/role.rb",
|
468
|
+
"test/example/e_business_for_media/iab/elements/selection_criteria.rb",
|
469
|
+
"test/example/e_business_for_media/iab/elements/sent_date.rb",
|
470
|
+
"test/example/e_business_for_media/iab/elements/standard_value.rb",
|
471
|
+
"test/example/e_business_for_media/iab/elements/start_date.rb",
|
472
|
+
"test/example/e_business_for_media/iab/elements/street_name.rb",
|
473
|
+
"test/example/e_business_for_media/iab/elements/subscriber_number.rb",
|
474
|
+
"test/example/e_business_for_media/iab/elements/target_audience.rb",
|
475
|
+
"test/example/e_business_for_media/iab/elements/targeting.rb",
|
476
|
+
"test/example/e_business_for_media/iab/elements/telephone.rb",
|
477
|
+
"test/example/e_business_for_media/iab/elements/terms_and_conditions.rb",
|
478
|
+
"test/example/e_business_for_media/iab/elements/terms_attachment.rb",
|
479
|
+
"test/example/e_business_for_media/iab/elements/terms_text.rb",
|
480
|
+
"test/example/e_business_for_media/iab/elements/time.rb",
|
481
|
+
"test/example/e_business_for_media/iab/elements/title.rb",
|
482
|
+
"test/example/e_business_for_media/iab/elements/ttytdd.rb",
|
483
|
+
"test/example/e_business_for_media/iab/elements/type.rb",
|
484
|
+
"test/example/e_business_for_media/iab/elements/unit.rb",
|
485
|
+
"test/example/e_business_for_media/iab/elements/use.rb",
|
486
|
+
"test/example/e_business_for_media/iab/elements/value.rb",
|
487
|
+
"test/example/e_business_for_media/iab/elements/version.rb",
|
488
|
+
"test/example/e_business_for_media/iab/elements/when_available.rb",
|
489
|
+
"test/example/e_business_for_media/iab/elements/zero_cost.rb",
|
490
|
+
"test/example/e_business_for_media/iab/groups/telcom_number_group.rb",
|
491
|
+
"test/example/e_business_for_media/iab/types/attachment_type.rb",
|
492
|
+
"test/example/e_business_for_media/iab/types/base_cost.rb",
|
493
|
+
"test/example/e_business_for_media/iab/types/base_target_type.rb",
|
494
|
+
"test/example/e_business_for_media/iab/types/base_unit.rb",
|
495
|
+
"test/example/e_business_for_media/iab/types/campaign_reference_info_type.rb",
|
496
|
+
"test/example/e_business_for_media/iab/types/contact_method_location_pattern_extension_type.rb",
|
497
|
+
"test/example/e_business_for_media/iab/types/contact_method_location_type.rb",
|
498
|
+
"test/example/e_business_for_media/iab/types/contact_method_type.rb",
|
499
|
+
"test/example/e_business_for_media/iab/types/contact_method_use_pattern_extension_type.rb",
|
500
|
+
"test/example/e_business_for_media/iab/types/contact_method_use_type.rb",
|
501
|
+
"test/example/e_business_for_media/iab/types/contact_method_when_available_type.rb",
|
502
|
+
"test/example/e_business_for_media/iab/types/contract_details_type.rb",
|
503
|
+
"test/example/e_business_for_media/iab/types/cost_method_enumeration.rb",
|
504
|
+
"test/example/e_business_for_media/iab/types/cost_method_type.rb",
|
505
|
+
"test/example/e_business_for_media/iab/types/currency_code_type.rb",
|
506
|
+
"test/example/e_business_for_media/iab/types/discount_type.rb",
|
507
|
+
"test/example/e_business_for_media/iab/types/entity_id_type.rb",
|
508
|
+
"test/example/e_business_for_media/iab/types/generic_target_type.rb",
|
509
|
+
"test/example/e_business_for_media/iab/types/iab_advertiser_info_type.rb",
|
510
|
+
"test/example/e_business_for_media/iab/types/iab_billing_info_type.rb",
|
511
|
+
"test/example/e_business_for_media/iab/types/iab_contact_method_type.rb",
|
512
|
+
"test/example/e_business_for_media/iab/types/iab_date_time_type.rb",
|
513
|
+
"test/example/e_business_for_media/iab/types/iab_distribution_enumerated_type.rb",
|
514
|
+
"test/example/e_business_for_media/iab/types/iab_distribution_type.rb",
|
515
|
+
"test/example/e_business_for_media/iab/types/iab_message_base_type.rb",
|
516
|
+
"test/example/e_business_for_media/iab/types/iab_message_header_type.rb",
|
517
|
+
"test/example/e_business_for_media/iab/types/iab_partner_info_type.rb",
|
518
|
+
"test/example/e_business_for_media/iab/types/iab_payment_terms_enumerated_type.rb",
|
519
|
+
"test/example/e_business_for_media/iab/types/iab_payment_terms_type.rb",
|
520
|
+
"test/example/e_business_for_media/iab/types/iab_payment_type_enumerated_type.rb",
|
521
|
+
"test/example/e_business_for_media/iab/types/iab_publisher_info_type.rb",
|
522
|
+
"test/example/e_business_for_media/iab/types/iab_type_of_contact_type.rb",
|
523
|
+
"test/example/e_business_for_media/iab/types/internet_email_address_type.rb",
|
524
|
+
"test/example/e_business_for_media/iab/types/internet_web_address_type.rb",
|
525
|
+
"test/example/e_business_for_media/iab/types/mobile_telcom_number_type.rb",
|
526
|
+
"test/example/e_business_for_media/iab/types/monetary_type.rb",
|
527
|
+
"test/example/e_business_for_media/iab/types/percentage_type.rb",
|
528
|
+
"test/example/e_business_for_media/iab/types/person_name_type.rb",
|
529
|
+
"test/example/e_business_for_media/iab/types/postal_address_type.rb",
|
530
|
+
"test/example/e_business_for_media/iab/types/request_for_proposal_type.rb",
|
531
|
+
"test/example/e_business_for_media/iab/types/rfp_details_type.rb",
|
532
|
+
"test/example/e_business_for_media/iab/types/rfp_response_requirements_type.rb",
|
533
|
+
"test/example/e_business_for_media/iab/types/telcom_number_type.rb",
|
534
|
+
"test/example/e_business_for_media/iab/types/unit_type.rb",
|
535
|
+
"test/example/e_business_for_media/iab/types/unit_type_enumeration.rb",
|
536
|
+
"test/example/e_business_for_media/iab/types/zero_cost_type.rb",
|
537
|
+
"test/example/e_business_for_media/iab/types/zero_cost_type_enumeration.rb",
|
538
|
+
"test/marshalling_test.rb",
|
539
|
+
"test/mocks.rb",
|
540
|
+
"test/teststrap.rb"
|
541
|
+
]
|
542
|
+
|
543
|
+
if s.respond_to? :specification_version then
|
544
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
545
|
+
s.specification_version = 3
|
546
|
+
|
547
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
548
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
549
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
550
|
+
s.add_development_dependency(%q<riot>, [">= 0"])
|
551
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
552
|
+
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
|
553
|
+
s.add_development_dependency(%q<faker>, [">= 0"])
|
554
|
+
else
|
555
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
556
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
557
|
+
s.add_dependency(%q<riot>, [">= 0"])
|
558
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
559
|
+
s.add_dependency(%q<ruby-debug>, [">= 0"])
|
560
|
+
s.add_dependency(%q<faker>, [">= 0"])
|
561
|
+
end
|
562
|
+
else
|
563
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
564
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
565
|
+
s.add_dependency(%q<riot>, [">= 0"])
|
566
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
567
|
+
s.add_dependency(%q<ruby-debug>, [">= 0"])
|
568
|
+
s.add_dependency(%q<faker>, [">= 0"])
|
569
|
+
end
|
570
|
+
end
|
571
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enterprisifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gabrielg
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- README.md
|
89
89
|
- Rakefile
|
90
90
|
- VERSION
|
91
|
+
- enterprisifier.gemspec
|
91
92
|
- lib/enterprisifier.rb
|
92
93
|
- lib/enterprisifier/code_generation.rb
|
93
94
|
- lib/enterprisifier/code_generation/code_builder.rb
|