has_many_polymorphs 2.10 → 2.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +2 -0
  3. data/Manifest +191 -56
  4. data/TODO +1 -0
  5. data/examples/hmph.rb +69 -0
  6. data/generators/commenting/commenting_generator.rb +94 -0
  7. data/generators/commenting/templates/comment.rb +33 -0
  8. data/generators/commenting/templates/comment_test.rb +12 -0
  9. data/generators/commenting/templates/commenting.rb +13 -0
  10. data/generators/commenting/templates/commenting_extensions.rb +30 -0
  11. data/generators/commenting/templates/commenting_test.rb +30 -0
  12. data/generators/commenting/templates/commentings.yml +23 -0
  13. data/generators/commenting/templates/comments.yml +13 -0
  14. data/generators/commenting/templates/migration.rb +28 -0
  15. data/generators/tagging/templates/tagging_extensions.rb +4 -8
  16. data/has_many_polymorphs.gemspec +19 -12
  17. data/lib/has_many_polymorphs.rb +3 -4
  18. data/lib/has_many_polymorphs/autoload.rb +4 -4
  19. data/lib/has_many_polymorphs/class_methods.rb +8 -8
  20. data/lib/has_many_polymorphs/debugging_tools.rb +2 -0
  21. data/lib/has_many_polymorphs/dependencies.rb +9 -4
  22. data/lib/has_many_polymorphs/support_methods.rb +3 -1
  23. data/test/fixtures/{aquatic/fish.yml → fish.yml} +0 -0
  24. data/test/fixtures/{aquatic/little_whale_pupils.yml → little_whale_pupils.yml} +0 -0
  25. data/test/fixtures/{aquatic/whales.yml → whales.yml} +0 -0
  26. data/test/integration/app/README +182 -0
  27. data/test/integration/app/Rakefile +19 -0
  28. data/test/integration/app/app/controllers/addresses_controller.rb +85 -0
  29. data/test/integration/app/app/controllers/application.rb +7 -0
  30. data/test/integration/app/app/controllers/sellers_controller.rb +85 -0
  31. data/test/integration/app/app/controllers/states_controller.rb +85 -0
  32. data/test/integration/app/app/controllers/users_controller.rb +85 -0
  33. data/test/integration/app/app/helpers/addresses_helper.rb +2 -0
  34. data/test/integration/app/app/helpers/application_helper.rb +3 -0
  35. data/test/integration/app/app/helpers/sellers_helper.rb +28 -0
  36. data/test/integration/app/app/helpers/states_helper.rb +2 -0
  37. data/test/integration/app/app/helpers/users_helper.rb +2 -0
  38. data/test/integration/app/app/models/address.rb +4 -0
  39. data/test/integration/app/app/models/citation.rb +3 -0
  40. data/test/integration/app/app/models/citations_item.rb +4 -0
  41. data/test/integration/app/app/models/seller.rb +4 -0
  42. data/test/integration/app/app/models/state.rb +3 -0
  43. data/test/integration/app/app/models/user.rb +4 -0
  44. data/test/integration/app/app/views/addresses/edit.html.erb +12 -0
  45. data/test/integration/app/app/views/addresses/index.html.erb +18 -0
  46. data/test/integration/app/app/views/addresses/new.html.erb +11 -0
  47. data/test/integration/app/app/views/addresses/show.html.erb +3 -0
  48. data/test/integration/app/app/views/layouts/addresses.html.erb +17 -0
  49. data/test/integration/app/app/views/layouts/sellers.html.erb +17 -0
  50. data/test/integration/app/app/views/layouts/states.html.erb +17 -0
  51. data/test/integration/app/app/views/layouts/users.html.erb +17 -0
  52. data/test/integration/app/app/views/sellers/edit.html.erb +12 -0
  53. data/test/integration/app/app/views/sellers/index.html.erb +20 -0
  54. data/test/integration/app/app/views/sellers/new.html.erb +11 -0
  55. data/test/integration/app/app/views/sellers/show.html.erb +3 -0
  56. data/test/integration/app/app/views/states/edit.html.erb +12 -0
  57. data/test/integration/app/app/views/states/index.html.erb +19 -0
  58. data/test/integration/app/app/views/states/new.html.erb +11 -0
  59. data/test/integration/app/app/views/states/show.html.erb +3 -0
  60. data/test/integration/app/app/views/users/edit.html.erb +12 -0
  61. data/test/integration/app/app/views/users/index.html.erb +22 -0
  62. data/test/integration/app/app/views/users/new.html.erb +11 -0
  63. data/test/integration/app/app/views/users/show.html.erb +3 -0
  64. data/test/integration/app/config/boot.rb +45 -0
  65. data/test/integration/app/config/database.yml +21 -0
  66. data/test/integration/app/config/environment.rb +13 -0
  67. data/test/integration/app/config/environments/development.rb +7 -0
  68. data/test/integration/app/config/environments/production.rb +18 -0
  69. data/test/integration/app/config/environments/test.rb +19 -0
  70. data/test/integration/app/config/locomotive.yml +6 -0
  71. data/test/integration/app/config/routes.rb +33 -0
  72. data/test/integration/app/config/ultrasphinx/default.base +56 -0
  73. data/test/integration/app/config/ultrasphinx/development.conf.canonical +155 -0
  74. data/test/integration/app/db/migrate/001_create_users.rb +16 -0
  75. data/test/integration/app/db/migrate/002_create_sellers.rb +14 -0
  76. data/test/integration/app/db/migrate/003_create_addresses.rb +19 -0
  77. data/test/integration/app/db/migrate/004_create_states.rb +12 -0
  78. data/test/integration/app/db/migrate/005_add_capitalization_to_seller.rb +9 -0
  79. data/test/integration/app/db/migrate/006_add_deleted_to_user.rb +9 -0
  80. data/test/integration/app/db/migrate/007_add_lat_and_long_to_address.rb +11 -0
  81. data/test/integration/app/db/migrate/008_create_citations.rb +12 -0
  82. data/test/integration/app/db/migrate/009_create_citations_items.rb +14 -0
  83. data/test/integration/app/db/schema.rb +144 -0
  84. data/test/integration/app/doc/README_FOR_APP +2 -0
  85. data/test/integration/app/generated_models/aquatic_fish.rb +109 -0
  86. data/test/integration/app/generated_models/aquatic_pupils_whale.rb +13 -0
  87. data/test/integration/app/generated_models/aquatic_whale.rb +42 -0
  88. data/test/integration/app/generated_models/beautiful_fight_relationship.rb +25 -0
  89. data/test/integration/app/generated_models/citation.rb +40 -0
  90. data/test/integration/app/generated_models/citations_item.rb +12 -0
  91. data/test/integration/app/generated_models/dog.rb +183 -0
  92. data/test/integration/app/generated_models/eaters_foodstuff.rb +13 -0
  93. data/test/integration/app/generated_models/frog.rb +78 -0
  94. data/test/integration/app/generated_models/kitten.rb +161 -0
  95. data/test/integration/app/generated_models/parentship.rb +14 -0
  96. data/test/integration/app/generated_models/person.rb +53 -0
  97. data/test/integration/app/generated_models/petfood.rb +125 -0
  98. data/test/integration/app/generated_models/polymorph_test_some_model.rb +25 -0
  99. data/test/integration/app/generated_models/seller.rb +30 -0
  100. data/test/integration/app/generated_models/tabby.rb +26 -0
  101. data/test/integration/app/generated_models/user.rb +34 -0
  102. data/test/integration/app/generated_models/wild_boar.rb +87 -0
  103. data/test/integration/app/generators/commenting_generator_test.rb +83 -0
  104. data/test/integration/app/public/404.html +30 -0
  105. data/test/integration/app/public/500.html +30 -0
  106. data/test/integration/app/public/dispatch.cgi +10 -0
  107. data/test/integration/app/public/dispatch.fcgi +24 -0
  108. data/test/integration/app/public/dispatch.rb +10 -0
  109. data/test/integration/app/public/favicon.ico +0 -0
  110. data/test/integration/app/public/images/rails.png +0 -0
  111. data/test/integration/app/public/index.html +277 -0
  112. data/test/integration/app/public/javascripts/application.js +2 -0
  113. data/test/integration/app/public/javascripts/controls.js +833 -0
  114. data/test/integration/app/public/javascripts/dragdrop.js +942 -0
  115. data/test/integration/app/public/javascripts/effects.js +1088 -0
  116. data/test/integration/app/public/javascripts/prototype.js +2515 -0
  117. data/test/integration/app/public/robots.txt +1 -0
  118. data/test/integration/app/public/stylesheets/scaffold.css +74 -0
  119. data/test/integration/app/script/about +3 -0
  120. data/test/integration/app/script/breakpointer +3 -0
  121. data/test/integration/app/script/console +3 -0
  122. data/test/integration/app/script/destroy +3 -0
  123. data/test/integration/app/script/generate +3 -0
  124. data/test/integration/app/script/performance/benchmarker +3 -0
  125. data/test/integration/app/script/performance/profiler +3 -0
  126. data/test/integration/app/script/plugin +3 -0
  127. data/test/integration/app/script/process/inspector +3 -0
  128. data/test/integration/app/script/process/reaper +3 -0
  129. data/test/integration/app/script/process/spawner +3 -0
  130. data/test/integration/app/script/runner +3 -0
  131. data/test/integration/app/script/server +3 -0
  132. data/test/integration/app/test/fixtures/addresses.yml +13 -0
  133. data/test/integration/app/test/fixtures/citations.yml +9 -0
  134. data/test/integration/app/test/fixtures/citations_items.yml +9 -0
  135. data/test/integration/app/test/fixtures/sellers.yml +10 -0
  136. data/test/integration/app/test/fixtures/states.yml +216 -0
  137. data/test/integration/app/test/fixtures/users.yml +11 -0
  138. data/test/integration/app/test/functional/addresses_controller_test.rb +57 -0
  139. data/test/integration/app/test/functional/sellers_controller_test.rb +57 -0
  140. data/test/integration/app/test/functional/states_controller_test.rb +57 -0
  141. data/test/integration/app/test/functional/users_controller_test.rb +57 -0
  142. data/test/integration/app/test/test_helper.rb +28 -0
  143. data/test/integration/app/test/unit/address_test.rb +10 -0
  144. data/test/integration/app/test/unit/citation_test.rb +10 -0
  145. data/test/integration/app/test/unit/citations_item_test.rb +10 -0
  146. data/test/integration/app/test/unit/seller_test.rb +10 -0
  147. data/test/integration/app/test/unit/state_test.rb +10 -0
  148. data/test/integration/app/test/unit/user_test.rb +10 -0
  149. data/test/models/aquatic/fish.rb +2 -1
  150. data/test/models/aquatic/whale.rb +2 -0
  151. data/test/setup.rb +10 -0
  152. data/test/test_all.rb +16 -0
  153. data/test/test_helper.rb +16 -12
  154. data/test/unit/polymorph_test.rb +35 -34
  155. metadata +239 -98
  156. metadata.gz.sig +0 -0
