gsterndale-warrant 0.0.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (434) hide show
  1. data/README.textile +93 -0
  2. data/VERSION.yml +1 -1
  3. data/lib/warrant/app/controllers/application_controller.rb +25 -0
  4. data/lib/warrant/app/models/warrantable.rb +112 -0
  5. data/lib/warrant/lib/extensions/active_record.rb +21 -0
  6. data/lib/warrant/lib/warrant.rb +7 -0
  7. data/lib/warrant/test/test_helper.rb +1 -14
  8. data/lib/warrant.rb +5 -1
  9. data/test/rails_root/Capfile +3 -0
  10. data/test/rails_root/Rakefile +10 -0
  11. data/test/rails_root/app/controllers/application.rb +8 -0
  12. data/test/rails_root/app/helpers/application_helper.rb +5 -0
  13. data/test/rails_root/app/models/post.rb +23 -0
  14. data/test/rails_root/app/models/user.rb +5 -0
  15. data/test/rails_root/app/views/layouts/_flashes.erb +5 -0
  16. data/test/rails_root/app/views/layouts/application.html.erb +14 -0
  17. data/test/rails_root/config/boot.rb +109 -0
  18. data/test/rails_root/config/database.yml +13 -0
  19. data/test/rails_root/config/environment.rb +36 -0
  20. data/test/rails_root/config/environments/development.rb +19 -0
  21. data/test/rails_root/config/environments/test.rb +32 -0
  22. data/test/rails_root/config/initializers/inflections.rb +10 -0
  23. data/test/rails_root/config/initializers/mime_types.rb +5 -0
  24. data/test/rails_root/config/initializers/requires.rb +13 -0
  25. data/test/rails_root/config/initializers/time_formats.rb +4 -0
  26. data/test/rails_root/config/routes.rb +6 -0
  27. data/test/rails_root/db/migrate/20090123181754_create_users.rb +11 -0
  28. data/test/rails_root/db/migrate/20090123181755_create_posts.rb +15 -0
  29. data/test/rails_root/doc/README_FOR_APP +2 -0
  30. data/test/rails_root/doc/README_FOR_TEMPLATE +15 -0
  31. data/test/rails_root/lib/extensions/active_record.rb +5 -0
  32. data/test/rails_root/lib/tasks/bootstrap.rake +16 -0
  33. data/test/rails_root/lib/tasks/capistrano.rake +96 -0
  34. data/test/rails_root/lib/tasks/git_tasks.rake +129 -0
  35. data/test/rails_root/public/404.html +30 -0
  36. data/test/rails_root/public/422.html +30 -0
  37. data/test/rails_root/public/500.html +30 -0
  38. data/test/rails_root/public/dispatch.rb +10 -0
  39. data/test/rails_root/public/favicon.ico +0 -0
  40. data/test/rails_root/public/images/rails.png +0 -0
  41. data/test/rails_root/public/javascripts/application.js +2 -0
  42. data/test/rails_root/public/javascripts/builder.js +136 -0
  43. data/test/rails_root/public/javascripts/controls.js +963 -0
  44. data/test/rails_root/public/javascripts/dragdrop.js +972 -0
  45. data/test/rails_root/public/javascripts/effects.js +1120 -0
  46. data/test/rails_root/public/javascripts/prototype.js +4225 -0
  47. data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
  48. data/test/rails_root/public/javascripts/slider.js +277 -0
  49. data/test/rails_root/public/javascripts/sound.js +60 -0
  50. data/test/rails_root/public/robots.txt +1 -0
  51. data/test/rails_root/script/about +3 -0
  52. data/test/rails_root/script/breakpointer +3 -0
  53. data/test/rails_root/script/console +3 -0
  54. data/test/rails_root/script/create_project.rb +52 -0
  55. data/test/rails_root/script/dbconsole +3 -0
  56. data/test/rails_root/script/destroy +3 -0
  57. data/test/rails_root/script/generate +3 -0
  58. data/test/rails_root/script/performance/benchmarker +3 -0
  59. data/test/rails_root/script/performance/profiler +3 -0
  60. data/test/rails_root/script/performance/request +3 -0
  61. data/test/rails_root/script/plugin +3 -0
  62. data/test/rails_root/script/process/inspector +3 -0
  63. data/test/rails_root/script/process/reaper +3 -0
  64. data/test/rails_root/script/process/spawner +3 -0
  65. data/test/rails_root/script/runner +3 -0
  66. data/test/rails_root/script/server +3 -0
  67. data/test/rails_root/test/factories/warrant.rb +15 -0
  68. data/test/rails_root/test/functional/application_controller_test.rb +33 -0
  69. data/test/rails_root/test/test_helper.rb +24 -0
  70. data/test/rails_root/test/unit/post_test.rb +235 -0
  71. data/test/rails_root/vendor/gems/RedCloth-3.0.4/bin/redcloth +3 -0
  72. data/test/rails_root/vendor/gems/RedCloth-3.0.4/doc/CHANGELOG +160 -0
  73. data/test/rails_root/vendor/gems/RedCloth-3.0.4/doc/COPYING +25 -0
  74. data/test/rails_root/vendor/gems/RedCloth-3.0.4/doc/README +106 -0
  75. data/test/rails_root/vendor/gems/RedCloth-3.0.4/doc/REFERENCE +216 -0
  76. data/test/rails_root/vendor/gems/RedCloth-3.0.4/doc/make.rb +359 -0
  77. data/test/rails_root/vendor/gems/RedCloth-3.0.4/lib/redcloth.rb +1130 -0
  78. data/test/rails_root/vendor/gems/RedCloth-3.0.4/run-tests.rb +28 -0
  79. data/test/rails_root/vendor/gems/RedCloth-3.0.4/setup.rb +1376 -0
  80. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/code.yml +105 -0
  81. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/hard_breaks.yml +26 -0
  82. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/images.yml +171 -0
  83. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/instiki.yml +39 -0
  84. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/links.yml +155 -0
  85. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/lists.yml +77 -0
  86. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/markdown.yml +218 -0
  87. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/poignant.yml +64 -0
  88. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/table.yml +198 -0
  89. data/test/rails_root/vendor/gems/RedCloth-3.0.4/tests/textism.yml +406 -0
  90. data/test/rails_root/vendor/gems/mocha-0.9.4/COPYING +3 -0
  91. data/test/rails_root/vendor/gems/mocha-0.9.4/MIT-LICENSE +7 -0
  92. data/test/rails_root/vendor/gems/mocha-0.9.4/README +37 -0
  93. data/test/rails_root/vendor/gems/mocha-0.9.4/RELEASE +263 -0
  94. data/test/rails_root/vendor/gems/mocha-0.9.4/Rakefile +199 -0
  95. data/test/rails_root/vendor/gems/mocha-0.9.4/examples/misc.rb +44 -0
  96. data/test/rails_root/vendor/gems/mocha-0.9.4/examples/mocha.rb +26 -0
  97. data/test/rails_root/vendor/gems/mocha-0.9.4/examples/stubba.rb +65 -0
  98. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/any_instance_method.rb +54 -0
  99. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/argument_iterator.rb +21 -0
  100. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/backtrace_filter.rb +17 -0
  101. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/cardinality.rb +95 -0
  102. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/central.rb +27 -0
  103. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/change_state_side_effect.rb +19 -0
  104. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/class_method.rb +86 -0
  105. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/configuration.rb +60 -0
  106. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/deprecation.rb +22 -0
  107. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/exception_raiser.rb +17 -0
  108. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/expectation.rb +451 -0
  109. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/expectation_error.rb +15 -0
  110. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/expectation_list.rb +50 -0
  111. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/in_state_ordering_constraint.rb +19 -0
  112. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/inspect.rb +67 -0
  113. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/instance_method.rb +16 -0
  114. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/is_a.rb +9 -0
  115. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/logger.rb +15 -0
  116. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/metaclass.rb +13 -0
  117. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/method_matcher.rb +21 -0
  118. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/mini_test_adapter.rb +50 -0
  119. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/mock.rb +200 -0
  120. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/mockery.rb +181 -0
  121. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/module_method.rb +16 -0
  122. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/multiple_yields.rb +20 -0
  123. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/names.rb +53 -0
  124. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/no_yields.rb +11 -0
  125. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/object.rb +187 -0
  126. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/all_of.rb +42 -0
  127. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/any_of.rb +47 -0
  128. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
  129. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/anything.rb +33 -0
  130. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/base.rb +15 -0
  131. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/equals.rb +42 -0
  132. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/has_entries.rb +45 -0
  133. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/has_entry.rb +56 -0
  134. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/has_key.rb +42 -0
  135. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/has_value.rb +42 -0
  136. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/includes.rb +40 -0
  137. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/instance_of.rb +42 -0
  138. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/is_a.rb +42 -0
  139. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/kind_of.rb +42 -0
  140. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/not.rb +42 -0
  141. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/object.rb +15 -0
  142. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/optionally.rb +55 -0
  143. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/regexp_matches.rb +43 -0
  144. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/responds_with.rb +43 -0
  145. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -0
  146. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameter_matchers.rb +27 -0
  147. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/parameters_matcher.rb +37 -0
  148. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/pretty_parameters.rb +28 -0
  149. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/return_values.rb +31 -0
  150. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/sequence.rb +42 -0
  151. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/single_return_value.rb +17 -0
  152. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/single_yield.rb +18 -0
  153. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/standalone.rb +166 -0
  154. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/state_machine.rb +91 -0
  155. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/stubbing_error.rb +16 -0
  156. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/test_case_adapter.rb +103 -0
  157. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/unexpected_invocation.rb +18 -0
  158. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha/yield_parameters.rb +31 -0
  159. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha.rb +47 -0
  160. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/mocha_standalone.rb +2 -0
  161. data/test/rails_root/vendor/gems/mocha-0.9.4/lib/stubba.rb +4 -0
  162. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/acceptance_test_helper.rb +38 -0
  163. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/bug_18914_test.rb +43 -0
  164. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/bug_21465_test.rb +34 -0
  165. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/bug_21563_test.rb +25 -0
  166. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/expected_invocation_count_test.rb +196 -0
  167. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/failure_messages_test.rb +64 -0
  168. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/minitest_test.rb +130 -0
  169. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/mocha_example_test.rb +98 -0
  170. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/mocha_test_result_test.rb +84 -0
  171. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/mock_test.rb +100 -0
  172. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/mock_with_initializer_block_test.rb +51 -0
  173. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
  174. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/optional_parameters_test.rb +70 -0
  175. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/parameter_matcher_test.rb +209 -0
  176. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/partial_mocks_test.rb +47 -0
  177. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/return_value_test.rb +52 -0
  178. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/sequence_test.rb +186 -0
  179. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/standalone_test.rb +139 -0
  180. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/states_test.rb +70 -0
  181. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_any_instance_method_test.rb +195 -0
  182. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_class_method_test.rb +203 -0
  183. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_everything_test.rb +56 -0
  184. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_instance_method_test.rb +203 -0
  185. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_module_method_test.rb +163 -0
  186. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stub_test.rb +52 -0
  187. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubba_example_test.rb +102 -0
  188. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubba_test.rb +15 -0
  189. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubba_test_result_test.rb +66 -0
  190. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
  191. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
  192. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
  193. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
  194. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
  195. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
  196. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
  197. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
  198. data/test/rails_root/vendor/gems/mocha-0.9.4/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
  199. data/test/rails_root/vendor/gems/mocha-0.9.4/test/deprecation_disabler.rb +15 -0
  200. data/test/rails_root/vendor/gems/mocha-0.9.4/test/execution_point.rb +36 -0
  201. data/test/rails_root/vendor/gems/mocha-0.9.4/test/method_definer.rb +24 -0
  202. data/test/rails_root/vendor/gems/mocha-0.9.4/test/simple_counter.rb +13 -0
  203. data/test/rails_root/vendor/gems/mocha-0.9.4/test/test_helper.rb +11 -0
  204. data/test/rails_root/vendor/gems/mocha-0.9.4/test/test_runner.rb +33 -0
  205. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/any_instance_method_test.rb +126 -0
  206. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/array_inspect_test.rb +16 -0
  207. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/backtrace_filter_test.rb +19 -0
  208. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/cardinality_test.rb +56 -0
  209. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/central_test.rb +65 -0
  210. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/change_state_side_effect_test.rb +41 -0
  211. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/class_method_test.rb +237 -0
  212. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/date_time_inspect_test.rb +21 -0
  213. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/exception_raiser_test.rb +42 -0
  214. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/expectation_list_test.rb +57 -0
  215. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/expectation_test.rb +459 -0
  216. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/hash_inspect_test.rb +16 -0
  217. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/in_state_ordering_constraint_test.rb +43 -0
  218. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/metaclass_test.rb +22 -0
  219. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/method_matcher_test.rb +23 -0
  220. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/mock_test.rb +295 -0
  221. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/mockery_test.rb +149 -0
  222. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/multiple_yields_test.rb +18 -0
  223. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/no_yields_test.rb +18 -0
  224. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/object_inspect_test.rb +37 -0
  225. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/object_test.rb +82 -0
  226. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/all_of_test.rb +26 -0
  227. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/any_of_test.rb +26 -0
  228. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/anything_test.rb +21 -0
  229. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/equals_test.rb +25 -0
  230. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/has_entries_test.rb +51 -0
  231. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/has_entry_test.rb +62 -0
  232. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/has_key_test.rb +36 -0
  233. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/has_value_test.rb +37 -0
  234. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/includes_test.rb +25 -0
  235. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/instance_of_test.rb +25 -0
  236. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/is_a_test.rb +25 -0
  237. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/kind_of_test.rb +25 -0
  238. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/not_test.rb +26 -0
  239. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/regexp_matches_test.rb +25 -0
  240. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/responds_with_test.rb +25 -0
  241. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/stub_matcher.rb +27 -0
  242. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
  243. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameters_matcher_test.rb +121 -0
  244. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/return_values_test.rb +63 -0
  245. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/sequence_test.rb +104 -0
  246. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/single_return_value_test.rb +14 -0
  247. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/single_yield_test.rb +18 -0
  248. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/state_machine_test.rb +98 -0
  249. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/string_inspect_test.rb +11 -0
  250. data/test/rails_root/vendor/gems/mocha-0.9.4/test/unit/yield_parameters_test.rb +93 -0
  251. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/History.txt +50 -0
  252. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/Manifest.txt +9 -0
  253. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/README.txt +103 -0
  254. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/Rakefile +21 -0
  255. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/init.rb +1 -0
  256. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/lib/aliasing.rb +89 -0
  257. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/lib/attribute_accessors.rb +131 -0
  258. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/lib/quietbacktrace.rb +154 -0
  259. data/test/rails_root/vendor/gems/quietbacktrace-0.1.1/test/quiet_backtrace_test.rb +144 -0
  260. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/LICENSE +21 -0
  261. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/README.textile +204 -0
  262. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/Rakefile +54 -0
  263. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/TODO.textile +8 -0
  264. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/USAGE +1 -0
  265. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/clearance_generator.rb +92 -0
  266. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/lib/insert_commands.rb +103 -0
  267. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/lib/rake_commands.rb +22 -0
  268. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/README +54 -0
  269. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/controllers/application.rb +5 -0
  270. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/controllers/confirmations_controller.rb +3 -0
  271. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/controllers/passwords_controller.rb +3 -0
  272. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/controllers/sessions_controller.rb +3 -0
  273. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/controllers/users_controller.rb +3 -0
  274. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/models/clearance_mailer.rb +5 -0
  275. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/models/user.rb +3 -0
  276. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/clearance_mailer/change_password.html.erb +10 -0
  277. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/clearance_mailer/confirmation.html.erb +1 -0
  278. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/passwords/edit.html.erb +25 -0
  279. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/passwords/new.html.erb +15 -0
  280. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/sessions/new.html.erb +28 -0
  281. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/users/_form.html.erb +13 -0
  282. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/users/edit.html.erb +6 -0
  283. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/app/views/users/new.html.erb +6 -0
  284. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/db/migrate/create_users_with_clearance_columns.rb +21 -0
  285. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/db/migrate/update_users_with_clearance_columns.rb +42 -0
  286. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/factories/clearance.rb +16 -0
  287. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/functional/confirmations_controller_test.rb +5 -0
  288. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/functional/passwords_controller_test.rb +5 -0
  289. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/functional/sessions_controller_test.rb +5 -0
  290. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/functional/users_controller_test.rb +5 -0
  291. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/unit/clearance_mailer_test.rb +6 -0
  292. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/generators/clearance/templates/test/unit/user_test.rb +5 -0
  293. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/controllers/application_controller.rb +82 -0
  294. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/controllers/confirmations_controller.rb +42 -0
  295. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/controllers/passwords_controller.rb +68 -0
  296. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/controllers/sessions_controller.rb +68 -0
  297. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/controllers/users_controller.rb +40 -0
  298. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/models/clearance_mailer.rb +29 -0
  299. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/app/models/user.rb +85 -0
  300. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/functional/confirmations_controller_test.rb +44 -0
  301. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/functional/passwords_controller_test.rb +175 -0
  302. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/functional/sessions_controller_test.rb +194 -0
  303. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/functional/users_controller_test.rb +85 -0
  304. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/test_helper.rb +28 -0
  305. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/unit/clearance_mailer_test.rb +65 -0
  306. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance/test/unit/user_test.rb +163 -0
  307. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/lib/clearance.rb +14 -0
  308. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/rails/init.rb +1 -0
  309. data/test/rails_root/vendor/gems/thoughtbot-clearance-0.4.0/shoulda_macros/clearance.rb +173 -0
  310. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/CONTRIBUTION_GUIDELINES.rdoc +10 -0
  311. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/Changelog +29 -0
  312. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/LICENSE +19 -0
  313. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/README.textile +151 -0
  314. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/Rakefile +76 -0
  315. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl/aliases.rb +39 -0
  316. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl/attribute.rb +38 -0
  317. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl/attribute_proxy.rb +92 -0
  318. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl/factory.rb +280 -0
  319. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl/sequence.rb +58 -0
  320. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/lib/factory_girl.rb +27 -0
  321. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/aliases_test.rb +29 -0
  322. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/attribute_proxy_test.rb +121 -0
  323. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/attribute_test.rb +70 -0
  324. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/factory_test.rb +494 -0
  325. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/integration_test.rb +147 -0
  326. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/models.rb +42 -0
  327. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/sequence_test.rb +76 -0
  328. data/test/rails_root/vendor/gems/thoughtbot-factory_girl-1.1.5/test/test_helper.rb +10 -0
  329. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/CONTRIBUTION_GUIDELINES.rdoc +12 -0
  330. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/MIT-LICENSE +22 -0
  331. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/README.rdoc +119 -0
  332. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/Rakefile +70 -0
  333. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/bin/convert_to_should_syntax +42 -0
  334. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/action_mailer/assertions.rb +39 -0
  335. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/action_mailer.rb +10 -0
  336. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/active_record/assertions.rb +88 -0
  337. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/active_record/macros.rb +715 -0
  338. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/active_record.rb +12 -0
  339. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/assertions.rb +49 -0
  340. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/context.rb +306 -0
  341. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller/formats/html.rb +201 -0
  342. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller/formats/xml.rb +170 -0
  343. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller/helpers.rb +64 -0
  344. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller/macros.rb +316 -0
  345. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller/resource_options.rb +236 -0
  346. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/controller.rb +30 -0
  347. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/helpers.rb +10 -0
  348. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/macros.rb +74 -0
  349. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/private_helpers.rb +22 -0
  350. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/proc_extensions.rb +14 -0
  351. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/rails.rb +19 -0
  352. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/tasks/list_tests.rake +24 -0
  353. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
  354. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda/tasks.rb +3 -0
  355. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/lib/shoulda.rb +17 -0
  356. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/rails/init.rb +1 -0
  357. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/README +36 -0
  358. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fail_macros.rb +34 -0
  359. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/addresses.yml +3 -0
  360. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/friendships.yml +0 -0
  361. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/posts.yml +5 -0
  362. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/products.yml +0 -0
  363. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/taggings.yml +0 -0
  364. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/tags.yml +9 -0
  365. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/fixtures/users.yml +6 -0
  366. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/functional/posts_controller_test.rb +105 -0
  367. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/functional/users_controller_test.rb +38 -0
  368. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/other/context_test.rb +145 -0
  369. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/other/convert_to_should_syntax_test.rb +63 -0
  370. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/other/helpers_test.rb +183 -0
  371. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/other/private_helpers_test.rb +34 -0
  372. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/other/should_test.rb +266 -0
  373. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/controllers/application.rb +25 -0
  374. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/controllers/posts_controller.rb +85 -0
  375. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/controllers/users_controller.rb +84 -0
  376. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/helpers/application_helper.rb +3 -0
  377. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/helpers/posts_helper.rb +2 -0
  378. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/helpers/users_helper.rb +2 -0
  379. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/address.rb +7 -0
  380. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/dog.rb +5 -0
  381. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/flea.rb +3 -0
  382. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/friendship.rb +4 -0
  383. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/post.rb +12 -0
  384. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/product.rb +12 -0
  385. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/tag.rb +8 -0
  386. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/tagging.rb +4 -0
  387. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/models/user.rb +28 -0
  388. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/layouts/posts.rhtml +17 -0
  389. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/layouts/users.rhtml +17 -0
  390. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/layouts/wide.html.erb +1 -0
  391. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/posts/edit.rhtml +27 -0
  392. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/posts/index.rhtml +25 -0
  393. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/posts/new.rhtml +26 -0
  394. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/posts/show.rhtml +18 -0
  395. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/users/edit.rhtml +22 -0
  396. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/users/index.rhtml +22 -0
  397. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/users/new.rhtml +21 -0
  398. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/app/views/users/show.rhtml +13 -0
  399. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/boot.rb +109 -0
  400. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/database.yml +4 -0
  401. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/environment.rb +14 -0
  402. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/environments/sqlite3.rb +0 -0
  403. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/initializers/new_rails_defaults.rb +15 -0
  404. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/initializers/shoulda.rb +8 -0
  405. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/config/routes.rb +6 -0
  406. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/001_create_users.rb +18 -0
  407. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/002_create_posts.rb +13 -0
  408. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/003_create_taggings.rb +12 -0
  409. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/004_create_tags.rb +11 -0
  410. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/005_create_dogs.rb +12 -0
  411. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/006_create_addresses.rb +14 -0
  412. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/007_create_fleas.rb +11 -0
  413. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/008_create_dogs_fleas.rb +12 -0
  414. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/009_create_products.rb +17 -0
  415. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/migrate/010_create_friendships.rb +14 -0
  416. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/db/schema.rb +0 -0
  417. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/public/404.html +30 -0
  418. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/public/422.html +30 -0
  419. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/public/500.html +30 -0
  420. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/script/console +3 -0
  421. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/rails_root/script/generate +3 -0
  422. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/test_helper.rb +33 -0
  423. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/address_test.rb +10 -0
  424. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/dog_test.rb +7 -0
  425. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/flea_test.rb +6 -0
  426. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/friendship_test.rb +6 -0
  427. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/post_test.rb +15 -0
  428. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/product_test.rb +27 -0
  429. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/tag_test.rb +14 -0
  430. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/tagging_test.rb +6 -0
  431. data/test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.6/test/unit/user_test.rb +52 -0
  432. metadata +552 -7
  433. data/test/test_helper.rb +0 -10
  434. data/test/warrant_test.rb +0 -7
