has_many_polymorphs 2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (177) hide show
  1. data/CHANGELOG +86 -0
  2. data/LICENSE +184 -0
  3. data/Manifest +173 -0
  4. data/README +205 -0
  5. data/Rakefile +28 -0
  6. data/TODO +2 -0
  7. data/examples/hmph.rb +69 -0
  8. data/generators/tagging/tagging_generator.rb +97 -0
  9. data/generators/tagging/templates/migration.rb +28 -0
  10. data/generators/tagging/templates/tag.rb +39 -0
  11. data/generators/tagging/templates/tag_test.rb +15 -0
  12. data/generators/tagging/templates/tagging.rb +16 -0
  13. data/generators/tagging/templates/tagging_extensions.rb +203 -0
  14. data/generators/tagging/templates/tagging_test.rb +85 -0
  15. data/generators/tagging/templates/taggings.yml +23 -0
  16. data/generators/tagging/templates/tags.yml +7 -0
  17. data/has_many_polymorphs.gemspec +36 -0
  18. data/init.rb +2 -0
  19. data/lib/has_many_polymorphs/association.rb +160 -0
  20. data/lib/has_many_polymorphs/autoload.rb +69 -0
  21. data/lib/has_many_polymorphs/base.rb +60 -0
  22. data/lib/has_many_polymorphs/class_methods.rb +600 -0
  23. data/lib/has_many_polymorphs/configuration.rb +19 -0
  24. data/lib/has_many_polymorphs/debugging_tools.rb +103 -0
  25. data/lib/has_many_polymorphs/rake_task_redefine_task.rb +35 -0
  26. data/lib/has_many_polymorphs/reflection.rb +58 -0
  27. data/lib/has_many_polymorphs/support_methods.rb +88 -0
  28. data/lib/has_many_polymorphs.rb +27 -0
  29. data/test/fixtures/bow_wows.yml +10 -0
  30. data/test/fixtures/cats.yml +18 -0
  31. data/test/fixtures/eaters_foodstuffs.yml +0 -0
  32. data/test/fixtures/fish.yml +12 -0
  33. data/test/fixtures/frogs.yml +5 -0
  34. data/test/fixtures/keep_your_enemies_close.yml +0 -0
  35. data/test/fixtures/little_whale_pupils.yml +0 -0
  36. data/test/fixtures/people.yml +7 -0
  37. data/test/fixtures/petfoods.yml +11 -0
  38. data/test/fixtures/whales.yml +5 -0
  39. data/test/fixtures/wild_boars.yml +10 -0
  40. data/test/generator/tagging_generator_test.rb +42 -0
  41. data/test/integration/app/README +182 -0
  42. data/test/integration/app/Rakefile +19 -0
  43. data/test/integration/app/app/controllers/application.rb +7 -0
  44. data/test/integration/app/app/controllers/bones_controller.rb +5 -0
  45. data/test/integration/app/app/helpers/addresses_helper.rb +2 -0
  46. data/test/integration/app/app/helpers/application_helper.rb +3 -0
  47. data/test/integration/app/app/helpers/bones_helper.rb +2 -0
  48. data/test/integration/app/app/helpers/sellers_helper.rb +28 -0
  49. data/test/integration/app/app/helpers/states_helper.rb +2 -0
  50. data/test/integration/app/app/helpers/users_helper.rb +2 -0
  51. data/test/integration/app/app/models/bone.rb +2 -0
  52. data/test/integration/app/app/models/double_sti_parent.rb +2 -0
  53. data/test/integration/app/app/models/double_sti_parent_relationship.rb +2 -0
  54. data/test/integration/app/app/models/organic_substance.rb +2 -0
  55. data/test/integration/app/app/models/single_sti_parent.rb +4 -0
  56. data/test/integration/app/app/models/single_sti_parent_relationship.rb +4 -0
  57. data/test/integration/app/app/models/stick.rb +2 -0
  58. data/test/integration/app/app/models/stone.rb +2 -0
  59. data/test/integration/app/app/views/addresses/edit.html.erb +12 -0
  60. data/test/integration/app/app/views/addresses/index.html.erb +18 -0
  61. data/test/integration/app/app/views/addresses/new.html.erb +11 -0
  62. data/test/integration/app/app/views/addresses/show.html.erb +3 -0
  63. data/test/integration/app/app/views/bones/index.rhtml +5 -0
  64. data/test/integration/app/app/views/layouts/addresses.html.erb +17 -0
  65. data/test/integration/app/app/views/layouts/sellers.html.erb +17 -0
  66. data/test/integration/app/app/views/layouts/states.html.erb +17 -0
  67. data/test/integration/app/app/views/layouts/users.html.erb +17 -0
  68. data/test/integration/app/app/views/sellers/edit.html.erb +12 -0
  69. data/test/integration/app/app/views/sellers/index.html.erb +20 -0
  70. data/test/integration/app/app/views/sellers/new.html.erb +11 -0
  71. data/test/integration/app/app/views/sellers/show.html.erb +3 -0
  72. data/test/integration/app/app/views/states/edit.html.erb +12 -0
  73. data/test/integration/app/app/views/states/index.html.erb +19 -0
  74. data/test/integration/app/app/views/states/new.html.erb +11 -0
  75. data/test/integration/app/app/views/states/show.html.erb +3 -0
  76. data/test/integration/app/app/views/users/edit.html.erb +12 -0
  77. data/test/integration/app/app/views/users/index.html.erb +22 -0
  78. data/test/integration/app/app/views/users/new.html.erb +11 -0
  79. data/test/integration/app/app/views/users/show.html.erb +3 -0
  80. data/test/integration/app/config/boot.rb +110 -0
  81. data/test/integration/app/config/database.yml +17 -0
  82. data/test/integration/app/config/environment.rb +19 -0
  83. data/test/integration/app/config/environment.rb.canonical +19 -0
  84. data/test/integration/app/config/environments/development.rb +9 -0
  85. data/test/integration/app/config/environments/production.rb +18 -0
  86. data/test/integration/app/config/environments/test.rb +19 -0
  87. data/test/integration/app/config/locomotive.yml +6 -0
  88. data/test/integration/app/config/routes.rb +33 -0
  89. data/test/integration/app/config/ultrasphinx/default.base +56 -0
  90. data/test/integration/app/config/ultrasphinx/development.conf.canonical +155 -0
  91. data/test/integration/app/db/migrate/001_create_sticks.rb +11 -0
  92. data/test/integration/app/db/migrate/002_create_stones.rb +11 -0
  93. data/test/integration/app/db/migrate/003_create_organic_substances.rb +11 -0
  94. data/test/integration/app/db/migrate/004_create_bones.rb +8 -0
  95. data/test/integration/app/db/migrate/005_create_single_sti_parents.rb +11 -0
  96. data/test/integration/app/db/migrate/006_create_double_sti_parents.rb +11 -0
  97. data/test/integration/app/db/migrate/007_create_single_sti_parent_relationships.rb +13 -0
  98. data/test/integration/app/db/migrate/008_create_double_sti_parent_relationships.rb +14 -0
  99. data/test/integration/app/db/migrate/009_create_library_model.rb +11 -0
  100. data/test/integration/app/doc/README_FOR_APP +2 -0
  101. data/test/integration/app/generators/commenting_generator_test.rb +83 -0
  102. data/test/integration/app/lib/library_model.rb +2 -0
  103. data/test/integration/app/public/404.html +30 -0
  104. data/test/integration/app/public/500.html +30 -0
  105. data/test/integration/app/public/dispatch.cgi +10 -0
  106. data/test/integration/app/public/dispatch.fcgi +24 -0
  107. data/test/integration/app/public/dispatch.rb +10 -0
  108. data/test/integration/app/public/favicon.ico +0 -0
  109. data/test/integration/app/public/images/rails.png +0 -0
  110. data/test/integration/app/public/index.html +277 -0
  111. data/test/integration/app/public/javascripts/application.js +2 -0
  112. data/test/integration/app/public/javascripts/controls.js +833 -0
  113. data/test/integration/app/public/javascripts/dragdrop.js +942 -0
  114. data/test/integration/app/public/javascripts/effects.js +1088 -0
  115. data/test/integration/app/public/javascripts/prototype.js +2515 -0
  116. data/test/integration/app/public/robots.txt +1 -0
  117. data/test/integration/app/public/stylesheets/scaffold.css +74 -0
  118. data/test/integration/app/script/about +3 -0
  119. data/test/integration/app/script/breakpointer +3 -0
  120. data/test/integration/app/script/console +3 -0
  121. data/test/integration/app/script/destroy +3 -0
  122. data/test/integration/app/script/generate +3 -0
  123. data/test/integration/app/script/performance/benchmarker +3 -0
  124. data/test/integration/app/script/performance/profiler +3 -0
  125. data/test/integration/app/script/plugin +3 -0
  126. data/test/integration/app/script/process/inspector +3 -0
  127. data/test/integration/app/script/process/reaper +3 -0
  128. data/test/integration/app/script/process/spawner +3 -0
  129. data/test/integration/app/script/runner +3 -0
  130. data/test/integration/app/script/server +3 -0
  131. data/test/integration/app/test/fixtures/double_sti_parent_relationships.yml +7 -0
  132. data/test/integration/app/test/fixtures/double_sti_parents.yml +7 -0
  133. data/test/integration/app/test/fixtures/organic_substances.yml +5 -0
  134. data/test/integration/app/test/fixtures/single_sti_parent_relationships.yml +7 -0
  135. data/test/integration/app/test/fixtures/single_sti_parents.yml +7 -0
  136. data/test/integration/app/test/fixtures/sticks.yml +7 -0
  137. data/test/integration/app/test/fixtures/stones.yml +7 -0
  138. data/test/integration/app/test/functional/addresses_controller_test.rb +57 -0
  139. data/test/integration/app/test/functional/bones_controller_test.rb +8 -0
  140. data/test/integration/app/test/functional/sellers_controller_test.rb +57 -0
  141. data/test/integration/app/test/functional/states_controller_test.rb +57 -0
  142. data/test/integration/app/test/functional/users_controller_test.rb +57 -0
  143. data/test/integration/app/test/test_helper.rb +8 -0
  144. data/test/integration/app/test/unit/bone_test.rb +8 -0
  145. data/test/integration/app/test/unit/double_sti_parent_relationship_test.rb +8 -0
  146. data/test/integration/app/test/unit/double_sti_parent_test.rb +8 -0
  147. data/test/integration/app/test/unit/organic_substance_test.rb +8 -0
  148. data/test/integration/app/test/unit/single_sti_parent_relationship_test.rb +8 -0
  149. data/test/integration/app/test/unit/single_sti_parent_test.rb +8 -0
  150. data/test/integration/app/test/unit/stick_test.rb +8 -0
  151. data/test/integration/app/test/unit/stone_test.rb +8 -0
  152. data/test/integration/server_test.rb +43 -0
  153. data/test/models/aquatic/fish.rb +5 -0
  154. data/test/models/aquatic/pupils_whale.rb +7 -0
  155. data/test/models/aquatic/whale.rb +15 -0
  156. data/test/models/beautiful_fight_relationship.rb +26 -0
  157. data/test/models/canine.rb +9 -0
  158. data/test/models/cat.rb +5 -0
  159. data/test/models/dog.rb +18 -0
  160. data/test/models/eaters_foodstuff.rb +8 -0
  161. data/test/models/frog.rb +4 -0
  162. data/test/models/kitten.rb +3 -0
  163. data/test/models/parentship.rb +4 -0
  164. data/test/models/person.rb +9 -0
  165. data/test/models/petfood.rb +39 -0
  166. data/test/models/tabby.rb +2 -0
  167. data/test/models/wild_boar.rb +3 -0
  168. data/test/modules/extension_module.rb +9 -0
  169. data/test/modules/other_extension_module.rb +9 -0
  170. data/test/patches/symlinked_plugins_1.2.6.diff +46 -0
  171. data/test/schema.rb +87 -0
  172. data/test/setup.rb +14 -0
  173. data/test/test_helper.rb +52 -0
  174. data/test/unit/has_many_polymorphs_test.rb +713 -0
  175. data.tar.gz.sig +1 -0
  176. metadata +279 -0
  177. metadata.gz.sig +0 -0