metadata CHANGED
@@ -1,29 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: has_many_polymorphs
5
3
  version: !ruby/object:Gem::Version
6
- version: "2.10"
7
- date: 2007-09-16 00:00:00 -04:00
8
- summary: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
9
- require_paths:
10
- - lib
11
- email: ""
12
- homepage: http://blog.evanweaver.com/pages/code#polymorphs
13
- rubyforge_project: fauna
14
- description: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
4
+ version: "2.11"
5
+ platform: ruby
6
+ authors:
7
+ - ""
15
8
  autorequire:
16
- default_executable:
17
9
  bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
25
- platform: ruby
26
- signing_key:
27
10
  cert_chain:
28
11
  - |
29
12
  -----BEGIN CERTIFICATE-----
@@ -47,87 +30,245 @@ cert_chain:
47
30
  yZ0=
48
31
  -----END CERTIFICATE-----
49
32
 
50
- post_install_message:
51
- authors:
52
- - ""
53
- files:
54
- - TODO
55
- - test/unit/polymorph_test.rb
56
- - test/test_helper.rb
57
- - test/schema.rb
58
- - test/modules/other_extension_module.rb
59
- - test/modules/extension_module.rb
60
- - test/models/wild_boar.rb
61
- - test/models/tabby.rb
62
- - test/models/petfood.rb
63
- - test/models/person.rb
64
- - test/models/parentship.rb
65
- - test/models/kitten.rb
66
- - test/models/frog.rb
67
- - test/models/eaters_foodstuff.rb
68
- - test/models/dog.rb
69
- - test/models/cat.rb
70
- - test/models/canine.rb
71
- - test/models/beautiful_fight_relationship.rb
72
- - test/models/aquatic/whale.rb
73
- - test/models/aquatic/pupils_whale.rb
74
- - test/models/aquatic/fish.rb
75
- - test/fixtures/wild_boars.yml
76
- - test/fixtures/petfoods.yml
77
- - test/fixtures/people.yml
78
- - test/fixtures/keep_your_enemies_close.yml
79
- - test/fixtures/frogs.yml
80
- - test/fixtures/eaters_foodstuffs.yml
81
- - test/fixtures/cats.yml
82
- - test/fixtures/bow_wows.yml
83
- - test/fixtures/aquatic/whales.yml
84
- - test/fixtures/aquatic/little_whale_pupils.yml
85
- - test/fixtures/aquatic/fish.yml
86
- - README
87
- - Manifest
88
- - LICENSE
89
- - lib/has_many_polymorphs.rb
90
- - lib/has_many_polymorphs/support_methods.rb
91
- - lib/has_many_polymorphs/reflection.rb
92
- - lib/has_many_polymorphs/rake_task_redefine_task.rb
93
- - lib/has_many_polymorphs/dependencies.rb
94
- - lib/has_many_polymorphs/debugging_tools.rb
95
- - lib/has_many_polymorphs/configuration.rb
96
- - lib/has_many_polymorphs/class_methods.rb
97
- - lib/has_many_polymorphs/base.rb
98
- - lib/has_many_polymorphs/autoload.rb
99
- - lib/has_many_polymorphs/association.rb
100
- - init.rb
101
- - generators/tagging/templates/tags.yml
102
- - generators/tagging/templates/taggings.yml
103
- - generators/tagging/templates/tagging_test.rb
104
- - generators/tagging/templates/tagging_extensions.rb
105
- - generators/tagging/templates/tagging.rb
106
- - generators/tagging/templates/tag_test.rb
107
- - generators/tagging/templates/tag.rb
108
- - generators/tagging/templates/migration.rb
109
- - generators/tagging/tagging_generator.rb
110
- - CHANGELOG
111
- - has_many_polymorphs.gemspec
112
- test_files:
113
- - test/test_helper.rb
114
- rdoc_options: []
115
-
116
- extra_rdoc_files: []
117
-
118
- executables: []
119
-
120
- extensions: []
121
-
122
- requirements: []
123
-
33
+ date: 2007-12-04 00:00:00 -05:00
34
+ default_executable:
124
35
  dependencies:
125
36
  - !ruby/object:Gem::Dependency
126
37
  name: activerecord
127
38
  version_requirement:
128
- version_requirements: !ruby/object:Gem::Version::Requirement
39
+ version_requirements: !ruby/object:Gem::Requirement
129
40
  requirements:
130
- - - ">"
41
+ - - ">="
131
42
  - !ruby/object:Gem::Version
132
- version: 0.0.0
43
+ version: "0"
133
44
  version:
45
+ description: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
46
+ email: ""
47
+ executables: []
48
+
49
+ extensions: []
50
+
51
+ extra_rdoc_files: []
52
+
53
+ files:
54
+ - CHANGELOG
55
+ - examples/hmph.rb
56
+ - generators/commenting/commenting_generator.rb
57
+ - generators/commenting/templates/comment.rb
58
+ - generators/commenting/templates/comment_test.rb
59
+ - generators/commenting/templates/commenting.rb
60
+ - generators/commenting/templates/commenting_extensions.rb
61
+ - generators/commenting/templates/commenting_test.rb
62
+ - generators/commenting/templates/commentings.yml
63
+ - generators/commenting/templates/comments.yml
64
+ - generators/commenting/templates/migration.rb
65
+ - generators/tagging/tagging_generator.rb
66
+ - generators/tagging/templates/migration.rb
67
+ - generators/tagging/templates/tag.rb
68
+ - generators/tagging/templates/tag_test.rb
69
+ - generators/tagging/templates/tagging.rb
70
+ - generators/tagging/templates/tagging_extensions.rb
71
+ - generators/tagging/templates/tagging_test.rb
72
+ - generators/tagging/templates/taggings.yml
73
+ - generators/tagging/templates/tags.yml
74
+ - init.rb
75
+ - lib/has_many_polymorphs/association.rb
76
+ - lib/has_many_polymorphs/autoload.rb
77
+ - lib/has_many_polymorphs/base.rb
78
+ - lib/has_many_polymorphs/class_methods.rb
79
+ - lib/has_many_polymorphs/configuration.rb
80
+ - lib/has_many_polymorphs/debugging_tools.rb
81
+ - lib/has_many_polymorphs/dependencies.rb
82
+ - lib/has_many_polymorphs/rake_task_redefine_task.rb
83
+ - lib/has_many_polymorphs/reflection.rb
84
+ - lib/has_many_polymorphs/support_methods.rb
85
+ - lib/has_many_polymorphs.rb
86
+ - LICENSE
87
+ - Manifest
88
+ - README
89
+ - test/fixtures/bow_wows.yml
90
+ - test/fixtures/cats.yml
91
+ - test/fixtures/eaters_foodstuffs.yml
92
+ - test/fixtures/fish.yml
93
+ - test/fixtures/frogs.yml
94
+ - test/fixtures/keep_your_enemies_close.yml
95
+ - test/fixtures/little_whale_pupils.yml
96
+ - test/fixtures/people.yml
97
+ - test/fixtures/petfoods.yml
98
+ - test/fixtures/whales.yml
99
+ - test/fixtures/wild_boars.yml
100
+ - test/integration/app/app/controllers/addresses_controller.rb
101
+ - test/integration/app/app/controllers/application.rb
102
+ - test/integration/app/app/controllers/sellers_controller.rb
103
+ - test/integration/app/app/controllers/states_controller.rb
104
+ - test/integration/app/app/controllers/users_controller.rb
105
+ - test/integration/app/app/helpers/addresses_helper.rb
106
+ - test/integration/app/app/helpers/application_helper.rb
107
+ - test/integration/app/app/helpers/sellers_helper.rb
108
+ - test/integration/app/app/helpers/states_helper.rb
109
+ - test/integration/app/app/helpers/users_helper.rb
110
+ - test/integration/app/app/models/address.rb
111
+ - test/integration/app/app/models/citation.rb
112
+ - test/integration/app/app/models/citations_item.rb
113
+ - test/integration/app/app/models/seller.rb
114
+ - test/integration/app/app/models/state.rb
115
+ - test/integration/app/app/models/user.rb
116
+ - test/integration/app/app/views/addresses/edit.html.erb
117
+ - test/integration/app/app/views/addresses/index.html.erb
118
+ - test/integration/app/app/views/addresses/new.html.erb
119
+ - test/integration/app/app/views/addresses/show.html.erb
120
+ - test/integration/app/app/views/layouts/addresses.html.erb
121
+ - test/integration/app/app/views/layouts/sellers.html.erb
122
+ - test/integration/app/app/views/layouts/states.html.erb
123
+ - test/integration/app/app/views/layouts/users.html.erb
124
+ - test/integration/app/app/views/sellers/edit.html.erb
125
+ - test/integration/app/app/views/sellers/index.html.erb
126
+ - test/integration/app/app/views/sellers/new.html.erb
127
+ - test/integration/app/app/views/sellers/show.html.erb
128
+ - test/integration/app/app/views/states/edit.html.erb
129
+ - test/integration/app/app/views/states/index.html.erb
130
+ - test/integration/app/app/views/states/new.html.erb
131
+ - test/integration/app/app/views/states/show.html.erb
132
+ - test/integration/app/app/views/users/edit.html.erb
133
+ - test/integration/app/app/views/users/index.html.erb
134
+ - test/integration/app/app/views/users/new.html.erb
135
+ - test/integration/app/app/views/users/show.html.erb
136
+ - test/integration/app/config/boot.rb
137
+ - test/integration/app/config/database.yml
138
+ - test/integration/app/config/environment.rb
139
+ - test/integration/app/config/environments/development.rb
140
+ - test/integration/app/config/environments/production.rb
141
+ - test/integration/app/config/environments/test.rb
142
+ - test/integration/app/config/locomotive.yml
143
+ - test/integration/app/config/routes.rb
144
+ - test/integration/app/config/ultrasphinx/default.base
145
+ - test/integration/app/config/ultrasphinx/development.conf.canonical
146
+ - test/integration/app/db/migrate/001_create_users.rb
147
+ - test/integration/app/db/migrate/002_create_sellers.rb
148
+ - test/integration/app/db/migrate/003_create_addresses.rb
149
+ - test/integration/app/db/migrate/004_create_states.rb
150
+ - test/integration/app/db/migrate/005_add_capitalization_to_seller.rb
151
+ - test/integration/app/db/migrate/006_add_deleted_to_user.rb
152
+ - test/integration/app/db/migrate/007_add_lat_and_long_to_address.rb
153
+ - test/integration/app/db/migrate/008_create_citations.rb
154
+ - test/integration/app/db/migrate/009_create_citations_items.rb
155
+ - test/integration/app/db/schema.rb
156
+ - test/integration/app/doc/README_FOR_APP
157
+ - test/integration/app/generated_models/aquatic_fish.rb
158
+ - test/integration/app/generated_models/aquatic_pupils_whale.rb
159
+ - test/integration/app/generated_models/aquatic_whale.rb
160
+ - test/integration/app/generated_models/beautiful_fight_relationship.rb
161
+ - test/integration/app/generated_models/citation.rb
162
+ - test/integration/app/generated_models/citations_item.rb
163
+ - test/integration/app/generated_models/dog.rb
164
+ - test/integration/app/generated_models/eaters_foodstuff.rb
165
+ - test/integration/app/generated_models/frog.rb
166
+ - test/integration/app/generated_models/kitten.rb
167
+ - test/integration/app/generated_models/parentship.rb
168
+ - test/integration/app/generated_models/person.rb
169
+ - test/integration/app/generated_models/petfood.rb
170
+ - test/integration/app/generated_models/polymorph_test_some_model.rb
171
+ - test/integration/app/generated_models/seller.rb
172
+ - test/integration/app/generated_models/tabby.rb
173
+ - test/integration/app/generated_models/user.rb
174
+ - test/integration/app/generated_models/wild_boar.rb
175
+ - test/integration/app/generators/commenting_generator_test.rb
176
+ - test/integration/app/public/404.html
177
+ - test/integration/app/public/500.html
178
+ - test/integration/app/public/dispatch.cgi
179
+ - test/integration/app/public/dispatch.fcgi
180
+ - test/integration/app/public/dispatch.rb
181
+ - test/integration/app/public/favicon.ico
182
+ - test/integration/app/public/images/rails.png
183
+ - test/integration/app/public/index.html
184
+ - test/integration/app/public/javascripts/application.js
185
+ - test/integration/app/public/javascripts/controls.js
186
+ - test/integration/app/public/javascripts/dragdrop.js
187
+ - test/integration/app/public/javascripts/effects.js
188
+ - test/integration/app/public/javascripts/prototype.js
189
+ - test/integration/app/public/robots.txt
190
+ - test/integration/app/public/stylesheets/scaffold.css
191
+ - test/integration/app/Rakefile
192
+ - test/integration/app/README
193
+ - test/integration/app/script/about
194
+ - test/integration/app/script/breakpointer
195
+ - test/integration/app/script/console
196
+ - test/integration/app/script/destroy
197
+ - test/integration/app/script/generate
198
+ - test/integration/app/script/performance/benchmarker
199
+ - test/integration/app/script/performance/profiler
200
+ - test/integration/app/script/plugin
201
+ - test/integration/app/script/process/inspector
202
+ - test/integration/app/script/process/reaper
203
+ - test/integration/app/script/process/spawner
204
+ - test/integration/app/script/runner
205
+ - test/integration/app/script/server
206
+ - test/integration/app/test/fixtures/addresses.yml
207
+ - test/integration/app/test/fixtures/citations.yml
208
+ - test/integration/app/test/fixtures/citations_items.yml
209
+ - test/integration/app/test/fixtures/sellers.yml
210
+ - test/integration/app/test/fixtures/states.yml
211
+ - test/integration/app/test/fixtures/users.yml
212
+ - test/integration/app/test/functional/addresses_controller_test.rb
213
+ - test/integration/app/test/functional/sellers_controller_test.rb
214
+ - test/integration/app/test/functional/states_controller_test.rb
215
+ - test/integration/app/test/functional/users_controller_test.rb
216
+ - test/integration/app/test/test_helper.rb
217
+ - test/integration/app/test/unit/address_test.rb
218
+ - test/integration/app/test/unit/citation_test.rb
219
+ - test/integration/app/test/unit/citations_item_test.rb
220
+ - test/integration/app/test/unit/seller_test.rb
221
+ - test/integration/app/test/unit/state_test.rb
222
+ - test/integration/app/test/unit/user_test.rb
223
+ - test/models/aquatic/fish.rb
224
+ - test/models/aquatic/pupils_whale.rb
225
+ - test/models/aquatic/whale.rb
226
+ - test/models/beautiful_fight_relationship.rb
227
+ - test/models/canine.rb
228
+ - test/models/cat.rb
229
+ - test/models/dog.rb
230
+ - test/models/eaters_foodstuff.rb
231
+ - test/models/frog.rb
232
+ - test/models/kitten.rb
233
+ - test/models/parentship.rb
234
+ - test/models/person.rb
235
+ - test/models/petfood.rb
236
+ - test/models/tabby.rb
237
+ - test/models/wild_boar.rb
238
+ - test/modules/extension_module.rb
239
+ - test/modules/other_extension_module.rb
240
+ - test/schema.rb
241
+ - test/setup.rb
242
+ - test/test_all.rb
243
+ - test/test_helper.rb
244
+ - test/unit/polymorph_test.rb
245
+ - TODO
246
+ - has_many_polymorphs.gemspec
247
+ has_rdoc: true
248
+ homepage: http://blog.evanweaver.com/files/doc/fauna/has_many_polymorphs/
249
+ post_install_message:
250
+ rdoc_options: []
251
+
252
+ require_paths:
253
+ - lib
254
+ required_ruby_version: !ruby/object:Gem::Requirement
255
+ requirements:
256
+ - - ">="
257
+ - !ruby/object:Gem::Version
258
+ version: "0"
259
+ version:
260
+ required_rubygems_version: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: "0"
265
+ version:
266
+ requirements: []
267
+
268
+ rubyforge_project: fauna
269
+ rubygems_version: 0.9.5
270
+ signing_key:
271
+ specification_version: 2
272
+ summary: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
273
+ test_files:
274
+ - test/test_all.rb
metadata.gz.sig CHANGED
Binary file