@@ -0,0 +1,1120 @@
1
+ // Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
2
+ // Contributors:
3
+ // Justin Palmer (http://encytemedia.com/)
4
+ // Mark Pilgrim (http://diveintomark.org/)
5
+ // Martin Bialasinki
6
+ //
7
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
8
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
9
+
10
+ // converts rgb() and #xxx to #xxxxxx format,
11
+ // returns self (or first argument) if not convertable
12
+ String.prototype.parseColor = function() {
13
+ var color = '#';
14
+ if (this.slice(0,4) == 'rgb(') {
15
+ var cols = this.slice(4,this.length-1).split(',');
16
+ var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
17
+ } else {
18
+ if (this.slice(0,1) == '#') {
19
+ if (this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
20
+ if (this.length==7) color = this.toLowerCase();
21
+ }
22
+ }
23
+ return (color.length==7 ? color : (arguments[0] || this));
24
+ };
25
+
26
+ /*--------------------------------------------------------------------------*/
27
+
28
+ Element.collectTextNodes = function(element) {
29
+ return $A($(element).childNodes).collect( function(node) {
30
+ return (node.nodeType==3 ? node.nodeValue :
31
+ (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
32
+ }).flatten().join('');
33
+ };
34
+
35
+ Element.collectTextNodesIgnoreClass = function(element, className) {
36
+ return $A($(element).childNodes).collect( function(node) {
37
+ return (node.nodeType==3 ? node.nodeValue :
38
+ ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
39
+ Element.collectTextNodesIgnoreClass(node, className) : ''));
40
+ }).flatten().join('');
41
+ };
42
+
43
+ Element.setContentZoom = function(element, percent) {
44
+ element = $(element);
45
+ element.setStyle({fontSize: (percent/100) + 'em'});
46
+ if (Prototype.Browser.WebKit) window.scrollBy(0,0);
47
+ return element;
48
+ };
49
+
50
+ Element.getInlineOpacity = function(element){
51
+ return $(element).style.opacity || '';
52
+ };
53
+
54
+ Element.forceRerendering = function(element) {
55
+ try {
56
+ element = $(element);
57
+ var n = document.createTextNode(' ');
58
+ element.appendChild(n);
59
+ element.removeChild(n);
60
+ } catch(e) { }
61
+ };
62
+
63
+ /*--------------------------------------------------------------------------*/
64
+
65
+ var Effect = {
66
+ _elementDoesNotExistError: {
67
+ name: 'ElementDoesNotExistError',
68
+ message: 'The specified DOM element does not exist, but is required for this effect to operate'
69
+ },
70
+ Transitions: {
71
+ linear: Prototype.K,
72
+ sinoidal: function(pos) {
73
+ return (-Math.cos(pos*Math.PI)/2) + 0.5;
74
+ },
75
+ reverse: function(pos) {
76
+ return 1-pos;
77
+ },
78
+ flicker: function(pos) {
79
+ var pos = ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
80
+ return pos > 1 ? 1 : pos;
81
+ },
82
+ wobble: function(pos) {
83
+ return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
84
+ },
85
+ pulse: function(pos, pulses) {
86
+ pulses = pulses || 5;
87
+ return (
88
+ ((pos % (1/pulses)) * pulses).round() == 0 ?
89
+ ((pos * pulses * 2) - (pos * pulses * 2).floor()) :
90
+ 1 - ((pos * pulses * 2) - (pos * pulses * 2).floor())
91
+ );
92
+ },
93
+ spring: function(pos) {
94
+ return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
95
+ },
96
+ none: function(pos) {
97
+ return 0;
98
+ },
99
+ full: function(pos) {
100
+ return 1;
101
+ }
102
+ },
103
+ DefaultOptions: {
104
+ duration: 1.0, // seconds
105
+ fps: 100, // 100= assume 66fps max.
106
+ sync: false, // true for combining
107
+ from: 0.0,
108
+ to: 1.0,
109
+ delay: 0.0,
110
+ queue: 'parallel'
111
+ },
112
+ tagifyText: function(element) {
113
+ var tagifyStyle = 'position:relative';
114
+ if (Prototype.Browser.IE) tagifyStyle += ';zoom:1';
115
+
116
+ element = $(element);
117
+ $A(element.childNodes).each( function(child) {
118
+ if (child.nodeType==3) {
119
+ child.nodeValue.toArray().each( function(character) {
120
+ element.insertBefore(
121
+ new Element('span', {style: tagifyStyle}).update(
122
+ character == ' ' ? String.fromCharCode(160) : character),
123
+ child);
124
+ });
125
+ Element.remove(child);
126
+ }
127
+ });
128
+ },
129
+ multiple: function(element, effect) {
130
+ var elements;
131
+ if (((typeof element == 'object') ||
132
+ Object.isFunction(element)) &&
133
+ (element.length))
134
+ elements = element;
135
+ else
136
+ elements = $(element).childNodes;
137
+
138
+ var options = Object.extend({
139
+ speed: 0.1,
140
+ delay: 0.0
141
+ }, arguments[2] || { });
142
+ var masterDelay = options.delay;
143
+
144
+ $A(elements).each( function(element, index) {
145
+ new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
146
+ });
147
+ },
148
+ PAIRS: {
149
+ 'slide': ['SlideDown','SlideUp'],
150
+ 'blind': ['BlindDown','BlindUp'],
151
+ 'appear': ['Appear','Fade']
152
+ },
153
+ toggle: function(element, effect) {
154
+ element = $(element);
155
+ effect = (effect || 'appear').toLowerCase();
156
+ var options = Object.extend({
157
+ queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
158
+ }, arguments[2] || { });
159
+ Effect[element.visible() ?
160
+ Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
161
+ }
162
+ };
163
+
164
+ Effect.DefaultOptions.transition = Effect.Transitions.sinoidal;
165
+
166
+ /* ------------- core effects ------------- */
167
+
168
+ Effect.ScopedQueue = Class.create(Enumerable, {
169
+ initialize: function() {
170
+ this.effects = [];
171
+ this.interval = null;
172
+ },
173
+ _each: function(iterator) {
174
+ this.effects._each(iterator);
175
+ },
176
+ add: function(effect) {
177
+ var timestamp = new Date().getTime();
178
+
179
+ var position = Object.isString(effect.options.queue) ?
180
+ effect.options.queue : effect.options.queue.position;
181
+
182
+ switch(position) {
183
+ case 'front':
184
+ // move unstarted effects after this effect
185
+ this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
186
+ e.startOn += effect.finishOn;
187
+ e.finishOn += effect.finishOn;
188
+ });
189
+ break;
190
+ case 'with-last':
191
+ timestamp = this.effects.pluck('startOn').max() || timestamp;
192
+ break;
193
+ case 'end':
194
+ // start effect after last queued effect has finished
195
+ timestamp = this.effects.pluck('finishOn').max() || timestamp;
196
+ break;
197
+ }
198
+
199
+ effect.startOn += timestamp;
200
+ effect.finishOn += timestamp;
201
+
202
+ if (!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
203
+ this.effects.push(effect);
204
+
205
+ if (!this.interval)
206
+ this.interval = setInterval(this.loop.bind(this), 15);
207
+ },
208
+ remove: function(effect) {
209
+ this.effects = this.effects.reject(function(e) { return e==effect });
210
+ if (this.effects.length == 0) {
211
+ clearInterval(this.interval);
212
+ this.interval = null;
213
+ }
214
+ },
215
+ loop: function() {
216
+ var timePos = new Date().getTime();
217
+ for(var i=0, len=this.effects.length;i<len;i++)
218
+ this.effects[i] && this.effects[i].loop(timePos);
219
+ }
220
+ });
221
+
222
+ Effect.Queues = {
223
+ instances: $H(),
224
+ get: function(queueName) {
225
+ if (!Object.isString(queueName)) return queueName;
226
+
227
+ return this.instances.get(queueName) ||
228
+ this.instances.set(queueName, new Effect.ScopedQueue());
229
+ }
230
+ };
231
+ Effect.Queue = Effect.Queues.get('global');
232
+
233
+ Effect.Base = Class.create({
234
+ position: null,
235
+ start: function(options) {
236
+ function codeForEvent(options,eventName){
237
+ return (
238
+ (options[eventName+'Internal'] ? 'this.options.'+eventName+'Internal(this);' : '') +
239
+ (options[eventName] ? 'this.options.'+eventName+'(this);' : '')
240
+ );
241
+ }
242
+ if (options && options.transition === false) options.transition = Effect.Transitions.linear;
243
+ this.options = Object.extend(Object.extend({ },Effect.DefaultOptions), options || { });
244
+ this.currentFrame = 0;
245
+ this.state = 'idle';
246
+ this.startOn = this.options.delay*1000;
247
+ this.finishOn = this.startOn+(this.options.duration*1000);
248
+ this.fromToDelta = this.options.to-this.options.from;
249
+ this.totalTime = this.finishOn-this.startOn;
250
+ this.totalFrames = this.options.fps*this.options.duration;
251
+
252
+ eval('this.render = function(pos){ '+
253
+ 'if (this.state=="idle"){this.state="running";'+
254
+ codeForEvent(this.options,'beforeSetup')+
255
+ (this.setup ? 'this.setup();':'')+
256
+ codeForEvent(this.options,'afterSetup')+
257
+ '};if (this.state=="running"){'+
258
+ 'pos=this.options.transition(pos)*'+this.fromToDelta+'+'+this.options.from+';'+
259
+ 'this.position=pos;'+
260
+ codeForEvent(this.options,'beforeUpdate')+
261
+ (this.update ? 'this.update(pos);':'')+
262
+ codeForEvent(this.options,'afterUpdate')+
263
+ '}}');
264
+
265
+ this.event('beforeStart');
266
+ if (!this.options.sync)
267
+ Effect.Queues.get(Object.isString(this.options.queue) ?
268
+ 'global' : this.options.queue.scope).add(this);
269
+ },
270
+ loop: function(timePos) {
271
+ if (timePos >= this.startOn) {
272
+ if (timePos >= this.finishOn) {
273
+ this.render(1.0);
274
+ this.cancel();
275
+ this.event('beforeFinish');
276
+ if (this.finish) this.finish();
277
+ this.event('afterFinish');
278
+ return;
279
+ }
280
+ var pos = (timePos - this.startOn) / this.totalTime,
281
+ frame = (pos * this.totalFrames).round();
282
+ if (frame > this.currentFrame) {
283
+ this.render(pos);
284
+ this.currentFrame = frame;
285
+ }
286
+ }
287
+ },
288
+ cancel: function() {
289
+ if (!this.options.sync)
290
+ Effect.Queues.get(Object.isString(this.options.queue) ?
291
+ 'global' : this.options.queue.scope).remove(this);
292
+ this.state = 'finished';
293
+ },
294
+ event: function(eventName) {
295
+ if (this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
296
+ if (this.options[eventName]) this.options[eventName](this);
297
+ },
298
+ inspect: function() {
299
+ var data = $H();
300
+ for(property in this)
301
+ if (!Object.isFunction(this[property])) data.set(property, this[property]);
302
+ return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';
303
+ }
304
+ });
305
+
306
+ Effect.Parallel = Class.create(Effect.Base, {
307
+ initialize: function(effects) {
308
+ this.effects = effects || [];
309
+ this.start(arguments[1]);
310
+ },
311
+ update: function(position) {
312
+ this.effects.invoke('render', position);
313
+ },
314
+ finish: function(position) {
315
+ this.effects.each( function(effect) {
316
+ effect.render(1.0);
317
+ effect.cancel();
318
+ effect.event('beforeFinish');
319
+ if (effect.finish) effect.finish(position);
320
+ effect.event('afterFinish');
321
+ });
322
+ }
323
+ });
324
+
325
+ Effect.Tween = Class.create(Effect.Base, {
326
+ initialize: function(object, from, to) {
327
+ object = Object.isString(object) ? $(object) : object;
328
+ var args = $A(arguments), method = args.last(),
329
+ options = args.length == 5 ? args[3] : null;
330
+ this.method = Object.isFunction(method) ? method.bind(object) :
331
+ Object.isFunction(object[method]) ? object[method].bind(object) :
332
+ function(value) { object[method] = value };
333
+ this.start(Object.extend({ from: from, to: to }, options || { }));
334
+ },
335
+ update: function(position) {
336
+ this.method(position);
337
+ }
338
+ });
339
+
340
+ Effect.Event = Class.create(Effect.Base, {
341
+ initialize: function() {
342
+ this.start(Object.extend({ duration: 0 }, arguments[0] || { }));
343
+ },
344
+ update: Prototype.emptyFunction
345
+ });
346
+
347
+ Effect.Opacity = Class.create(Effect.Base, {
348
+ initialize: function(element) {
349
+ this.element = $(element);
350
+ if (!this.element) throw(Effect._elementDoesNotExistError);
351
+ // make this work on IE on elements without 'layout'
352
+ if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
353
+ this.element.setStyle({zoom: 1});
354
+ var options = Object.extend({
355
+ from: this.element.getOpacity() || 0.0,
356
+ to: 1.0
357
+ }, arguments[1] || { });
358
+ this.start(options);
359
+ },
360
+ update: function(position) {
361
+ this.element.setOpacity(position);
362
+ }
363
+ });
364
+
365
+ Effect.Move = Class.create(Effect.Base, {
366
+ initialize: function(element) {
367
+ this.element = $(element);
368
+ if (!this.element) throw(Effect._elementDoesNotExistError);
369
+ var options = Object.extend({
370
+ x: 0,
371
+ y: 0,
372
+ mode: 'relative'
373
+ }, arguments[1] || { });
374
+ this.start(options);
375
+ },
376
+ setup: function() {
377
+ this.element.makePositioned();
378
+ this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
379
+ this.originalTop = parseFloat(this.element.getStyle('top') || '0');
380
+ if (this.options.mode == 'absolute') {
381
+ this.options.x = this.options.x - this.originalLeft;
382
+ this.options.y = this.options.y - this.originalTop;
383
+ }
384
+ },
385
+ update: function(position) {
386
+ this.element.setStyle({
387
+ left: (this.options.x * position + this.originalLeft).round() + 'px',
388
+ top: (this.options.y * position + this.originalTop).round() + 'px'
389
+ });
390
+ }
391
+ });
392
+
393
+ // for backwards compatibility
394
+ Effect.MoveBy = function(element, toTop, toLeft) {
395
+ return new Effect.Move(element,
396
+ Object.extend({ x: toLeft, y: toTop }, arguments[3] || { }));
397
+ };
398
+
399
+ Effect.Scale = Class.create(Effect.Base, {
400
+ initialize: function(element, percent) {
401
+ this.element = $(element);
402
+ if (!this.element) throw(Effect._elementDoesNotExistError);
403
+ var options = Object.extend({
404
+ scaleX: true,
405
+ scaleY: true,
406
+ scaleContent: true,
407
+ scaleFromCenter: false,
408
+ scaleMode: 'box', // 'box' or 'contents' or { } with provided values
409
+ scaleFrom: 100.0,
410
+ scaleTo: percent
411
+ }, arguments[2] || { });
412
+ this.start(options);
413
+ },
414
+ setup: function() {
415
+ this.restoreAfterFinish = this.options.restoreAfterFinish || false;
416
+ this.elementPositioning = this.element.getStyle('position');
417
+
418
+ this.originalStyle = { };
419
+ ['top','left','width','height','fontSize'].each( function(k) {
420
+ this.originalStyle[k] = this.element.style[k];
421
+ }.bind(this));
422
+
423
+ this.originalTop = this.element.offsetTop;
424
+ this.originalLeft = this.element.offsetLeft;
425
+
426
+ var fontSize = this.element.getStyle('font-size') || '100%';
427
+ ['em','px','%','pt'].each( function(fontSizeType) {
428
+ if (fontSize.indexOf(fontSizeType)>0) {
429
+ this.fontSize = parseFloat(fontSize);
430
+ this.fontSizeType = fontSizeType;
431
+ }
432
+ }.bind(this));
433
+
434
+ this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
435
+
436
+ this.dims = null;
437
+ if (this.options.scaleMode=='box')
438
+ this.dims = [this.element.offsetHeight, this.element.offsetWidth];
439
+ if (/^content/.test(this.options.scaleMode))
440
+ this.dims = [this.element.scrollHeight, this.element.scrollWidth];
441
+ if (!this.dims)
442
+ this.dims = [this.options.scaleMode.originalHeight,
443
+ this.options.scaleMode.originalWidth];
444
+ },
445
+ update: function(position) {
446
+ var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
447
+ if (this.options.scaleContent && this.fontSize)
448
+ this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
449
+ this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
450
+ },
451
+ finish: function(position) {
452
+ if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
453
+ },
454
+ setDimensions: function(height, width) {
455
+ var d = { };
456
+ if (this.options.scaleX) d.width = width.round() + 'px';
457
+ if (this.options.scaleY) d.height = height.round() + 'px';
458
+ if (this.options.scaleFromCenter) {
459
+ var topd = (height - this.dims[0])/2;
460
+ var leftd = (width - this.dims[1])/2;
461
+ if (this.elementPositioning == 'absolute') {
462
+ if (this.options.scaleY) d.top = this.originalTop-topd + 'px';
463
+ if (this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
464
+ } else {
465
+ if (this.options.scaleY) d.top = -topd + 'px';
466
+ if (this.options.scaleX) d.left = -leftd + 'px';
467
+ }
468
+ }
469
+ this.element.setStyle(d);
470
+ }
471
+ });
472
+
473
+ Effect.Highlight = Class.create(Effect.Base, {
474
+ initialize: function(element) {
475
+ this.element = $(element);
476
+ if (!this.element) throw(Effect._elementDoesNotExistError);
477
+ var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || { });
478
+ this.start(options);
479
+ },
480
+ setup: function() {
481
+ // Prevent executing on elements not in the layout flow
482
+ if (this.element.getStyle('display')=='none') { this.cancel(); return; }
483
+ // Disable background image during the effect
484
+ this.oldStyle = { };
485
+ if (!this.options.keepBackgroundImage) {
486
+ this.oldStyle.backgroundImage = this.element.getStyle('background-image');
487
+ this.element.setStyle({backgroundImage: 'none'});
488
+ }
489
+ if (!this.options.endcolor)
490
+ this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
491
+ if (!this.options.restorecolor)
492
+ this.options.restorecolor = this.element.getStyle('background-color');
493
+ // init color calculations
494
+ this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
495
+ this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
496
+ },
497
+ update: function(position) {
498
+ this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
499
+ return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart()); }.bind(this)) });
500
+ },
501
+ finish: function() {
502
+ this.element.setStyle(Object.extend(this.oldStyle, {
503
+ backgroundColor: this.options.restorecolor
504
+ }));
505
+ }
506
+ });
507
+
508
+ Effect.ScrollTo = function(element) {
509
+ var options = arguments[1] || { },
510
+ scrollOffsets = document.viewport.getScrollOffsets(),
511
+ elementOffsets = $(element).cumulativeOffset(),
512
+ max = (window.height || document.body.scrollHeight) - document.viewport.getHeight();
513
+
514
+ if (options.offset) elementOffsets[1] += options.offset;
515
+
516
+ return new Effect.Tween(null,
517
+ scrollOffsets.top,
518
+ elementOffsets[1] > max ? max : elementOffsets[1],
519
+ options,
520
+ function(p){ scrollTo(scrollOffsets.left, p.round()) }
521
+ );
522
+ };
523
+
524
+ /* ------------- combination effects ------------- */
525
+
526
+ Effect.Fade = function(element) {
527
+ element = $(element);
528
+ var oldOpacity = element.getInlineOpacity();
529
+ var options = Object.extend({
530
+ from: element.getOpacity() || 1.0,
531
+ to: 0.0,
532
+ afterFinishInternal: function(effect) {
533
+ if (effect.options.to!=0) return;
534
+ effect.element.hide().setStyle({opacity: oldOpacity});
535
+ }
536
+ }, arguments[1] || { });
537
+ return new Effect.Opacity(element,options);
538
+ };
539
+
540
+ Effect.Appear = function(element) {
541
+ element = $(element);
542
+ var options = Object.extend({
543
+ from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
544
+ to: 1.0,
545
+ // force Safari to render floated elements properly
546
+ afterFinishInternal: function(effect) {
547
+ effect.element.forceRerendering();
548
+ },
549
+ beforeSetup: function(effect) {
550
+ effect.element.setOpacity(effect.options.from).show();
551
+ }}, arguments[1] || { });
552
+ return new Effect.Opacity(element,options);
553
+ };
554
+
555
+ Effect.Puff = function(element) {
556
+ element = $(element);
557
+ var oldStyle = {
558
+ opacity: element.getInlineOpacity(),
559
+ position: element.getStyle('position'),
560
+ top: element.style.top,
561
+ left: element.style.left,
562
+ width: element.style.width,
563
+ height: element.style.height
564
+ };
565
+ return new Effect.Parallel(
566
+ [ new Effect.Scale(element, 200,
567
+ { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
568
+ new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
569
+ Object.extend({ duration: 1.0,
570
+ beforeSetupInternal: function(effect) {
571
+ Position.absolutize(effect.effects[0].element)
572
+ },
573
+ afterFinishInternal: function(effect) {
574
+ effect.effects[0].element.hide().setStyle(oldStyle); }
575
+ }, arguments[1] || { })
576
+ );
577
+ };
578
+
579
+ Effect.BlindUp = function(element) {
580
+ element = $(element);
581
+ element.makeClipping();
582
+ return new Effect.Scale(element, 0,
583
+ Object.extend({ scaleContent: false,
584
+ scaleX: false,
585
+ restoreAfterFinish: true,
586
+ afterFinishInternal: function(effect) {
587
+ effect.element.hide().undoClipping();
588
+ }
589
+ }, arguments[1] || { })
590
+ );
591
+ };
592
+
593
+ Effect.BlindDown = function(element) {
594
+ element = $(element);
595
+ var elementDimensions = element.getDimensions();
596
+ return new Effect.Scale(element, 100, Object.extend({
597
+ scaleContent: false,
598
+ scaleX: false,
599
+ scaleFrom: 0,
600
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
601
+ restoreAfterFinish: true,
602
+ afterSetup: function(effect) {
603
+ effect.element.makeClipping().setStyle({height: '0px'}).show();
604
+ },
605
+ afterFinishInternal: function(effect) {
606
+ effect.element.undoClipping();
607
+ }
608
+ }, arguments[1] || { }));
609
+ };
610
+
611
+ Effect.SwitchOff = function(element) {
612
+ element = $(element);
613
+ var oldOpacity = element.getInlineOpacity();
614
+ return new Effect.Appear(element, Object.extend({
615
+ duration: 0.4,
616
+ from: 0,
617
+ transition: Effect.Transitions.flicker,
618
+ afterFinishInternal: function(effect) {
619
+ new Effect.Scale(effect.element, 1, {
620
+ duration: 0.3, scaleFromCenter: true,
621
+ scaleX: false, scaleContent: false, restoreAfterFinish: true,
622
+ beforeSetup: function(effect) {
623
+ effect.element.makePositioned().makeClipping();
624
+ },
625
+ afterFinishInternal: function(effect) {
626
+ effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
627
+ }
628
+ })
629
+ }
630
+ }, arguments[1] || { }));
631
+ };
632
+
633
+ Effect.DropOut = function(element) {
634
+ element = $(element);
635
+ var oldStyle = {
636
+ top: element.getStyle('top'),
637
+ left: element.getStyle('left'),
638
+ opacity: element.getInlineOpacity() };
639
+ return new Effect.Parallel(
640
+ [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
641
+ new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
642
+ Object.extend(
643
+ { duration: 0.5,
644
+ beforeSetup: function(effect) {
645
+ effect.effects[0].element.makePositioned();
646
+ },
647
+ afterFinishInternal: function(effect) {
648
+ effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
649
+ }
650
+ }, arguments[1] || { }));
651
+ };
652
+
653
+ Effect.Shake = function(element) {
654
+ element = $(element);
655
+ var options = Object.extend({
656
+ distance: 20,
657
+ duration: 0.5
658
+ }, arguments[1] || {});
659
+ var distance = parseFloat(options.distance);
660
+ var split = parseFloat(options.duration) / 10.0;
661
+ var oldStyle = {
662
+ top: element.getStyle('top'),
663
+ left: element.getStyle('left') };
664
+ return new Effect.Move(element,
665
+ { x: distance, y: 0, duration: split, afterFinishInternal: function(effect) {
666
+ new Effect.Move(effect.element,
667
+ { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
668
+ new Effect.Move(effect.element,
669
+ { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
670
+ new Effect.Move(effect.element,
671
+ { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
672
+ new Effect.Move(effect.element,
673
+ { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
674
+ new Effect.Move(effect.element,
675
+ { x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) {
676
+ effect.element.undoPositioned().setStyle(oldStyle);
677
+ }}) }}) }}) }}) }}) }});
678
+ };
679
+
680
+ Effect.SlideDown = function(element) {
681
+ element = $(element).cleanWhitespace();
682
+ // SlideDown need to have the content of the element wrapped in a container element with fixed height!
683
+ var oldInnerBottom = element.down().getStyle('bottom');
684
+ var elementDimensions = element.getDimensions();
685
+ return new Effect.Scale(element, 100, Object.extend({
686
+ scaleContent: false,
687
+ scaleX: false,
688
+ scaleFrom: window.opera ? 0 : 1,
689
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
690
+ restoreAfterFinish: true,
691
+ afterSetup: function(effect) {
692
+ effect.element.makePositioned();
693
+ effect.element.down().makePositioned();
694
+ if (window.opera) effect.element.setStyle({top: ''});
695
+ effect.element.makeClipping().setStyle({height: '0px'}).show();
696
+ },
697
+ afterUpdateInternal: function(effect) {
698
+ effect.element.down().setStyle({bottom:
699
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
700
+ },
701
+ afterFinishInternal: function(effect) {
702
+ effect.element.undoClipping().undoPositioned();
703
+ effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
704
+ }, arguments[1] || { })
705
+ );
706
+ };
707
+
708
+ Effect.SlideUp = function(element) {
709
+ element = $(element).cleanWhitespace();
710
+ var oldInnerBottom = element.down().getStyle('bottom');
711
+ var elementDimensions = element.getDimensions();
712
+ return new Effect.Scale(element, window.opera ? 0 : 1,
713
+ Object.extend({ scaleContent: false,
714
+ scaleX: false,
715
+ scaleMode: 'box',
716
+ scaleFrom: 100,
717
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
718
+ restoreAfterFinish: true,
719
+ afterSetup: function(effect) {
720
+ effect.element.makePositioned();
721
+ effect.element.down().makePositioned();
722
+ if (window.opera) effect.element.setStyle({top: ''});
723
+ effect.element.makeClipping().show();
724
+ },
725
+ afterUpdateInternal: function(effect) {
726
+ effect.element.down().setStyle({bottom:
727
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
728
+ },
729
+ afterFinishInternal: function(effect) {
730
+ effect.element.hide().undoClipping().undoPositioned();
731
+ effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom});
732
+ }
733
+ }, arguments[1] || { })
734
+ );
735
+ };
736
+
737
+ // Bug in opera makes the TD containing this element expand for a instance after finish
738
+ Effect.Squish = function(element) {
739
+ return new Effect.Scale(element, window.opera ? 1 : 0, {
740
+ restoreAfterFinish: true,
741
+ beforeSetup: function(effect) {
742
+ effect.element.makeClipping();
743
+ },
744
+ afterFinishInternal: function(effect) {
745
+ effect.element.hide().undoClipping();
746
+ }
747
+ });
748
+ };
749
+
750
+ Effect.Grow = function(element) {
751
+ element = $(element);
752
+ var options = Object.extend({
753
+ direction: 'center',
754
+ moveTransition: Effect.Transitions.sinoidal,
755
+ scaleTransition: Effect.Transitions.sinoidal,
756
+ opacityTransition: Effect.Transitions.full
757
+ }, arguments[1] || { });
758
+ var oldStyle = {
759
+ top: element.style.top,
760
+ left: element.style.left,
761
+ height: element.style.height,
762
+ width: element.style.width,
763
+ opacity: element.getInlineOpacity() };
764
+
765
+ var dims = element.getDimensions();
766
+ var initialMoveX, initialMoveY;
767
+ var moveX, moveY;
768
+
769
+ switch (options.direction) {
770
+ case 'top-left':
771
+ initialMoveX = initialMoveY = moveX = moveY = 0;
772
+ break;
773
+ case 'top-right':
774
+ initialMoveX = dims.width;
775
+ initialMoveY = moveY = 0;
776
+ moveX = -dims.width;
777
+ break;
778
+ case 'bottom-left':
779
+ initialMoveX = moveX = 0;
780
+ initialMoveY = dims.height;
781
+ moveY = -dims.height;
782
+ break;
783
+ case 'bottom-right':
784
+ initialMoveX = dims.width;
785
+ initialMoveY = dims.height;
786
+ moveX = -dims.width;
787
+ moveY = -dims.height;
788
+ break;
789
+ case 'center':
790
+ initialMoveX = dims.width / 2;
791
+ initialMoveY = dims.height / 2;
792
+ moveX = -dims.width / 2;
793
+ moveY = -dims.height / 2;
794
+ break;
795
+ }
796
+
797
+ return new Effect.Move(element, {
798
+ x: initialMoveX,
799
+ y: initialMoveY,
800
+ duration: 0.01,
801
+ beforeSetup: function(effect) {
802
+ effect.element.hide().makeClipping().makePositioned();
803
+ },
804
+ afterFinishInternal: function(effect) {
805
+ new Effect.Parallel(
806
+ [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
807
+ new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
808
+ new Effect.Scale(effect.element, 100, {
809
+ scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
810
+ sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
811
+ ], Object.extend({
812
+ beforeSetup: function(effect) {
813
+ effect.effects[0].element.setStyle({height: '0px'}).show();
814
+ },
815
+ afterFinishInternal: function(effect) {
816
+ effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);
817
+ }
818
+ }, options)
819
+ )
820
+ }
821
+ });
822
+ };
823
+
824
+ Effect.Shrink = function(element) {
825
+ element = $(element);
826
+ var options = Object.extend({
827
+ direction: 'center',
828
+ moveTransition: Effect.Transitions.sinoidal,
829
+ scaleTransition: Effect.Transitions.sinoidal,
830
+ opacityTransition: Effect.Transitions.none
831
+ }, arguments[1] || { });
832
+ var oldStyle = {
833
+ top: element.style.top,
834
+ left: element.style.left,
835
+ height: element.style.height,
836
+ width: element.style.width,
837
+ opacity: element.getInlineOpacity() };
838
+
839
+ var dims = element.getDimensions();
840
+ var moveX, moveY;
841
+
842
+ switch (options.direction) {
843
+ case 'top-left':
844
+ moveX = moveY = 0;
845
+ break;
846
+ case 'top-right':
847
+ moveX = dims.width;
848
+ moveY = 0;
849
+ break;
850
+ case 'bottom-left':
851
+ moveX = 0;
852
+ moveY = dims.height;
853
+ break;
854
+ case 'bottom-right':
855
+ moveX = dims.width;
856
+ moveY = dims.height;
857
+ break;
858
+ case 'center':
859
+ moveX = dims.width / 2;
860
+ moveY = dims.height / 2;
861
+ break;
862
+ }
863
+
864
+ return new Effect.Parallel(
865
+ [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
866
+ new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
867
+ new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
868
+ ], Object.extend({
869
+ beforeStartInternal: function(effect) {
870
+ effect.effects[0].element.makePositioned().makeClipping();
871
+ },
872
+ afterFinishInternal: function(effect) {
873
+ effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
874
+ }, options)
875
+ );
876
+ };
877
+
878
+ Effect.Pulsate = function(element) {
879
+ element = $(element);
880
+ var options = arguments[1] || { };
881
+ var oldOpacity = element.getInlineOpacity();
882
+ var transition = options.transition || Effect.Transitions.sinoidal;
883
+ var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
884
+ reverser.bind(transition);
885
+ return new Effect.Opacity(element,
886
+ Object.extend(Object.extend({ duration: 2.0, from: 0,
887
+ afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
888
+ }, options), {transition: reverser}));
889
+ };
890
+
891
+ Effect.Fold = function(element) {
892
+ element = $(element);
893
+ var oldStyle = {
894
+ top: element.style.top,
895
+ left: element.style.left,
896
+ width: element.style.width,
897
+ height: element.style.height };
898
+ element.makeClipping();
899
+ return new Effect.Scale(element, 5, Object.extend({
900
+ scaleContent: false,
901
+ scaleX: false,
902
+ afterFinishInternal: function(effect) {
903
+ new Effect.Scale(element, 1, {
904
+ scaleContent: false,
905
+ scaleY: false,
906
+ afterFinishInternal: function(effect) {
907
+ effect.element.hide().undoClipping().setStyle(oldStyle);
908
+ } });
909
+ }}, arguments[1] || { }));
910
+ };
911
+
912
+ Effect.Morph = Class.create(Effect.Base, {
913
+ initialize: function(element) {
914
+ this.element = $(element);
915
+ if (!this.element) throw(Effect._elementDoesNotExistError);
916
+ var options = Object.extend({
917
+ style: { }
918
+ }, arguments[1] || { });
919
+
920
+ if (!Object.isString(options.style)) this.style = $H(options.style);
921
+ else {
922
+ if (options.style.include(':'))
923
+ this.style = options.style.parseStyle();
924
+ else {
925
+ this.element.addClassName(options.style);
926
+ this.style = $H(this.element.getStyles());
927
+ this.element.removeClassName(options.style);
928
+ var css = this.element.getStyles();
929
+ this.style = this.style.reject(function(style) {
930
+ return style.value == css[style.key];
931
+ });
932
+ options.afterFinishInternal = function(effect) {
933
+ effect.element.addClassName(effect.options.style);
934
+ effect.transforms.each(function(transform) {
935
+ effect.element.style[transform.style] = '';
936
+ });
937
+ }
938
+ }
939
+ }
940
+ this.start(options);
941
+ },
942
+
943
+ setup: function(){
944
+ function parseColor(color){
945
+ if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
946
+ color = color.parseColor();
947
+ return $R(0,2).map(function(i){
948
+ return parseInt( color.slice(i*2+1,i*2+3), 16 )
949
+ });
950
+ }
951
+ this.transforms = this.style.map(function(pair){
952
+ var property = pair[0], value = pair[1], unit = null;
953
+
954
+ if (value.parseColor('#zzzzzz') != '#zzzzzz') {
955
+ value = value.parseColor();
956
+ unit = 'color';
957
+ } else if (property == 'opacity') {
958
+ value = parseFloat(value);
959
+ if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
960
+ this.element.setStyle({zoom: 1});
961
+ } else if (Element.CSS_LENGTH.test(value)) {
962
+ var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/);
963
+ value = parseFloat(components[1]);
964
+ unit = (components.length == 3) ? components[2] : null;
965
+ }
966
+
967
+ var originalValue = this.element.getStyle(property);
968
+ return {
969
+ style: property.camelize(),
970
+ originalValue: unit=='color' ? parseColor(originalValue) : parseFloat(originalValue || 0),
971
+ targetValue: unit=='color' ? parseColor(value) : value,
972
+ unit: unit
973
+ };
974
+ }.bind(this)).reject(function(transform){
975
+ return (
976
+ (transform.originalValue == transform.targetValue) ||
977
+ (
978
+ transform.unit != 'color' &&
979
+ (isNaN(transform.originalValue) || isNaN(transform.targetValue))
980
+ )
981
+ )
982
+ });
983
+ },
984
+ update: function(position) {
985
+ var style = { }, transform, i = this.transforms.length;
986
+ while(i--)
987
+ style[(transform = this.transforms[i]).style] =
988
+ transform.unit=='color' ? '#'+
989
+ (Math.round(transform.originalValue[0]+
990
+ (transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() +
991
+ (Math.round(transform.originalValue[1]+
992
+ (transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() +
993
+ (Math.round(transform.originalValue[2]+
994
+ (transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() :
995
+ (transform.originalValue +
996
+ (transform.targetValue - transform.originalValue) * position).toFixed(3) +
997
+ (transform.unit === null ? '' : transform.unit);
998
+ this.element.setStyle(style, true);
999
+ }
1000
+ });
1001
+
1002
+ Effect.Transform = Class.create({
1003
+ initialize: function(tracks){
1004
+ this.tracks = [];
1005
+ this.options = arguments[1] || { };
1006
+ this.addTracks(tracks);
1007
+ },
1008
+ addTracks: function(tracks){
1009
+ tracks.each(function(track){
1010
+ track = $H(track);
1011
+ var data = track.values().first();
1012
+ this.tracks.push($H({
1013
+ ids: track.keys().first(),
1014
+ effect: Effect.Morph,
1015
+ options: { style: data }
1016
+ }));
1017
+ }.bind(this));
1018
+ return this;
1019
+ },
1020
+ play: function(){
1021
+ return new Effect.Parallel(
1022
+ this.tracks.map(function(track){
1023
+ var ids = track.get('ids'), effect = track.get('effect'), options = track.get('options');
1024
+ var elements = [$(ids) || $$(ids)].flatten();
1025
+ return elements.map(function(e){ return new effect(e, Object.extend({ sync:true }, options)) });
1026
+ }).flatten(),
1027
+ this.options
1028
+ );
1029
+ }
1030
+ });
1031
+
1032
+ Element.CSS_PROPERTIES = $w(
1033
+ 'backgroundColor backgroundPosition borderBottomColor borderBottomStyle ' +
1034
+ 'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth ' +
1035
+ 'borderRightColor borderRightStyle borderRightWidth borderSpacing ' +
1036
+ 'borderTopColor borderTopStyle borderTopWidth bottom clip color ' +
1037
+ 'fontSize fontWeight height left letterSpacing lineHeight ' +
1038
+ 'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+
1039
+ 'maxWidth minHeight minWidth opacity outlineColor outlineOffset ' +
1040
+ 'outlineWidth paddingBottom paddingLeft paddingRight paddingTop ' +
1041
+ 'right textIndent top width wordSpacing zIndex');
1042
+
1043
+ Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;
1044
+
1045
+ String.__parseStyleElement = document.createElement('div');
1046
+ String.prototype.parseStyle = function(){
1047
+ var style, styleRules = $H();
1048
+ if (Prototype.Browser.WebKit)
1049
+ style = new Element('div',{style:this}).style;
1050
+ else {
1051
+ String.__parseStyleElement.innerHTML = '<div style="' + this + '"></div>';
1052
+ style = String.__parseStyleElement.childNodes[0].style;
1053
+ }
1054
+
1055
+ Element.CSS_PROPERTIES.each(function(property){
1056
+ if (style[property]) styleRules.set(property, style[property]);
1057
+ });
1058
+
1059
+ if (Prototype.Browser.IE && this.include('opacity'))
1060
+ styleRules.set('opacity', this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);
1061
+
1062
+ return styleRules;
1063
+ };
1064
+
1065
+ if (document.defaultView && document.defaultView.getComputedStyle) {
1066
+ Element.getStyles = function(element) {
1067
+ var css = document.defaultView.getComputedStyle($(element), null);
1068
+ return Element.CSS_PROPERTIES.inject({ }, function(styles, property) {
1069
+ styles[property] = css[property];
1070
+ return styles;
1071
+ });
1072
+ };
1073
+ } else {
1074
+ Element.getStyles = function(element) {
1075
+ element = $(element);
1076
+ var css = element.currentStyle, styles;
1077
+ styles = Element.CSS_PROPERTIES.inject({ }, function(hash, property) {
1078
+ hash.set(property, css[property]);
1079
+ return hash;
1080
+ });
1081
+ if (!styles.opacity) styles.set('opacity', element.getOpacity());
1082
+ return styles;
1083
+ };
1084
+ };
1085
+
1086
+ Effect.Methods = {
1087
+ morph: function(element, style) {
1088
+ element = $(element);
1089
+ new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || { }));
1090
+ return element;
1091
+ },
1092
+ visualEffect: function(element, effect, options) {
1093
+ element = $(element)
1094
+ var s = effect.dasherize().camelize(), klass = s.charAt(0).toUpperCase() + s.substring(1);
1095
+ new Effect[klass](element, options);
1096
+ return element;
1097
+ },
1098
+ highlight: function(element, options) {
1099
+ element = $(element);
1100
+ new Effect.Highlight(element, options);
1101
+ return element;
1102
+ }
1103
+ };
1104
+
1105
+ $w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+
1106
+ 'pulsate shake puff squish switchOff dropOut').each(
1107
+ function(effect) {
1108
+ Effect.Methods[effect] = function(element, options){
1109
+ element = $(element);
1110
+ Effect[effect.charAt(0).toUpperCase() + effect.substring(1)](element, options);
1111
+ return element;
1112
+ }
1113
+ }
1114
+ );
1115
+
1116
+ $w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(
1117
+ function(f) { Effect.Methods[f] = Element[f]; }
1118
+ );
1119
+
1120
+ Element.addMethods(Effect.Methods);