data.tar.gz.sig ADDED
@@ -0,0 +1 @@
1
+ �3X�
metadata ADDED
@@ -0,0 +1,279 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: has_many_polymorphs
3
+ version: !ruby/object:Gem::Version
4
+ version: "2.2"
5
+ platform: ruby
6
+ authors:
7
+ - ""
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDLjCCAhagAwIBAgIBADANBgkqhkiG9w0BAQUFADA9MQ0wCwYDVQQDDARldmFu
14
+ MRgwFgYKCZImiZPyLGQBGRYIY2xvdWRidXIxEjAQBgoJkiaJk/IsZAEZFgJzdDAe
15
+ Fw0wNzA5MTYxMDMzMDBaFw0wODA5MTUxMDMzMDBaMD0xDTALBgNVBAMMBGV2YW4x
16
+ GDAWBgoJkiaJk/IsZAEZFghjbG91ZGJ1cjESMBAGCgmSJomT8ixkARkWAnN0MIIB
17
+ IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5C0Io89nyApnr+PvbNFge9Vs
18
+ yRWAlGBUEMahpXp28VrrfXZT0rAW7JBo4PlCE3jl4nE4dzE6gAdItSycjTosrw7A
19
+ Ir5+xoyl4Vb35adv56TIQQXvNz+BzlqnkAY5JN0CSBRTQb6mxS3hFyD/h4qgDosj
20
+ R2RFVzHqSxCS8xq4Ny8uzOwOi+Xyu4w67fI5JvnPvMxqrlR1eaIQHmxnf76RzC46
21
+ QO5QhufjAYGGXd960XzbQsQyTDUYJzrvT7AdOfiyZzKQykKt8dEpDn+QPjFTnGnT
22
+ QmgJBX5WJN0lHF2l1sbv3gh4Kn1tZu+kTUqeXY6ShAoDTyvZRiFqQdwh8w2lTQID
23
+ AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU+WqJz3xQ
24
+ XSea1hRvvHWcIMgeeC4wDQYJKoZIhvcNAQEFBQADggEBAGLZ75jfOEW8Nsl26CTt
25
+ JFrWxQTcQT/UljeefVE3xYr7lc9oQjbqO3FOyued3qW7TaNEtZfSHoYeUSMYbpw1
26
+ XAwocIPuSRFDGM4B+hgQGVDx8PMGiJKom4qLXjO40UZsR7QyN/u869Vj45LURm6h
27
+ MBcPeqCASI+WNprj9+uZa2kmHiitrFqqfMBNlm5IFbn9XeYSta9AHVvs5QQqV2m5
28
+ hIPfLqCyxsn/YgOGvo6iwyQTWyTswamaAC3HRWZxIS1sfn/Ssqa7E7oQMkv5FAXr
29
+ x5rKePfXINf8XTJczkl9OBEYdE9aNdJsJpXD0asLgGVwBICS5Bjohp6mizJcDC1+
30
+ yZ0=
31
+ -----END CERTIFICATE-----
32
+
33
+ date: 2009-11-18 00:00:00 -08:00
34
+ default_executable:
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: activerecord
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: "0"
45
+ version:
46
+ description: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
47
+ email: ""
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ extra_rdoc_files:
53
+ - CHANGELOG
54
+ - generators/tagging/templates/migration.rb
55
+ - generators/tagging/templates/tag.rb
56
+ - generators/tagging/templates/tagging.rb
57
+ - generators/tagging/templates/tagging_extensions.rb
58
+ - lib/has_many_polymorphs/association.rb
59
+ - lib/has_many_polymorphs/autoload.rb
60
+ - lib/has_many_polymorphs/class_methods.rb
61
+ - lib/has_many_polymorphs/configuration.rb
62
+ - lib/has_many_polymorphs/reflection.rb
63
+ - LICENSE
64
+ - README
65
+ - test/integration/app/doc/README_FOR_APP
66
+ - test/integration/app/README
67
+ - TODO
68
+ files:
69
+ - CHANGELOG
70
+ - examples/hmph.rb
71
+ - generators/tagging/tagging_generator.rb
72
+ - generators/tagging/templates/migration.rb
73
+ - generators/tagging/templates/tag.rb
74
+ - generators/tagging/templates/tag_test.rb
75
+ - generators/tagging/templates/tagging.rb
76
+ - generators/tagging/templates/tagging_extensions.rb
77
+ - generators/tagging/templates/tagging_test.rb
78
+ - generators/tagging/templates/taggings.yml
79
+ - generators/tagging/templates/tags.yml
80
+ - init.rb
81
+ - lib/has_many_polymorphs/association.rb
82
+ - lib/has_many_polymorphs/autoload.rb
83
+ - lib/has_many_polymorphs/base.rb
84
+ - lib/has_many_polymorphs/class_methods.rb
85
+ - lib/has_many_polymorphs/configuration.rb
86
+ - lib/has_many_polymorphs/debugging_tools.rb
87
+ - lib/has_many_polymorphs/rake_task_redefine_task.rb
88
+ - lib/has_many_polymorphs/reflection.rb
89
+ - lib/has_many_polymorphs/support_methods.rb
90
+ - lib/has_many_polymorphs.rb
91
+ - LICENSE
92
+ - Manifest
93
+ - Rakefile
94
+ - README
95
+ - test/fixtures/bow_wows.yml
96
+ - test/fixtures/cats.yml
97
+ - test/fixtures/eaters_foodstuffs.yml
98
+ - test/fixtures/fish.yml
99
+ - test/fixtures/frogs.yml
100
+ - test/fixtures/keep_your_enemies_close.yml
101
+ - test/fixtures/little_whale_pupils.yml
102
+ - test/fixtures/people.yml
103
+ - test/fixtures/petfoods.yml
104
+ - test/fixtures/whales.yml
105
+ - test/fixtures/wild_boars.yml
106
+ - test/generator/tagging_generator_test.rb
107
+ - test/integration/app/app/controllers/application.rb
108
+ - test/integration/app/app/controllers/bones_controller.rb
109
+ - test/integration/app/app/helpers/addresses_helper.rb
110
+ - test/integration/app/app/helpers/application_helper.rb
111
+ - test/integration/app/app/helpers/bones_helper.rb
112
+ - test/integration/app/app/helpers/sellers_helper.rb
113
+ - test/integration/app/app/helpers/states_helper.rb
114
+ - test/integration/app/app/helpers/users_helper.rb
115
+ - test/integration/app/app/models/bone.rb
116
+ - test/integration/app/app/models/double_sti_parent.rb
117
+ - test/integration/app/app/models/double_sti_parent_relationship.rb
118
+ - test/integration/app/app/models/organic_substance.rb
119
+ - test/integration/app/app/models/single_sti_parent.rb
120
+ - test/integration/app/app/models/single_sti_parent_relationship.rb
121
+ - test/integration/app/app/models/stick.rb
122
+ - test/integration/app/app/models/stone.rb
123
+ - test/integration/app/app/views/addresses/edit.html.erb
124
+ - test/integration/app/app/views/addresses/index.html.erb
125
+ - test/integration/app/app/views/addresses/new.html.erb
126
+ - test/integration/app/app/views/addresses/show.html.erb
127
+ - test/integration/app/app/views/bones/index.rhtml
128
+ - test/integration/app/app/views/layouts/addresses.html.erb
129
+ - test/integration/app/app/views/layouts/sellers.html.erb
130
+ - test/integration/app/app/views/layouts/states.html.erb
131
+ - test/integration/app/app/views/layouts/users.html.erb
132
+ - test/integration/app/app/views/sellers/edit.html.erb
133
+ - test/integration/app/app/views/sellers/index.html.erb
134
+ - test/integration/app/app/views/sellers/new.html.erb
135
+ - test/integration/app/app/views/sellers/show.html.erb
136
+ - test/integration/app/app/views/states/edit.html.erb
137
+ - test/integration/app/app/views/states/index.html.erb
138
+ - test/integration/app/app/views/states/new.html.erb
139
+ - test/integration/app/app/views/states/show.html.erb
140
+ - test/integration/app/app/views/users/edit.html.erb
141
+ - test/integration/app/app/views/users/index.html.erb
142
+ - test/integration/app/app/views/users/new.html.erb
143
+ - test/integration/app/app/views/users/show.html.erb
144
+ - test/integration/app/config/boot.rb
145
+ - test/integration/app/config/database.yml
146
+ - test/integration/app/config/environment.rb
147
+ - test/integration/app/config/environment.rb.canonical
148
+ - test/integration/app/config/environments/development.rb
149
+ - test/integration/app/config/environments/production.rb
150
+ - test/integration/app/config/environments/test.rb
151
+ - test/integration/app/config/locomotive.yml
152
+ - test/integration/app/config/routes.rb
153
+ - test/integration/app/config/ultrasphinx/default.base
154
+ - test/integration/app/config/ultrasphinx/development.conf.canonical
155
+ - test/integration/app/db/migrate/001_create_sticks.rb
156
+ - test/integration/app/db/migrate/002_create_stones.rb
157
+ - test/integration/app/db/migrate/003_create_organic_substances.rb
158
+ - test/integration/app/db/migrate/004_create_bones.rb
159
+ - test/integration/app/db/migrate/005_create_single_sti_parents.rb
160
+ - test/integration/app/db/migrate/006_create_double_sti_parents.rb
161
+ - test/integration/app/db/migrate/007_create_single_sti_parent_relationships.rb
162
+ - test/integration/app/db/migrate/008_create_double_sti_parent_relationships.rb
163
+ - test/integration/app/db/migrate/009_create_library_model.rb
164
+ - test/integration/app/doc/README_FOR_APP
165
+ - test/integration/app/generators/commenting_generator_test.rb
166
+ - test/integration/app/lib/library_model.rb
167
+ - test/integration/app/public/404.html
168
+ - test/integration/app/public/500.html
169
+ - test/integration/app/public/dispatch.cgi
170
+ - test/integration/app/public/dispatch.fcgi
171
+ - test/integration/app/public/dispatch.rb
172
+ - test/integration/app/public/favicon.ico
173
+ - test/integration/app/public/images/rails.png
174
+ - test/integration/app/public/index.html
175
+ - test/integration/app/public/javascripts/application.js
176
+ - test/integration/app/public/javascripts/controls.js
177
+ - test/integration/app/public/javascripts/dragdrop.js
178
+ - test/integration/app/public/javascripts/effects.js
179
+ - test/integration/app/public/javascripts/prototype.js
180
+ - test/integration/app/public/robots.txt
181
+ - test/integration/app/public/stylesheets/scaffold.css
182
+ - test/integration/app/Rakefile
183
+ - test/integration/app/README
184
+ - test/integration/app/script/about
185
+ - test/integration/app/script/breakpointer
186
+ - test/integration/app/script/console
187
+ - test/integration/app/script/destroy
188
+ - test/integration/app/script/generate
189
+ - test/integration/app/script/performance/benchmarker
190
+ - test/integration/app/script/performance/profiler
191
+ - test/integration/app/script/plugin
192
+ - test/integration/app/script/process/inspector
193
+ - test/integration/app/script/process/reaper
194
+ - test/integration/app/script/process/spawner
195
+ - test/integration/app/script/runner
196
+ - test/integration/app/script/server
197
+ - test/integration/app/test/fixtures/double_sti_parent_relationships.yml
198
+ - test/integration/app/test/fixtures/double_sti_parents.yml
199
+ - test/integration/app/test/fixtures/organic_substances.yml
200
+ - test/integration/app/test/fixtures/single_sti_parent_relationships.yml
201
+ - test/integration/app/test/fixtures/single_sti_parents.yml
202
+ - test/integration/app/test/fixtures/sticks.yml
203
+ - test/integration/app/test/fixtures/stones.yml
204
+ - test/integration/app/test/functional/addresses_controller_test.rb
205
+ - test/integration/app/test/functional/bones_controller_test.rb
206
+ - test/integration/app/test/functional/sellers_controller_test.rb
207
+ - test/integration/app/test/functional/states_controller_test.rb
208
+ - test/integration/app/test/functional/users_controller_test.rb
209
+ - test/integration/app/test/test_helper.rb
210
+ - test/integration/app/test/unit/bone_test.rb
211
+ - test/integration/app/test/unit/double_sti_parent_relationship_test.rb
212
+ - test/integration/app/test/unit/double_sti_parent_test.rb
213
+ - test/integration/app/test/unit/organic_substance_test.rb
214
+ - test/integration/app/test/unit/single_sti_parent_relationship_test.rb
215
+ - test/integration/app/test/unit/single_sti_parent_test.rb
216
+ - test/integration/app/test/unit/stick_test.rb
217
+ - test/integration/app/test/unit/stone_test.rb
218
+ - test/integration/server_test.rb
219
+ - test/models/aquatic/fish.rb
220
+ - test/models/aquatic/pupils_whale.rb
221
+ - test/models/aquatic/whale.rb
222
+ - test/models/beautiful_fight_relationship.rb
223
+ - test/models/canine.rb
224
+ - test/models/cat.rb
225
+ - test/models/dog.rb
226
+ - test/models/eaters_foodstuff.rb
227
+ - test/models/frog.rb
228
+ - test/models/kitten.rb
229
+ - test/models/parentship.rb
230
+ - test/models/person.rb
231
+ - test/models/petfood.rb
232
+ - test/models/tabby.rb
233
+ - test/models/wild_boar.rb
234
+ - test/modules/extension_module.rb
235
+ - test/modules/other_extension_module.rb
236
+ - test/patches/symlinked_plugins_1.2.6.diff
237
+ - test/schema.rb
238
+ - test/setup.rb
239
+ - test/test_helper.rb
240
+ - test/unit/has_many_polymorphs_test.rb
241
+ - TODO
242
+ - has_many_polymorphs.gemspec
243
+ has_rdoc: true
244
+ homepage: http://blog.evanweaver.com/files/doc/fauna/has_many_polymorphs/
245
+ licenses: []
246
+
247
+ post_install_message:
248
+ rdoc_options:
249
+ - --line-numbers
250
+ - --inline-source
251
+ - --title
252
+ - Has_many_polymorphs
253
+ - --main
254
+ - README
255
+ require_paths:
256
+ - lib
257
+ required_ruby_version: !ruby/object:Gem::Requirement
258
+ requirements:
259
+ - - ">="
260
+ - !ruby/object:Gem::Version
261
+ version: "0"
262
+ version:
263
+ required_rubygems_version: !ruby/object:Gem::Requirement
264
+ requirements:
265
+ - - ">="
266
+ - !ruby/object:Gem::Version
267
+ version: "1.2"
268
+ version:
269
+ requirements: []
270
+
271
+ rubyforge_project: fauna
272
+ rubygems_version: 1.3.5
273
+ signing_key:
274
+ specification_version: 3
275
+ summary: An ActiveRecord plugin for self-referential and double-sided polymorphic associations.
276
+ test_files:
277
+ - test/generator/tagging_generator_test.rb
278
+ - test/integration/server_test.rb
279
+ - test/unit/has_many_polymorphs_test.rb
metadata.gz.sig ADDED
Binary file