graphael-on-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2397) hide show
  1. data/MIT-LICENSE +0 -0
  2. data/README.md +43 -0
  3. data/lib/graphael-on-rails.rb +8 -0
  4. data/lib/graphael-on-rails/version.rb +3 -0
  5. data/vendor/assets/javascripts/addons/g.bar.js +674 -0
  6. data/vendor/assets/javascripts/addons/g.dot.js +258 -0
  7. data/vendor/assets/javascripts/addons/g.line.js +489 -0
  8. data/vendor/assets/javascripts/addons/g.pie.js +296 -0
  9. data/vendor/assets/javascripts/graphael-on-rails.js +4 -0
  10. data/vendor/assets/javascripts/libs/g.raphael.js +861 -0
  11. data/vendor/assets/javascripts/libs/raphael-min.js +9 -0
  12. data/vendor/bundle/bin/erubis +23 -0
  13. data/vendor/bundle/bin/rackup +23 -0
  14. data/vendor/bundle/bin/rails +23 -0
  15. data/vendor/bundle/bin/rake +23 -0
  16. data/vendor/bundle/bin/rake2thor +23 -0
  17. data/vendor/bundle/bin/rdoc +23 -0
  18. data/vendor/bundle/bin/ri +23 -0
  19. data/vendor/bundle/bin/sprockets +23 -0
  20. data/vendor/bundle/bin/thor +23 -0
  21. data/vendor/bundle/bin/tilt +23 -0
  22. data/vendor/bundle/cache/actionpack-3.2.11.gem +0 -0
  23. data/vendor/bundle/cache/activemodel-3.2.11.gem +0 -0
  24. data/vendor/bundle/cache/activesupport-3.2.11.gem +0 -0
  25. data/vendor/bundle/cache/builder-3.0.4.gem +0 -0
  26. data/vendor/bundle/cache/erubis-2.7.0.gem +0 -0
  27. data/vendor/bundle/cache/hike-1.2.1.gem +0 -0
  28. data/vendor/bundle/cache/i18n-0.6.1.gem +0 -0
  29. data/vendor/bundle/cache/journey-1.0.4.gem +0 -0
  30. data/vendor/bundle/cache/json-1.7.6.gem +0 -0
  31. data/vendor/bundle/cache/multi_json-1.5.0.gem +0 -0
  32. data/vendor/bundle/cache/rack-1.4.5.gem +0 -0
  33. data/vendor/bundle/cache/rack-cache-1.2.gem +0 -0
  34. data/vendor/bundle/cache/rack-ssl-1.3.3.gem +0 -0
  35. data/vendor/bundle/cache/rack-test-0.6.2.gem +0 -0
  36. data/vendor/bundle/cache/railties-3.2.11.gem +0 -0
  37. data/vendor/bundle/cache/rake-10.0.3.gem +0 -0
  38. data/vendor/bundle/cache/rdoc-3.12.1.gem +0 -0
  39. data/vendor/bundle/cache/sprockets-2.2.2.gem +0 -0
  40. data/vendor/bundle/cache/thor-0.17.0.gem +0 -0
  41. data/vendor/bundle/cache/tilt-1.3.3.gem +0 -0
  42. data/vendor/bundle/gems/actionpack-3.2.11/CHANGELOG.md +447 -0
  43. data/vendor/bundle/gems/actionpack-3.2.11/MIT-LICENSE +21 -0
  44. data/vendor/bundle/gems/actionpack-3.2.11/README.rdoc +341 -0
  45. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller.rb +28 -0
  46. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/asset_paths.rb +10 -0
  47. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/base.rb +213 -0
  48. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/callbacks.rb +198 -0
  49. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/collector.rb +32 -0
  50. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/helpers.rb +167 -0
  51. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/layouts.rb +423 -0
  52. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/logger.rb +13 -0
  53. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/railties/routes_helpers.rb +18 -0
  54. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/rendering.rb +179 -0
  55. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/translation.rb +13 -0
  56. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/url_for.rb +33 -0
  57. data/vendor/bundle/gems/actionpack-3.2.11/lib/abstract_controller/view_paths.rb +96 -0
  58. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller.rb +65 -0
  59. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/base.rb +235 -0
  60. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/caching.rb +86 -0
  61. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/caching/actions.rb +185 -0
  62. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/caching/fragments.rb +127 -0
  63. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/caching/pages.rb +187 -0
  64. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/caching/sweeping.rb +97 -0
  65. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/deprecated.rb +3 -0
  66. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/deprecated/integration_test.rb +2 -0
  67. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/deprecated/performance_test.rb +1 -0
  68. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/log_subscriber.rb +67 -0
  69. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal.rb +250 -0
  70. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/compatibility.rb +64 -0
  71. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/conditional_get.rb +131 -0
  72. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/cookies.rb +16 -0
  73. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/data_streaming.rb +177 -0
  74. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/exceptions.rb +46 -0
  75. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/flash.rb +28 -0
  76. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/force_ssl.rb +39 -0
  77. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/head.rb +35 -0
  78. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/helpers.rb +113 -0
  79. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/hide_actions.rb +47 -0
  80. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/http_authentication.rb +466 -0
  81. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/implicit_render.rb +19 -0
  82. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/instrumentation.rb +105 -0
  83. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/mime_responds.rb +317 -0
  84. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/params_wrapper.rb +240 -0
  85. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/rack_delegation.rb +26 -0
  86. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/redirecting.rb +109 -0
  87. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/renderers.rb +109 -0
  88. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/rendering.rb +65 -0
  89. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/request_forgery_protection.rb +113 -0
  90. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/rescue.rb +35 -0
  91. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/responder.rb +286 -0
  92. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/session_management.rb +14 -0
  93. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/streaming.rb +229 -0
  94. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/testing.rb +37 -0
  95. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/metal/url_for.rb +47 -0
  96. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/middleware.rb +39 -0
  97. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/railtie.rb +51 -0
  98. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/railties/paths.rb +25 -0
  99. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/record_identifier.rb +85 -0
  100. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/test_case.rb +558 -0
  101. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner.rb +20 -0
  102. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  103. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/node.rb +532 -0
  104. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +177 -0
  105. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/selector.rb +830 -0
  106. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +107 -0
  107. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  108. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch.rb +102 -0
  109. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/cache.rb +123 -0
  110. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/filter_parameters.rb +70 -0
  111. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/headers.rb +31 -0
  112. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/mime_negotiation.rb +110 -0
  113. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/mime_type.rb +276 -0
  114. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/mime_types.rb +35 -0
  115. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/parameter_filter.rb +74 -0
  116. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/parameters.rb +83 -0
  117. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/rack_cache.rb +62 -0
  118. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/request.rb +279 -0
  119. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/response.rb +206 -0
  120. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/upload.rb +47 -0
  121. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/url.rb +174 -0
  122. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/best_standards_support.rb +22 -0
  123. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/body_proxy.rb +30 -0
  124. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/callbacks.rb +32 -0
  125. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/cookies.rb +353 -0
  126. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/debug_exceptions.rb +82 -0
  127. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/exception_wrapper.rb +82 -0
  128. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/flash.rb +263 -0
  129. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/head.rb +18 -0
  130. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/params_parser.rb +75 -0
  131. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/public_exceptions.rb +30 -0
  132. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/reloader.rb +89 -0
  133. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/remote_ip.rb +81 -0
  134. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/request_id.rb +39 -0
  135. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/rescue.rb +26 -0
  136. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/session/abstract_store.rb +88 -0
  137. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/session/cache_store.rb +49 -0
  138. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/session/cookie_store.rb +71 -0
  139. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/session/mem_cache_store.rb +17 -0
  140. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/show_exceptions.rb +87 -0
  141. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/stack.rb +124 -0
  142. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/static.rb +65 -0
  143. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +31 -0
  144. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb +26 -0
  145. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb +10 -0
  146. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/layout.erb +32 -0
  147. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/missing_template.erb +2 -0
  148. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +15 -0
  149. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb +17 -0
  150. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb +2 -0
  151. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/railtie.rb +34 -0
  152. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing.rb +293 -0
  153. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/mapper.rb +1509 -0
  154. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/polymorphic_routes.rb +209 -0
  155. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/redirection.rb +131 -0
  156. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/route_set.rb +659 -0
  157. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/routes_proxy.rb +39 -0
  158. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/routing/url_for.rb +167 -0
  159. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions.rb +18 -0
  160. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions/dom.rb +37 -0
  161. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions/response.rb +96 -0
  162. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions/routing.rb +217 -0
  163. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions/selector.rb +435 -0
  164. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/assertions/tag.rb +138 -0
  165. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/integration.rb +498 -0
  166. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/performance_test.rb +10 -0
  167. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/test_process.rb +41 -0
  168. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/test_request.rb +74 -0
  169. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/testing/test_response.rb +29 -0
  170. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_pack.rb +24 -0
  171. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_pack/version.rb +10 -0
  172. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view.rb +84 -0
  173. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/asset_paths.rb +142 -0
  174. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/base.rb +220 -0
  175. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/buffers.rb +43 -0
  176. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/context.rb +36 -0
  177. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/flows.rb +79 -0
  178. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers.rb +60 -0
  179. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/active_model_helper.rb +50 -0
  180. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_paths.rb +7 -0
  181. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_tag_helper.rb +457 -0
  182. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb +146 -0
  183. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +93 -0
  184. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb +193 -0
  185. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +148 -0
  186. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/atom_feed_helper.rb +200 -0
  187. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/cache_helper.rb +64 -0
  188. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/capture_helper.rb +203 -0
  189. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/controller_helper.rb +25 -0
  190. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/csrf_helper.rb +32 -0
  191. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/date_helper.rb +1057 -0
  192. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/debug_helper.rb +40 -0
  193. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/form_helper.rb +1487 -0
  194. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/form_options_helper.rb +658 -0
  195. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/form_tag_helper.rb +685 -0
  196. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/javascript_helper.rb +110 -0
  197. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/number_helper.rb +608 -0
  198. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/output_safety_helper.rb +38 -0
  199. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/record_tag_helper.rb +109 -0
  200. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/rendering_helper.rb +90 -0
  201. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/sanitize_helper.rb +259 -0
  202. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/tag_helper.rb +160 -0
  203. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/text_helper.rb +426 -0
  204. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/translation_helper.rb +88 -0
  205. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/helpers/url_helper.rb +693 -0
  206. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/locale/en.yml +160 -0
  207. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/log_subscriber.rb +28 -0
  208. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/lookup_context.rb +241 -0
  209. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/path_set.rb +89 -0
  210. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/railtie.rb +55 -0
  211. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/renderer/abstract_renderer.rb +41 -0
  212. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/renderer/partial_renderer.rb +415 -0
  213. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/renderer/renderer.rb +54 -0
  214. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/renderer/streaming_template_renderer.rb +106 -0
  215. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/renderer/template_renderer.rb +94 -0
  216. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template.rb +337 -0
  217. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/error.rb +128 -0
  218. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/handlers.rb +50 -0
  219. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/handlers/builder.rb +26 -0
  220. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/handlers/erb.rb +109 -0
  221. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/resolver.rb +258 -0
  222. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/template/text.rb +30 -0
  223. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/test_case.rb +245 -0
  224. data/vendor/bundle/gems/actionpack-3.2.11/lib/action_view/testing/resolvers.rb +50 -0
  225. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/assets.rake +99 -0
  226. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/bootstrap.rb +37 -0
  227. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/compressors.rb +83 -0
  228. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/helpers.rb +6 -0
  229. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/helpers/isolated_helper.rb +13 -0
  230. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/helpers/rails_helper.rb +175 -0
  231. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/railtie.rb +62 -0
  232. data/vendor/bundle/gems/actionpack-3.2.11/lib/sprockets/static_compiler.rb +56 -0
  233. data/vendor/bundle/gems/activemodel-3.2.11/CHANGELOG.md +62 -0
  234. data/vendor/bundle/gems/activemodel-3.2.11/MIT-LICENSE +21 -0
  235. data/vendor/bundle/gems/activemodel-3.2.11/README.rdoc +211 -0
  236. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model.rb +61 -0
  237. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/attribute_methods.rb +452 -0
  238. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/callbacks.rb +134 -0
  239. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/conversion.rb +73 -0
  240. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/dirty.rb +167 -0
  241. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/errors.rb +370 -0
  242. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/lint.rb +123 -0
  243. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/locale/en.yml +27 -0
  244. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/mass_assignment_security.rb +237 -0
  245. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/mass_assignment_security/permission_set.rb +40 -0
  246. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/mass_assignment_security/sanitizer.rb +59 -0
  247. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/naming.rb +171 -0
  248. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/observer_array.rb +147 -0
  249. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/observing.rb +252 -0
  250. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/railtie.rb +2 -0
  251. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/secure_password.rb +74 -0
  252. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/serialization.rb +139 -0
  253. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/serializers/json.rb +108 -0
  254. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/serializers/xml.rb +199 -0
  255. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/test_case.rb +16 -0
  256. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/translation.rb +70 -0
  257. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations.rb +237 -0
  258. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/acceptance.rb +67 -0
  259. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/callbacks.rb +57 -0
  260. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/confirmation.rb +67 -0
  261. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/exclusion.rb +79 -0
  262. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/format.rb +105 -0
  263. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/inclusion.rb +79 -0
  264. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/length.rb +127 -0
  265. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/numericality.rb +138 -0
  266. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/presence.rb +49 -0
  267. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/validates.rb +137 -0
  268. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validations/with.rb +142 -0
  269. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/validator.rb +184 -0
  270. data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/version.rb +10 -0
  271. data/vendor/bundle/gems/activesupport-3.2.11/CHANGELOG.md +157 -0
  272. data/vendor/bundle/gems/activesupport-3.2.11/MIT-LICENSE +20 -0
  273. data/vendor/bundle/gems/activesupport-3.2.11/README.rdoc +33 -0
  274. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support.rb +82 -0
  275. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/all.rb +3 -0
  276. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/backtrace_cleaner.rb +99 -0
  277. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/base64.rb +54 -0
  278. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/basic_object.rb +21 -0
  279. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/benchmarkable.rb +55 -0
  280. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/buffered_logger.rb +125 -0
  281. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/builder.rb +6 -0
  282. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache.rb +638 -0
  283. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache/file_store.rb +178 -0
  284. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache/mem_cache_store.rb +206 -0
  285. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache/memory_store.rb +159 -0
  286. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache/null_store.rb +44 -0
  287. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/cache/strategy/local_cache.rb +169 -0
  288. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/callbacks.rb +626 -0
  289. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/concern.rb +131 -0
  290. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/configurable.rb +90 -0
  291. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext.rb +3 -0
  292. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array.rb +8 -0
  293. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/access.rb +46 -0
  294. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/conversions.rb +164 -0
  295. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/extract_options.rb +29 -0
  296. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/grouping.rb +100 -0
  297. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
  298. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/random_access.rb +30 -0
  299. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/uniq_by.rb +16 -0
  300. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/array/wrap.rb +48 -0
  301. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/benchmark.rb +7 -0
  302. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/big_decimal.rb +1 -0
  303. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/big_decimal/conversions.rb +45 -0
  304. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/class.rb +4 -0
  305. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/class/attribute.rb +115 -0
  306. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/class/attribute_accessors.rb +168 -0
  307. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
  308. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/class/subclasses.rb +36 -0
  309. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date/acts_like.rb +8 -0
  310. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date/calculations.rb +276 -0
  311. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date/conversions.rb +106 -0
  312. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date/freeze.rb +33 -0
  313. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date/zones.rb +14 -0
  314. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  315. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date_time/calculations.rb +143 -0
  316. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  317. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/date_time/zones.rb +21 -0
  318. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/enumerable.rb +127 -0
  319. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/exception.rb +3 -0
  320. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/file.rb +2 -0
  321. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/file/atomic.rb +42 -0
  322. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/file/path.rb +5 -0
  323. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/float.rb +1 -0
  324. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/float/rounding.rb +19 -0
  325. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash.rb +9 -0
  326. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/conversions.rb +175 -0
  327. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/deep_dup.rb +18 -0
  328. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/deep_merge.rb +21 -0
  329. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb +13 -0
  330. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/except.rb +23 -0
  331. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  332. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/keys.rb +54 -0
  333. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/reverse_merge.rb +23 -0
  334. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/slice.rb +40 -0
  335. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/integer.rb +3 -0
  336. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/integer/inflections.rb +17 -0
  337. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/integer/multiple.rb +10 -0
  338. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/integer/time.rb +39 -0
  339. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/io.rb +15 -0
  340. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/kernel.rb +4 -0
  341. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  342. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/kernel/debugger.rb +10 -0
  343. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/kernel/reporting.rb +93 -0
  344. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  345. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/load_error.rb +23 -0
  346. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/logger.rb +83 -0
  347. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module.rb +12 -0
  348. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/aliasing.rb +70 -0
  349. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/anonymous.rb +24 -0
  350. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/attr_internal.rb +39 -0
  351. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/attribute_accessors.rb +64 -0
  352. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/delegation.rb +153 -0
  353. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/deprecation.rb +9 -0
  354. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/introspection.rb +88 -0
  355. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/method_names.rb +14 -0
  356. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/qualified_const.rb +64 -0
  357. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/reachable.rb +8 -0
  358. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/remove_method.rb +16 -0
  359. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/module/synchronization.rb +45 -0
  360. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/name_error.rb +18 -0
  361. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/numeric.rb +2 -0
  362. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  363. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/numeric/time.rb +79 -0
  364. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object.rb +13 -0
  365. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/acts_like.rb +10 -0
  366. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/blank.rb +121 -0
  367. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/conversions.rb +4 -0
  368. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/duplicable.rb +119 -0
  369. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/inclusion.rb +25 -0
  370. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/instance_variables.rb +33 -0
  371. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/to_json.rb +19 -0
  372. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/to_param.rb +55 -0
  373. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/to_query.rb +27 -0
  374. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/try.rb +57 -0
  375. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/object/with_options.rb +43 -0
  376. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/proc.rb +14 -0
  377. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/process.rb +1 -0
  378. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/process/daemon.rb +23 -0
  379. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range.rb +5 -0
  380. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range/blockless_step.rb +29 -0
  381. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range/conversions.rb +21 -0
  382. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range/cover.rb +3 -0
  383. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range/include_range.rb +21 -0
  384. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/range/overlaps.rb +8 -0
  385. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/regexp.rb +5 -0
  386. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/rexml.rb +46 -0
  387. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string.rb +14 -0
  388. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/access.rb +99 -0
  389. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/behavior.rb +6 -0
  390. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/conversions.rb +66 -0
  391. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/encoding.rb +11 -0
  392. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/exclude.rb +11 -0
  393. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/filters.rb +49 -0
  394. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/inflections.rb +202 -0
  395. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/inquiry.rb +13 -0
  396. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/interpolation.rb +2 -0
  397. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/multibyte.rb +72 -0
  398. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/output_safety.rb +186 -0
  399. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  400. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/strip.rb +26 -0
  401. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/string/xchar.rb +18 -0
  402. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/acts_like.rb +8 -0
  403. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/calculations.rb +360 -0
  404. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/conversions.rb +85 -0
  405. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/marshal.rb +57 -0
  406. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  407. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/time/zones.rb +86 -0
  408. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/uri.rb +30 -0
  409. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/dependencies.rb +703 -0
  410. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/dependencies/autoload.rb +50 -0
  411. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/deprecation.rb +18 -0
  412. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/deprecation/behaviors.rb +49 -0
  413. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/deprecation/method_wrappers.rb +29 -0
  414. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
  415. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/deprecation/reporting.rb +65 -0
  416. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/descendants_tracker.rb +45 -0
  417. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/duration.rb +110 -0
  418. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/file_update_checker.rb +121 -0
  419. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/file_watcher.rb +36 -0
  420. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/gzip.rb +30 -0
  421. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/hash_with_indifferent_access.rb +178 -0
  422. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/i18n.rb +9 -0
  423. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/i18n_railtie.rb +102 -0
  424. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/inflections.rb +63 -0
  425. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/inflector.rb +7 -0
  426. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/inflector/inflections.rb +174 -0
  427. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/inflector/methods.rb +321 -0
  428. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/inflector/transliterate.rb +98 -0
  429. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json.rb +2 -0
  430. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/decoding.rb +79 -0
  431. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/encoding.rb +284 -0
  432. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/json/variable.rb +9 -0
  433. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/lazy_load_hooks.rb +46 -0
  434. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/locale/en.yml +36 -0
  435. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/log_subscriber.rb +122 -0
  436. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/log_subscriber/test_helper.rb +101 -0
  437. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/memoizable.rb +116 -0
  438. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/message_encryptor.rb +103 -0
  439. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/message_verifier.rb +74 -0
  440. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/multibyte.rb +44 -0
  441. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/multibyte/chars.rb +476 -0
  442. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/multibyte/exceptions.rb +8 -0
  443. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/multibyte/unicode.rb +393 -0
  444. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/multibyte/utils.rb +60 -0
  445. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/notifications.rb +154 -0
  446. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/notifications/fanout.rb +61 -0
  447. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/notifications/instrumenter.rb +53 -0
  448. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/option_merger.rb +25 -0
  449. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/ordered_hash.rb +222 -0
  450. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/ordered_options.rb +61 -0
  451. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/railtie.rb +59 -0
  452. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/rescuable.rb +115 -0
  453. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/ruby/shim.rb +22 -0
  454. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/string_inquirer.rb +21 -0
  455. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/tagged_logging.rb +80 -0
  456. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/test_case.rb +34 -0
  457. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/assertions.rb +97 -0
  458. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/declarative.rb +40 -0
  459. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/deprecation.rb +55 -0
  460. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/isolation.rb +157 -0
  461. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/mochaing.rb +7 -0
  462. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/pending.rb +52 -0
  463. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance.rb +317 -0
  464. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance/jruby.rb +115 -0
  465. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance/rubinius.rb +113 -0
  466. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance/ruby.rb +152 -0
  467. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance/ruby/mri.rb +57 -0
  468. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/performance/ruby/yarv.rb +57 -0
  469. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/testing/setup_and_teardown.rb +118 -0
  470. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/time.rb +35 -0
  471. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/time/autoload.rb +5 -0
  472. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/time_with_zone.rb +358 -0
  473. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/values/time_zone.rb +397 -0
  474. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/values/unicode_tables.dat +0 -0
  475. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/version.rb +10 -0
  476. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/whiny_nil.rb +24 -0
  477. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini.rb +168 -0
  478. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/jdom.rb +175 -0
  479. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/libxml.rb +80 -0
  480. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/libxmlsax.rb +86 -0
  481. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/nokogiri.rb +84 -0
  482. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/nokogirisax.rb +88 -0
  483. data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/xml_mini/rexml.rb +130 -0
  484. data/vendor/bundle/gems/builder-3.0.4/CHANGES +101 -0
  485. data/vendor/bundle/gems/builder-3.0.4/MIT-LICENSE +20 -0
  486. data/vendor/bundle/gems/builder-3.0.4/README.rdoc +225 -0
  487. data/vendor/bundle/gems/builder-3.0.4/Rakefile +189 -0
  488. data/vendor/bundle/gems/builder-3.0.4/doc/releases/builder-1.2.4.rdoc +31 -0
  489. data/vendor/bundle/gems/builder-3.0.4/doc/releases/builder-2.0.0.rdoc +46 -0
  490. data/vendor/bundle/gems/builder-3.0.4/doc/releases/builder-2.1.1.rdoc +58 -0
  491. data/vendor/bundle/gems/builder-3.0.4/lib/blankslate.rb +137 -0
  492. data/vendor/bundle/gems/builder-3.0.4/lib/builder.rb +13 -0
  493. data/vendor/bundle/gems/builder-3.0.4/lib/builder/blankslate.rb +23 -0
  494. data/vendor/bundle/gems/builder-3.0.4/lib/builder/version.rb +8 -0
  495. data/vendor/bundle/gems/builder-3.0.4/lib/builder/xchar.rb +197 -0
  496. data/vendor/bundle/gems/builder-3.0.4/lib/builder/xmlbase.rb +192 -0
  497. data/vendor/bundle/gems/builder-3.0.4/lib/builder/xmlevents.rb +63 -0
  498. data/vendor/bundle/gems/builder-3.0.4/lib/builder/xmlmarkup.rb +334 -0
  499. data/vendor/bundle/gems/builder-3.0.4/test/performance.rb +40 -0
  500. data/vendor/bundle/gems/builder-3.0.4/test/preload.rb +39 -0
  501. data/vendor/bundle/gems/builder-3.0.4/test/test_blankslate.rb +217 -0
  502. data/vendor/bundle/gems/builder-3.0.4/test/test_eventbuilder.rb +150 -0
  503. data/vendor/bundle/gems/builder-3.0.4/test/test_markupbuilder.rb +578 -0
  504. data/vendor/bundle/gems/builder-3.0.4/test/test_method_caching.rb +62 -0
  505. data/vendor/bundle/gems/builder-3.0.4/test/test_namecollision.rb +39 -0
  506. data/vendor/bundle/gems/builder-3.0.4/test/test_xchar.rb +77 -0
  507. data/vendor/bundle/gems/erubis-2.7.0/CHANGES.txt +828 -0
  508. data/vendor/bundle/gems/erubis-2.7.0/MIT-LICENSE +20 -0
  509. data/vendor/bundle/gems/erubis-2.7.0/README.txt +102 -0
  510. data/vendor/bundle/gems/erubis-2.7.0/benchmark/Makefile +6 -0
  511. data/vendor/bundle/gems/erubis-2.7.0/benchmark/bench.rb +313 -0
  512. data/vendor/bundle/gems/erubis-2.7.0/benchmark/bench_context.yaml +141 -0
  513. data/vendor/bundle/gems/erubis-2.7.0/benchmark/templates/_footer.html +4 -0
  514. data/vendor/bundle/gems/erubis-2.7.0/benchmark/templates/_header.html +52 -0
  515. data/vendor/bundle/gems/erubis-2.7.0/benchmark/templates/bench_erb.rhtml +29 -0
  516. data/vendor/bundle/gems/erubis-2.7.0/benchmark/templates/bench_erubis.rhtml +29 -0
  517. data/vendor/bundle/gems/erubis-2.7.0/benchmark/templates/bench_eruby.rhtml +29 -0
  518. data/vendor/bundle/gems/erubis-2.7.0/bin/erubis +10 -0
  519. data/vendor/bundle/gems/erubis-2.7.0/contrib/erubis +3468 -0
  520. data/vendor/bundle/gems/erubis-2.7.0/contrib/erubis-run.rb +132 -0
  521. data/vendor/bundle/gems/erubis-2.7.0/contrib/inline-require +179 -0
  522. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/ActionView.html +105 -0
  523. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +209 -0
  524. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/ERB.html +101 -0
  525. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis.html +362 -0
  526. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
  527. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
  528. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
  529. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ArrayEruby.html +120 -0
  530. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic.html +112 -0
  531. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Converter.html +327 -0
  532. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Basic/Engine.html +130 -0
  533. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
  534. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
  535. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/CGenerator.html +386 -0
  536. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/CommandOptionError.html +113 -0
  537. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Context.html +344 -0
  538. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Converter.html +283 -0
  539. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/CppGenerator.html +382 -0
  540. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
  541. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
  542. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Ec.html +126 -0
  543. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Ecpp.html +126 -0
  544. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejava.html +126 -0
  545. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Ejavascript.html +126 -0
  546. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Engine.html +305 -0
  547. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Eperl.html +126 -0
  548. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Ephp.html +126 -0
  549. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
  550. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ErboutEruby.html +120 -0
  551. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/ErubisError.html +117 -0
  552. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Eruby.html +132 -0
  553. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
  554. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEc.html +120 -0
  555. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEcpp.html +120 -0
  556. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjava.html +120 -0
  557. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
  558. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEperl.html +120 -0
  559. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEphp.html +120 -0
  560. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEruby.html +127 -0
  561. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
  562. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Escheme.html +126 -0
  563. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Evaluator.html +212 -0
  564. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/FastEruby.html +131 -0
  565. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Generator.html +416 -0
  566. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
  567. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
  568. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers.html +116 -0
  569. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
  570. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
  571. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +213 -0
  572. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEnhancer.html +305 -0
  573. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
  574. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/JavaGenerator.html +359 -0
  575. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
  576. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/Main.html +341 -0
  577. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
  578. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
  579. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
  580. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/NoTextEruby.html +120 -0
  581. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/NotSupportedError.html +119 -0
  582. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
  583. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
  584. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
  585. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI.html +125 -0
  586. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Converter.html +266 -0
  587. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ec.html +166 -0
  588. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ecpp.html +166 -0
  589. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejava.html +166 -0
  590. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
  591. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Engine.html +122 -0
  592. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eperl.html +166 -0
  593. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Ephp.html +166 -0
  594. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Eruby.html +155 -0
  595. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/Escheme.html +166 -0
  596. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
  597. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEnhancer.html +163 -0
  598. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
  599. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PerlGenerator.html +344 -0
  600. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PhpGenerator.html +350 -0
  601. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEnhancer.html +210 -0
  602. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrefixedLineEruby.html +120 -0
  603. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
  604. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
  605. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
  606. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
  607. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
  608. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
  609. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
  610. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
  611. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/RubyGenerator.html +328 -0
  612. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
  613. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
  614. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
  615. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
  616. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutEruby.html +120 -0
  617. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
  618. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
  619. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
  620. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/StringIOEruby.html +120 -0
  621. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/TinyEruby.html +298 -0
  622. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlEruby.html +130 -0
  623. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Erubis/XmlHelper.html +255 -0
  624. data/vendor/bundle/gems/erubis-2.7.0/doc-api/classes/Kernel.html +155 -0
  625. data/vendor/bundle/gems/erubis-2.7.0/doc-api/created.rid +1 -0
  626. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/README_txt.html +247 -0
  627. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/context_rb.html +107 -0
  628. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/converter_rb.html +114 -0
  629. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/ec_rb.html +115 -0
  630. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/ecpp_rb.html +115 -0
  631. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejava_rb.html +115 -0
  632. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
  633. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
  634. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/eperl_rb.html +115 -0
  635. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/ephp_rb.html +115 -0
  636. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/eruby_rb.html +115 -0
  637. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/escheme_rb.html +115 -0
  638. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine/optimized_rb.html +114 -0
  639. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/engine_rb.html +117 -0
  640. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/enhancer_rb.html +107 -0
  641. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/error_rb.html +107 -0
  642. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/evaluator_rb.html +115 -0
  643. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/generator_rb.html +114 -0
  644. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/helper_rb.html +107 -0
  645. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
  646. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
  647. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/local-setting_rb.html +107 -0
  648. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/main_rb.html +129 -0
  649. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/preprocessing_rb.html +114 -0
  650. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/tiny_rb.html +107 -0
  651. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis/util_rb.html +107 -0
  652. data/vendor/bundle/gems/erubis-2.7.0/doc-api/files/erubis_rb.html +118 -0
  653. data/vendor/bundle/gems/erubis-2.7.0/doc-api/fr_class_index.html +129 -0
  654. data/vendor/bundle/gems/erubis-2.7.0/doc-api/fr_file_index.html +53 -0
  655. data/vendor/bundle/gems/erubis-2.7.0/doc-api/fr_method_index.html +265 -0
  656. data/vendor/bundle/gems/erubis-2.7.0/doc-api/index.html +24 -0
  657. data/vendor/bundle/gems/erubis-2.7.0/doc-api/rdoc-style.css +208 -0
  658. data/vendor/bundle/gems/erubis-2.7.0/doc/docstyle.css +209 -0
  659. data/vendor/bundle/gems/erubis-2.7.0/doc/users-guide.html +3551 -0
  660. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/Makefile +58 -0
  661. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.ec +42 -0
  662. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.ecpp +33 -0
  663. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.ejava +45 -0
  664. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.ejs +16 -0
  665. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.eperl +16 -0
  666. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.ephp +17 -0
  667. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.eruby +15 -0
  668. data/vendor/bundle/gems/erubis-2.7.0/examples/basic/example.escheme +26 -0
  669. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/Makefile +54 -0
  670. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.ec +42 -0
  671. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.ejava +45 -0
  672. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.ejs +16 -0
  673. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.eperl +16 -0
  674. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.ephp +17 -0
  675. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.eruby +15 -0
  676. data/vendor/bundle/gems/erubis-2.7.0/examples/pi/example.escheme +26 -0
  677. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis.rb +73 -0
  678. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/context.rb +83 -0
  679. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/converter.rb +357 -0
  680. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine.rb +120 -0
  681. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/ec.rb +117 -0
  682. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/ecpp.rb +113 -0
  683. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/ejava.rb +110 -0
  684. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/ejavascript.rb +119 -0
  685. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/enhanced.rb +126 -0
  686. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/eperl.rb +95 -0
  687. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/ephp.rb +99 -0
  688. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb +125 -0
  689. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/escheme.rb +114 -0
  690. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/engine/optimized.rb +127 -0
  691. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/enhancer.rb +723 -0
  692. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/error.rb +23 -0
  693. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/evaluator.rb +88 -0
  694. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/generator.rb +85 -0
  695. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/helper.rb +47 -0
  696. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb +197 -0
  697. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/helpers/rails_helper.rb +353 -0
  698. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/local-setting.rb +9 -0
  699. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/main.rb +516 -0
  700. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/preprocessing.rb +58 -0
  701. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/tiny.rb +144 -0
  702. data/vendor/bundle/gems/erubis-2.7.0/lib/erubis/util.rb +22 -0
  703. data/vendor/bundle/gems/erubis-2.7.0/setup.rb +1331 -0
  704. data/vendor/bundle/gems/erubis-2.7.0/test/assert-text-equal.rb +44 -0
  705. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/Example.ejava +55 -0
  706. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/array_example.result +9 -0
  707. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/arraybuffer_example.result +9 -0
  708. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/bipattern-example.rhtml +4 -0
  709. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/bipattern_example.result +6 -0
  710. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.rb +10 -0
  711. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/bufvar-example.result +17 -0
  712. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/context.rb +6 -0
  713. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/context.yaml +8 -0
  714. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/def_method.rb +14 -0
  715. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/def_method.result +3 -0
  716. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/escape_example.result +9 -0
  717. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.ec +27 -0
  718. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.ecpp +30 -0
  719. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.ejs +20 -0
  720. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.eperl +18 -0
  721. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.ephp +18 -0
  722. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.eruby +6 -0
  723. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example.escheme +28 -0
  724. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example1.eruby +6 -0
  725. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example1.rb +17 -0
  726. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example1.result +16 -0
  727. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example10.rb +4 -0
  728. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example10.result +17 -0
  729. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example10.xhtml +14 -0
  730. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example10_x.result +17 -0
  731. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11.php +20 -0
  732. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11.result +23 -0
  733. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11.rhtml +21 -0
  734. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11_C.result +10 -0
  735. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11_N.result +16 -0
  736. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11_U.result +16 -0
  737. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example11_php.result +15 -0
  738. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example1_x.result +9 -0
  739. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example2.eruby +7 -0
  740. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example2.rb +10 -0
  741. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example2.result +27 -0
  742. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example2_trim.result +10 -0
  743. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example2_x.result +10 -0
  744. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example3.eruby +6 -0
  745. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example3.rb +10 -0
  746. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example31.result +22 -0
  747. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example32.result +4 -0
  748. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example3_e.result +8 -0
  749. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example4.eruby +3 -0
  750. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example4.rb +11 -0
  751. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example4.result +10 -0
  752. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example4_x.result +5 -0
  753. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example5.eruby +6 -0
  754. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example5.rb +16 -0
  755. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example5.result +7 -0
  756. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example6.rb +12 -0
  757. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example6.result +7 -0
  758. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example7.eruby +8 -0
  759. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example71.result +13 -0
  760. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example72.result +13 -0
  761. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example8.eruby +6 -0
  762. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example8_ruby.result +7 -0
  763. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example8_yaml.result +7 -0
  764. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example9.eruby +3 -0
  765. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example9.rb +8 -0
  766. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example9.result +9 -0
  767. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example91.result +5 -0
  768. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example92.result +4 -0
  769. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_c.result +32 -0
  770. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_java.result +56 -0
  771. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_js.result +22 -0
  772. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_perl.result +20 -0
  773. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_php.result +19 -0
  774. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_scheme.result +30 -0
  775. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/example_scheme_display.result +29 -0
  776. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.rb +8 -0
  777. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/fasteruby-example.result +18 -0
  778. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rb +11 -0
  779. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/fasteruby.result +38 -0
  780. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/fasteruby.rhtml +15 -0
  781. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example.eruby +9 -0
  782. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rb +8 -0
  783. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/headerfooter-example2.rhtml +10 -0
  784. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example.result +11 -0
  785. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/headerfooter_example2.result +13 -0
  786. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/interpolation_example.result +9 -0
  787. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/main_program1.rb +8 -0
  788. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/main_program1.result +6 -0
  789. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/main_program2.rb +8 -0
  790. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/main_program2.result +6 -0
  791. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/nocode-example.eruby +14 -0
  792. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/nocode-php.result +20 -0
  793. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/nocode_example.result +15 -0
  794. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/normal-eruby-test.eruby +9 -0
  795. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/normal_eruby_test.result +11 -0
  796. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/notext-example.eruby +14 -0
  797. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/notext-example.php +19 -0
  798. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/notext-php.result +20 -0
  799. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/notext_example.result +16 -0
  800. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/percentline-example.rhtml +6 -0
  801. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/percentline_example.result +9 -0
  802. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rb +9 -0
  803. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/prefixedline-example.rhtml +6 -0
  804. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/prefixedline_example.result +9 -0
  805. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/printenable_example.result +4 -0
  806. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.eruby +3 -0
  807. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/printenabled-example.rb +8 -0
  808. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/printstatement_example.result +8 -0
  809. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/simplify_example.result +9 -0
  810. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/stderr.log +3 -0
  811. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/stdout_exmple.result +9 -0
  812. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/stringbuffer_example.result +9 -0
  813. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/tail_260.result +4 -0
  814. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/tailnewline.rhtml +3 -0
  815. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/template1.rhtml +4 -0
  816. data/vendor/bundle/gems/erubis-2.7.0/test/data/users-guide/template2.rhtml +4 -0
  817. data/vendor/bundle/gems/erubis-2.7.0/test/test-engines.rb +425 -0
  818. data/vendor/bundle/gems/erubis-2.7.0/test/test-enhancers.rb +646 -0
  819. data/vendor/bundle/gems/erubis-2.7.0/test/test-erubis.rb +887 -0
  820. data/vendor/bundle/gems/erubis-2.7.0/test/test-index-cgi.rb +191 -0
  821. data/vendor/bundle/gems/erubis-2.7.0/test/test-main.rb +752 -0
  822. data/vendor/bundle/gems/erubis-2.7.0/test/test-users-guide.rb +73 -0
  823. data/vendor/bundle/gems/erubis-2.7.0/test/test.rb +45 -0
  824. data/vendor/bundle/gems/erubis-2.7.0/test/testutil.rb +111 -0
  825. data/vendor/bundle/gems/hike-1.2.1/LICENSE +20 -0
  826. data/vendor/bundle/gems/hike-1.2.1/README.md +52 -0
  827. data/vendor/bundle/gems/hike-1.2.1/lib/hike.rb +9 -0
  828. data/vendor/bundle/gems/hike-1.2.1/lib/hike/extensions.rb +23 -0
  829. data/vendor/bundle/gems/hike-1.2.1/lib/hike/index.rb +204 -0
  830. data/vendor/bundle/gems/hike-1.2.1/lib/hike/normalized_array.rb +59 -0
  831. data/vendor/bundle/gems/hike-1.2.1/lib/hike/paths.rb +27 -0
  832. data/vendor/bundle/gems/hike-1.2.1/lib/hike/trail.rb +179 -0
  833. data/vendor/bundle/gems/i18n-0.6.1/CHANGELOG.textile +152 -0
  834. data/vendor/bundle/gems/i18n-0.6.1/MIT-LICENSE +20 -0
  835. data/vendor/bundle/gems/i18n-0.6.1/README.textile +105 -0
  836. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.no-rails +5 -0
  837. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.no-rails.lock +14 -0
  838. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.rails-2.3.x +9 -0
  839. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.rails-2.3.x.lock +23 -0
  840. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.rails-3.x +9 -0
  841. data/vendor/bundle/gems/i18n-0.6.1/ci/Gemfile.rails-3.x.lock +23 -0
  842. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n.rb +332 -0
  843. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend.rb +18 -0
  844. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/base.rb +181 -0
  845. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/cache.rb +96 -0
  846. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/cascade.rb +54 -0
  847. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/chain.rb +78 -0
  848. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/fallbacks.rb +65 -0
  849. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/flatten.rb +113 -0
  850. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/gettext.rb +72 -0
  851. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/interpolation_compiler.rb +121 -0
  852. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/key_value.rb +101 -0
  853. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/memoize.rb +46 -0
  854. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/metadata.rb +65 -0
  855. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/pluralization.rb +53 -0
  856. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/simple.rb +87 -0
  857. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/backend/transliterator.rb +98 -0
  858. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/config.rb +86 -0
  859. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/core_ext/hash.rb +29 -0
  860. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
  861. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/core_ext/string/interpolate.rb +105 -0
  862. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/exceptions.rb +106 -0
  863. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/gettext.rb +25 -0
  864. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/gettext/helpers.rb +64 -0
  865. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/gettext/po_parser.rb +329 -0
  866. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/interpolate/ruby.rb +31 -0
  867. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale.rb +6 -0
  868. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale/fallbacks.rb +96 -0
  869. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale/tag.rb +28 -0
  870. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale/tag/parents.rb +22 -0
  871. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale/tag/rfc4646.rb +74 -0
  872. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/locale/tag/simple.rb +39 -0
  873. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests.rb +12 -0
  874. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/basics.rb +54 -0
  875. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/defaults.rb +40 -0
  876. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/interpolation.rb +133 -0
  877. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/link.rb +56 -0
  878. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/localization.rb +19 -0
  879. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/localization/date.rb +84 -0
  880. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/localization/date_time.rb +77 -0
  881. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/localization/procs.rb +116 -0
  882. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/localization/time.rb +76 -0
  883. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/lookup.rb +74 -0
  884. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/pluralization.rb +35 -0
  885. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/tests/procs.rb +55 -0
  886. data/vendor/bundle/gems/i18n-0.6.1/lib/i18n/version.rb +3 -0
  887. data/vendor/bundle/gems/i18n-0.6.1/test/all.rb +8 -0
  888. data/vendor/bundle/gems/i18n-0.6.1/test/api/all_features_test.rb +58 -0
  889. data/vendor/bundle/gems/i18n-0.6.1/test/api/cascade_test.rb +28 -0
  890. data/vendor/bundle/gems/i18n-0.6.1/test/api/chain_test.rb +24 -0
  891. data/vendor/bundle/gems/i18n-0.6.1/test/api/fallbacks_test.rb +30 -0
  892. data/vendor/bundle/gems/i18n-0.6.1/test/api/key_value_test.rb +28 -0
  893. data/vendor/bundle/gems/i18n-0.6.1/test/api/memoize_test.rb +60 -0
  894. data/vendor/bundle/gems/i18n-0.6.1/test/api/override_test.rb +48 -0
  895. data/vendor/bundle/gems/i18n-0.6.1/test/api/pluralization_test.rb +30 -0
  896. data/vendor/bundle/gems/i18n-0.6.1/test/api/simple_test.rb +28 -0
  897. data/vendor/bundle/gems/i18n-0.6.1/test/backend/cache_test.rb +85 -0
  898. data/vendor/bundle/gems/i18n-0.6.1/test/backend/cascade_test.rb +85 -0
  899. data/vendor/bundle/gems/i18n-0.6.1/test/backend/chain_test.rb +72 -0
  900. data/vendor/bundle/gems/i18n-0.6.1/test/backend/exceptions_test.rb +30 -0
  901. data/vendor/bundle/gems/i18n-0.6.1/test/backend/fallbacks_test.rb +125 -0
  902. data/vendor/bundle/gems/i18n-0.6.1/test/backend/interpolation_compiler_test.rb +102 -0
  903. data/vendor/bundle/gems/i18n-0.6.1/test/backend/key_value_test.rb +46 -0
  904. data/vendor/bundle/gems/i18n-0.6.1/test/backend/memoize_test.rb +47 -0
  905. data/vendor/bundle/gems/i18n-0.6.1/test/backend/metadata_test.rb +47 -0
  906. data/vendor/bundle/gems/i18n-0.6.1/test/backend/pluralization_test.rb +44 -0
  907. data/vendor/bundle/gems/i18n-0.6.1/test/backend/simple_test.rb +83 -0
  908. data/vendor/bundle/gems/i18n-0.6.1/test/backend/transliterator_test.rb +81 -0
  909. data/vendor/bundle/gems/i18n-0.6.1/test/core_ext/hash_test.rb +30 -0
  910. data/vendor/bundle/gems/i18n-0.6.1/test/core_ext/string/interpolate_test.rb +99 -0
  911. data/vendor/bundle/gems/i18n-0.6.1/test/gettext/api_test.rb +206 -0
  912. data/vendor/bundle/gems/i18n-0.6.1/test/gettext/backend_test.rb +101 -0
  913. data/vendor/bundle/gems/i18n-0.6.1/test/i18n/exceptions_test.rb +116 -0
  914. data/vendor/bundle/gems/i18n-0.6.1/test/i18n/interpolate_test.rb +61 -0
  915. data/vendor/bundle/gems/i18n-0.6.1/test/i18n/load_path_test.rb +26 -0
  916. data/vendor/bundle/gems/i18n-0.6.1/test/i18n_test.rb +254 -0
  917. data/vendor/bundle/gems/i18n-0.6.1/test/locale/fallbacks_test.rb +136 -0
  918. data/vendor/bundle/gems/i18n-0.6.1/test/locale/tag/rfc4646_test.rb +142 -0
  919. data/vendor/bundle/gems/i18n-0.6.1/test/locale/tag/simple_test.rb +32 -0
  920. data/vendor/bundle/gems/i18n-0.6.1/test/run_all.rb +21 -0
  921. data/vendor/bundle/gems/i18n-0.6.1/test/test_data/locales/de.po +82 -0
  922. data/vendor/bundle/gems/i18n-0.6.1/test/test_data/locales/en.rb +3 -0
  923. data/vendor/bundle/gems/i18n-0.6.1/test/test_data/locales/en.yml +3 -0
  924. data/vendor/bundle/gems/i18n-0.6.1/test/test_data/locales/invalid/empty.yml +0 -0
  925. data/vendor/bundle/gems/i18n-0.6.1/test/test_data/locales/plurals.rb +113 -0
  926. data/vendor/bundle/gems/i18n-0.6.1/test/test_helper.rb +56 -0
  927. data/vendor/bundle/gems/journey-1.0.4/CHANGELOG.rdoc +20 -0
  928. data/vendor/bundle/gems/journey-1.0.4/Gemfile +14 -0
  929. data/vendor/bundle/gems/journey-1.0.4/Manifest.txt +49 -0
  930. data/vendor/bundle/gems/journey-1.0.4/README.rdoc +48 -0
  931. data/vendor/bundle/gems/journey-1.0.4/Rakefile +32 -0
  932. data/vendor/bundle/gems/journey-1.0.4/journey.gemspec +48 -0
  933. data/vendor/bundle/gems/journey-1.0.4/lib/journey.rb +5 -0
  934. data/vendor/bundle/gems/journey-1.0.4/lib/journey/backwards.rb +5 -0
  935. data/vendor/bundle/gems/journey-1.0.4/lib/journey/core-ext/hash.rb +11 -0
  936. data/vendor/bundle/gems/journey-1.0.4/lib/journey/formatter.rb +131 -0
  937. data/vendor/bundle/gems/journey-1.0.4/lib/journey/gtg/builder.rb +159 -0
  938. data/vendor/bundle/gems/journey-1.0.4/lib/journey/gtg/simulator.rb +43 -0
  939. data/vendor/bundle/gems/journey-1.0.4/lib/journey/gtg/transition_table.rb +153 -0
  940. data/vendor/bundle/gems/journey-1.0.4/lib/journey/nfa/builder.rb +74 -0
  941. data/vendor/bundle/gems/journey-1.0.4/lib/journey/nfa/dot.rb +34 -0
  942. data/vendor/bundle/gems/journey-1.0.4/lib/journey/nfa/simulator.rb +45 -0
  943. data/vendor/bundle/gems/journey-1.0.4/lib/journey/nfa/transition_table.rb +164 -0
  944. data/vendor/bundle/gems/journey-1.0.4/lib/journey/nodes/node.rb +122 -0
  945. data/vendor/bundle/gems/journey-1.0.4/lib/journey/parser.rb +204 -0
  946. data/vendor/bundle/gems/journey-1.0.4/lib/journey/parser.y +47 -0
  947. data/vendor/bundle/gems/journey-1.0.4/lib/journey/parser_extras.rb +21 -0
  948. data/vendor/bundle/gems/journey-1.0.4/lib/journey/path/pattern.rb +193 -0
  949. data/vendor/bundle/gems/journey-1.0.4/lib/journey/route.rb +95 -0
  950. data/vendor/bundle/gems/journey-1.0.4/lib/journey/router.rb +145 -0
  951. data/vendor/bundle/gems/journey-1.0.4/lib/journey/router/strexp.rb +22 -0
  952. data/vendor/bundle/gems/journey-1.0.4/lib/journey/router/utils.rb +57 -0
  953. data/vendor/bundle/gems/journey-1.0.4/lib/journey/routes.rb +75 -0
  954. data/vendor/bundle/gems/journey-1.0.4/lib/journey/scanner.rb +58 -0
  955. data/vendor/bundle/gems/journey-1.0.4/lib/journey/visitors.rb +190 -0
  956. data/vendor/bundle/gems/journey-1.0.4/lib/journey/visualizer/fsm.css +34 -0
  957. data/vendor/bundle/gems/journey-1.0.4/lib/journey/visualizer/fsm.js +134 -0
  958. data/vendor/bundle/gems/journey-1.0.4/lib/journey/visualizer/index.html.erb +52 -0
  959. data/vendor/bundle/gems/journey-1.0.4/test/gtg/test_builder.rb +77 -0
  960. data/vendor/bundle/gems/journey-1.0.4/test/gtg/test_transition_table.rb +113 -0
  961. data/vendor/bundle/gems/journey-1.0.4/test/helper.rb +4 -0
  962. data/vendor/bundle/gems/journey-1.0.4/test/nfa/test_simulator.rb +96 -0
  963. data/vendor/bundle/gems/journey-1.0.4/test/nfa/test_transition_table.rb +70 -0
  964. data/vendor/bundle/gems/journey-1.0.4/test/nodes/test_symbol.rb +15 -0
  965. data/vendor/bundle/gems/journey-1.0.4/test/path/test_pattern.rb +282 -0
  966. data/vendor/bundle/gems/journey-1.0.4/test/route/definition/test_parser.rb +108 -0
  967. data/vendor/bundle/gems/journey-1.0.4/test/route/definition/test_scanner.rb +54 -0
  968. data/vendor/bundle/gems/journey-1.0.4/test/router/test_strexp.rb +30 -0
  969. data/vendor/bundle/gems/journey-1.0.4/test/router/test_utils.rb +19 -0
  970. data/vendor/bundle/gems/journey-1.0.4/test/test_route.rb +109 -0
  971. data/vendor/bundle/gems/journey-1.0.4/test/test_router.rb +544 -0
  972. data/vendor/bundle/gems/journey-1.0.4/test/test_routes.rb +51 -0
  973. data/vendor/bundle/gems/json-1.7.6/CHANGES +258 -0
  974. data/vendor/bundle/gems/json-1.7.6/COPYING +58 -0
  975. data/vendor/bundle/gems/json-1.7.6/COPYING-json-jruby +57 -0
  976. data/vendor/bundle/gems/json-1.7.6/GPL +340 -0
  977. data/vendor/bundle/gems/json-1.7.6/Gemfile +9 -0
  978. data/vendor/bundle/gems/json-1.7.6/README-json-jruby.markdown +33 -0
  979. data/vendor/bundle/gems/json-1.7.6/README.rdoc +358 -0
  980. data/vendor/bundle/gems/json-1.7.6/Rakefile +412 -0
  981. data/vendor/bundle/gems/json-1.7.6/TODO +1 -0
  982. data/vendor/bundle/gems/json-1.7.6/VERSION +1 -0
  983. data/vendor/bundle/gems/json-1.7.6/data/example.json +1 -0
  984. data/vendor/bundle/gems/json-1.7.6/data/index.html +38 -0
  985. data/vendor/bundle/gems/json-1.7.6/data/prototype.js +4184 -0
  986. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/fbuffer/fbuffer.h +185 -0
  987. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/Makefile +214 -0
  988. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/depend +1 -0
  989. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/extconf.rb +14 -0
  990. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.bundle +0 -0
  991. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.c +1427 -0
  992. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.h +149 -0
  993. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.o +0 -0
  994. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/Makefile +214 -0
  995. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/depend +1 -0
  996. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/extconf.rb +13 -0
  997. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.bundle +0 -0
  998. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.c +2204 -0
  999. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.h +77 -0
  1000. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.o +0 -0
  1001. data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.rl +927 -0
  1002. data/vendor/bundle/gems/json-1.7.6/install.rb +23 -0
  1003. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/ByteListTranscoder.java +167 -0
  1004. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Generator.java +444 -0
  1005. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/GeneratorMethods.java +232 -0
  1006. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/GeneratorService.java +43 -0
  1007. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/GeneratorState.java +542 -0
  1008. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/OptionsReader.java +113 -0
  1009. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Parser.java +2644 -0
  1010. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Parser.rl +968 -0
  1011. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/ParserService.java +35 -0
  1012. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/RuntimeInfo.java +121 -0
  1013. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/StringDecoder.java +167 -0
  1014. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/StringEncoder.java +106 -0
  1015. data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Utils.java +89 -0
  1016. data/vendor/bundle/gems/json-1.7.6/json-java.gemspec +22 -0
  1017. data/vendor/bundle/gems/json-1.7.6/json.gemspec +37 -0
  1018. data/vendor/bundle/gems/json-1.7.6/json_pure.gemspec +39 -0
  1019. data/vendor/bundle/gems/json-1.7.6/lib/json.rb +62 -0
  1020. data/vendor/bundle/gems/json-1.7.6/lib/json/add/bigdecimal.rb +28 -0
  1021. data/vendor/bundle/gems/json-1.7.6/lib/json/add/complex.rb +22 -0
  1022. data/vendor/bundle/gems/json-1.7.6/lib/json/add/core.rb +11 -0
  1023. data/vendor/bundle/gems/json-1.7.6/lib/json/add/date.rb +34 -0
  1024. data/vendor/bundle/gems/json-1.7.6/lib/json/add/date_time.rb +50 -0
  1025. data/vendor/bundle/gems/json-1.7.6/lib/json/add/exception.rb +31 -0
  1026. data/vendor/bundle/gems/json-1.7.6/lib/json/add/ostruct.rb +31 -0
  1027. data/vendor/bundle/gems/json-1.7.6/lib/json/add/range.rb +29 -0
  1028. data/vendor/bundle/gems/json-1.7.6/lib/json/add/rational.rb +22 -0
  1029. data/vendor/bundle/gems/json-1.7.6/lib/json/add/regexp.rb +30 -0
  1030. data/vendor/bundle/gems/json-1.7.6/lib/json/add/struct.rb +30 -0
  1031. data/vendor/bundle/gems/json-1.7.6/lib/json/add/symbol.rb +25 -0
  1032. data/vendor/bundle/gems/json-1.7.6/lib/json/add/time.rb +38 -0
  1033. data/vendor/bundle/gems/json-1.7.6/lib/json/common.rb +480 -0
  1034. data/vendor/bundle/gems/json-1.7.6/lib/json/ext.rb +21 -0
  1035. data/vendor/bundle/gems/json-1.7.6/lib/json/ext/generator.bundle +0 -0
  1036. data/vendor/bundle/gems/json-1.7.6/lib/json/ext/parser.bundle +0 -0
  1037. data/vendor/bundle/gems/json-1.7.6/lib/json/generic_object.rb +54 -0
  1038. data/vendor/bundle/gems/json-1.7.6/lib/json/pure.rb +21 -0
  1039. data/vendor/bundle/gems/json-1.7.6/lib/json/pure/generator.rb +492 -0
  1040. data/vendor/bundle/gems/json-1.7.6/lib/json/pure/parser.rb +359 -0
  1041. data/vendor/bundle/gems/json-1.7.6/lib/json/version.rb +8 -0
  1042. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail1.json +1 -0
  1043. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail10.json +1 -0
  1044. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail11.json +1 -0
  1045. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail12.json +1 -0
  1046. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail13.json +1 -0
  1047. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail14.json +1 -0
  1048. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail18.json +1 -0
  1049. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail19.json +1 -0
  1050. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail2.json +1 -0
  1051. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail20.json +1 -0
  1052. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail21.json +1 -0
  1053. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail22.json +1 -0
  1054. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail23.json +1 -0
  1055. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail24.json +1 -0
  1056. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail25.json +1 -0
  1057. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail27.json +2 -0
  1058. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail28.json +2 -0
  1059. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail3.json +1 -0
  1060. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail4.json +1 -0
  1061. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail5.json +1 -0
  1062. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail6.json +1 -0
  1063. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail7.json +1 -0
  1064. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail8.json +1 -0
  1065. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail9.json +1 -0
  1066. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass1.json +56 -0
  1067. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass15.json +1 -0
  1068. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass16.json +1 -0
  1069. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass17.json +1 -0
  1070. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass2.json +1 -0
  1071. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass26.json +1 -0
  1072. data/vendor/bundle/gems/json-1.7.6/tests/fixtures/pass3.json +6 -0
  1073. data/vendor/bundle/gems/json-1.7.6/tests/setup_variant.rb +11 -0
  1074. data/vendor/bundle/gems/json-1.7.6/tests/test_json.rb +539 -0
  1075. data/vendor/bundle/gems/json-1.7.6/tests/test_json_addition.rb +188 -0
  1076. data/vendor/bundle/gems/json-1.7.6/tests/test_json_encoding.rb +65 -0
  1077. data/vendor/bundle/gems/json-1.7.6/tests/test_json_fixtures.rb +35 -0
  1078. data/vendor/bundle/gems/json-1.7.6/tests/test_json_generate.rb +299 -0
  1079. data/vendor/bundle/gems/json-1.7.6/tests/test_json_generic_object.rb +46 -0
  1080. data/vendor/bundle/gems/json-1.7.6/tests/test_json_string_matching.rb +40 -0
  1081. data/vendor/bundle/gems/json-1.7.6/tests/test_json_unicode.rb +72 -0
  1082. data/vendor/bundle/gems/json-1.7.6/tools/fuzz.rb +139 -0
  1083. data/vendor/bundle/gems/json-1.7.6/tools/server.rb +62 -0
  1084. data/vendor/bundle/gems/multi_json-1.5.0/Gemfile +7 -0
  1085. data/vendor/bundle/gems/multi_json-1.5.0/LICENSE.md +20 -0
  1086. data/vendor/bundle/gems/multi_json-1.5.0/README.md +88 -0
  1087. data/vendor/bundle/gems/multi_json-1.5.0/Rakefile +20 -0
  1088. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json.rb +130 -0
  1089. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/json_common.rb +25 -0
  1090. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/json_gem.rb +12 -0
  1091. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/json_pure.rb +12 -0
  1092. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/nsjsonserialization.rb +34 -0
  1093. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/oj.rb +26 -0
  1094. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/ok_json.rb +48 -0
  1095. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/adapters/yajl.rb +18 -0
  1096. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/vendor/okjson.rb +602 -0
  1097. data/vendor/bundle/gems/multi_json-1.5.0/lib/multi_json/version.rb +3 -0
  1098. data/vendor/bundle/gems/multi_json-1.5.0/multi_json.gemspec +23 -0
  1099. data/vendor/bundle/gems/multi_json-1.5.0/spec/adapter_shared_example.rb +127 -0
  1100. data/vendor/bundle/gems/multi_json-1.5.0/spec/helper.rb +39 -0
  1101. data/vendor/bundle/gems/multi_json-1.5.0/spec/multi_json_spec.rb +100 -0
  1102. data/vendor/bundle/gems/rack-1.4.5/COPYING +18 -0
  1103. data/vendor/bundle/gems/rack-1.4.5/KNOWN-ISSUES +30 -0
  1104. data/vendor/bundle/gems/rack-1.4.5/README.rdoc +596 -0
  1105. data/vendor/bundle/gems/rack-1.4.5/Rakefile +122 -0
  1106. data/vendor/bundle/gems/rack-1.4.5/SPEC +173 -0
  1107. data/vendor/bundle/gems/rack-1.4.5/bin/rackup +4 -0
  1108. data/vendor/bundle/gems/rack-1.4.5/contrib/rack.png +0 -0
  1109. data/vendor/bundle/gems/rack-1.4.5/contrib/rack.svg +150 -0
  1110. data/vendor/bundle/gems/rack-1.4.5/contrib/rack_logo.svg +111 -0
  1111. data/vendor/bundle/gems/rack-1.4.5/contrib/rdoc.css +412 -0
  1112. data/vendor/bundle/gems/rack-1.4.5/example/lobster.ru +4 -0
  1113. data/vendor/bundle/gems/rack-1.4.5/example/protectedlobster.rb +14 -0
  1114. data/vendor/bundle/gems/rack-1.4.5/example/protectedlobster.ru +8 -0
  1115. data/vendor/bundle/gems/rack-1.4.5/lib/rack.rb +95 -0
  1116. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/abstract/handler.rb +37 -0
  1117. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/abstract/request.rb +47 -0
  1118. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/basic.rb +58 -0
  1119. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/digest/md5.rb +129 -0
  1120. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/digest/nonce.rb +51 -0
  1121. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/digest/params.rb +53 -0
  1122. data/vendor/bundle/gems/rack-1.4.5/lib/rack/auth/digest/request.rb +41 -0
  1123. data/vendor/bundle/gems/rack-1.4.5/lib/rack/backports/uri/common_18.rb +56 -0
  1124. data/vendor/bundle/gems/rack-1.4.5/lib/rack/backports/uri/common_192.rb +52 -0
  1125. data/vendor/bundle/gems/rack-1.4.5/lib/rack/backports/uri/common_193.rb +29 -0
  1126. data/vendor/bundle/gems/rack-1.4.5/lib/rack/body_proxy.rb +39 -0
  1127. data/vendor/bundle/gems/rack-1.4.5/lib/rack/builder.rb +145 -0
  1128. data/vendor/bundle/gems/rack-1.4.5/lib/rack/cascade.rb +52 -0
  1129. data/vendor/bundle/gems/rack-1.4.5/lib/rack/chunked.rb +58 -0
  1130. data/vendor/bundle/gems/rack-1.4.5/lib/rack/commonlogger.rb +64 -0
  1131. data/vendor/bundle/gems/rack-1.4.5/lib/rack/conditionalget.rb +67 -0
  1132. data/vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb +15 -0
  1133. data/vendor/bundle/gems/rack-1.4.5/lib/rack/content_length.rb +33 -0
  1134. data/vendor/bundle/gems/rack-1.4.5/lib/rack/content_type.rb +29 -0
  1135. data/vendor/bundle/gems/rack-1.4.5/lib/rack/deflater.rb +103 -0
  1136. data/vendor/bundle/gems/rack-1.4.5/lib/rack/directory.rb +161 -0
  1137. data/vendor/bundle/gems/rack-1.4.5/lib/rack/etag.rb +64 -0
  1138. data/vendor/bundle/gems/rack-1.4.5/lib/rack/file.rb +146 -0
  1139. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler.rb +94 -0
  1140. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/cgi.rb +61 -0
  1141. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/evented_mongrel.rb +8 -0
  1142. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/fastcgi.rb +98 -0
  1143. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/lsws.rb +61 -0
  1144. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/mongrel.rb +100 -0
  1145. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/scgi.rb +67 -0
  1146. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/swiftiplied_mongrel.rb +8 -0
  1147. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/thin.rb +24 -0
  1148. data/vendor/bundle/gems/rack-1.4.5/lib/rack/handler/webrick.rb +80 -0
  1149. data/vendor/bundle/gems/rack-1.4.5/lib/rack/head.rb +20 -0
  1150. data/vendor/bundle/gems/rack-1.4.5/lib/rack/lint.rb +569 -0
  1151. data/vendor/bundle/gems/rack-1.4.5/lib/rack/lobster.rb +65 -0
  1152. data/vendor/bundle/gems/rack-1.4.5/lib/rack/lock.rb +24 -0
  1153. data/vendor/bundle/gems/rack-1.4.5/lib/rack/logger.rb +18 -0
  1154. data/vendor/bundle/gems/rack-1.4.5/lib/rack/methodoverride.rb +33 -0
  1155. data/vendor/bundle/gems/rack-1.4.5/lib/rack/mime.rb +648 -0
  1156. data/vendor/bundle/gems/rack-1.4.5/lib/rack/mock.rb +190 -0
  1157. data/vendor/bundle/gems/rack-1.4.5/lib/rack/multipart.rb +34 -0
  1158. data/vendor/bundle/gems/rack-1.4.5/lib/rack/multipart/generator.rb +93 -0
  1159. data/vendor/bundle/gems/rack-1.4.5/lib/rack/multipart/parser.rb +176 -0
  1160. data/vendor/bundle/gems/rack-1.4.5/lib/rack/multipart/uploaded_file.rb +34 -0
  1161. data/vendor/bundle/gems/rack-1.4.5/lib/rack/nulllogger.rb +18 -0
  1162. data/vendor/bundle/gems/rack-1.4.5/lib/rack/recursive.rb +61 -0
  1163. data/vendor/bundle/gems/rack-1.4.5/lib/rack/reloader.rb +109 -0
  1164. data/vendor/bundle/gems/rack-1.4.5/lib/rack/request.rb +339 -0
  1165. data/vendor/bundle/gems/rack-1.4.5/lib/rack/response.rb +156 -0
  1166. data/vendor/bundle/gems/rack-1.4.5/lib/rack/rewindable_input.rb +104 -0
  1167. data/vendor/bundle/gems/rack-1.4.5/lib/rack/runtime.rb +27 -0
  1168. data/vendor/bundle/gems/rack-1.4.5/lib/rack/sendfile.rb +141 -0
  1169. data/vendor/bundle/gems/rack-1.4.5/lib/rack/server.rb +349 -0
  1170. data/vendor/bundle/gems/rack-1.4.5/lib/rack/session/abstract/id.rb +377 -0
  1171. data/vendor/bundle/gems/rack-1.4.5/lib/rack/session/cookie.rb +170 -0
  1172. data/vendor/bundle/gems/rack-1.4.5/lib/rack/session/memcache.rb +93 -0
  1173. data/vendor/bundle/gems/rack-1.4.5/lib/rack/session/pool.rb +79 -0
  1174. data/vendor/bundle/gems/rack-1.4.5/lib/rack/showexceptions.rb +378 -0
  1175. data/vendor/bundle/gems/rack-1.4.5/lib/rack/showstatus.rb +113 -0
  1176. data/vendor/bundle/gems/rack-1.4.5/lib/rack/static.rb +153 -0
  1177. data/vendor/bundle/gems/rack-1.4.5/lib/rack/urlmap.rb +75 -0
  1178. data/vendor/bundle/gems/rack-1.4.5/lib/rack/utils.rb +565 -0
  1179. data/vendor/bundle/gems/rack-1.4.5/rack.gemspec +37 -0
  1180. data/vendor/bundle/gems/rack-1.4.5/test/builder/anything.rb +5 -0
  1181. data/vendor/bundle/gems/rack-1.4.5/test/builder/comment.ru +4 -0
  1182. data/vendor/bundle/gems/rack-1.4.5/test/builder/end.ru +5 -0
  1183. data/vendor/bundle/gems/rack-1.4.5/test/builder/line.ru +1 -0
  1184. data/vendor/bundle/gems/rack-1.4.5/test/builder/options.ru +2 -0
  1185. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/folder/test.js +1 -0
  1186. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/fonts/font.eot +1 -0
  1187. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/images/image.png +1 -0
  1188. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/index.html +1 -0
  1189. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/javascripts/app.js +1 -0
  1190. data/vendor/bundle/gems/rack-1.4.5/test/cgi/assets/stylesheets/app.css +1 -0
  1191. data/vendor/bundle/gems/rack-1.4.5/test/cgi/lighttpd.conf +26 -0
  1192. data/vendor/bundle/gems/rack-1.4.5/test/cgi/rackup_stub.rb +6 -0
  1193. data/vendor/bundle/gems/rack-1.4.5/test/cgi/sample_rackup.ru +5 -0
  1194. data/vendor/bundle/gems/rack-1.4.5/test/cgi/test +9 -0
  1195. data/vendor/bundle/gems/rack-1.4.5/test/cgi/test+directory/test+file +1 -0
  1196. data/vendor/bundle/gems/rack-1.4.5/test/cgi/test.fcgi +8 -0
  1197. data/vendor/bundle/gems/rack-1.4.5/test/cgi/test.ru +5 -0
  1198. data/vendor/bundle/gems/rack-1.4.5/test/gemloader.rb +10 -0
  1199. data/vendor/bundle/gems/rack-1.4.5/test/multipart/bad_robots +259 -0
  1200. data/vendor/bundle/gems/rack-1.4.5/test/multipart/binary +0 -0
  1201. data/vendor/bundle/gems/rack-1.4.5/test/multipart/content_type_and_no_filename +6 -0
  1202. data/vendor/bundle/gems/rack-1.4.5/test/multipart/empty +10 -0
  1203. data/vendor/bundle/gems/rack-1.4.5/test/multipart/fail_16384_nofile +814 -0
  1204. data/vendor/bundle/gems/rack-1.4.5/test/multipart/file1.txt +1 -0
  1205. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_and_modification_param +7 -0
  1206. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_escaped_quotes +6 -0
  1207. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_escaped_quotes_and_modification_param +7 -0
  1208. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_percent_escaped_quotes +6 -0
  1209. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_unescaped_percentages +6 -0
  1210. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_unescaped_percentages2 +6 -0
  1211. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_unescaped_percentages3 +6 -0
  1212. data/vendor/bundle/gems/rack-1.4.5/test/multipart/filename_with_unescaped_quotes +6 -0
  1213. data/vendor/bundle/gems/rack-1.4.5/test/multipart/ie +6 -0
  1214. data/vendor/bundle/gems/rack-1.4.5/test/multipart/mixed_files +21 -0
  1215. data/vendor/bundle/gems/rack-1.4.5/test/multipart/nested +10 -0
  1216. data/vendor/bundle/gems/rack-1.4.5/test/multipart/none +9 -0
  1217. data/vendor/bundle/gems/rack-1.4.5/test/multipart/semicolon +6 -0
  1218. data/vendor/bundle/gems/rack-1.4.5/test/multipart/text +15 -0
  1219. data/vendor/bundle/gems/rack-1.4.5/test/multipart/webkit +32 -0
  1220. data/vendor/bundle/gems/rack-1.4.5/test/rackup/config.ru +31 -0
  1221. data/vendor/bundle/gems/rack-1.4.5/test/registering_handler/rack/handler/registering_myself.rb +8 -0
  1222. data/vendor/bundle/gems/rack-1.4.5/test/spec_auth.rb +57 -0
  1223. data/vendor/bundle/gems/rack-1.4.5/test/spec_auth_basic.rb +81 -0
  1224. data/vendor/bundle/gems/rack-1.4.5/test/spec_auth_digest.rb +259 -0
  1225. data/vendor/bundle/gems/rack-1.4.5/test/spec_body_proxy.rb +69 -0
  1226. data/vendor/bundle/gems/rack-1.4.5/test/spec_builder.rb +207 -0
  1227. data/vendor/bundle/gems/rack-1.4.5/test/spec_cascade.rb +61 -0
  1228. data/vendor/bundle/gems/rack-1.4.5/test/spec_cgi.rb +102 -0
  1229. data/vendor/bundle/gems/rack-1.4.5/test/spec_chunked.rb +87 -0
  1230. data/vendor/bundle/gems/rack-1.4.5/test/spec_commonlogger.rb +57 -0
  1231. data/vendor/bundle/gems/rack-1.4.5/test/spec_conditionalget.rb +102 -0
  1232. data/vendor/bundle/gems/rack-1.4.5/test/spec_config.rb +22 -0
  1233. data/vendor/bundle/gems/rack-1.4.5/test/spec_content_length.rb +86 -0
  1234. data/vendor/bundle/gems/rack-1.4.5/test/spec_content_type.rb +45 -0
  1235. data/vendor/bundle/gems/rack-1.4.5/test/spec_deflater.rb +187 -0
  1236. data/vendor/bundle/gems/rack-1.4.5/test/spec_directory.rb +88 -0
  1237. data/vendor/bundle/gems/rack-1.4.5/test/spec_etag.rb +98 -0
  1238. data/vendor/bundle/gems/rack-1.4.5/test/spec_fastcgi.rb +107 -0
  1239. data/vendor/bundle/gems/rack-1.4.5/test/spec_file.rb +200 -0
  1240. data/vendor/bundle/gems/rack-1.4.5/test/spec_handler.rb +59 -0
  1241. data/vendor/bundle/gems/rack-1.4.5/test/spec_head.rb +48 -0
  1242. data/vendor/bundle/gems/rack-1.4.5/test/spec_lint.rb +515 -0
  1243. data/vendor/bundle/gems/rack-1.4.5/test/spec_lobster.rb +58 -0
  1244. data/vendor/bundle/gems/rack-1.4.5/test/spec_lock.rb +167 -0
  1245. data/vendor/bundle/gems/rack-1.4.5/test/spec_logger.rb +23 -0
  1246. data/vendor/bundle/gems/rack-1.4.5/test/spec_methodoverride.rb +72 -0
  1247. data/vendor/bundle/gems/rack-1.4.5/test/spec_mock.rb +269 -0
  1248. data/vendor/bundle/gems/rack-1.4.5/test/spec_mongrel.rb +182 -0
  1249. data/vendor/bundle/gems/rack-1.4.5/test/spec_multipart.rb +445 -0
  1250. data/vendor/bundle/gems/rack-1.4.5/test/spec_nulllogger.rb +23 -0
  1251. data/vendor/bundle/gems/rack-1.4.5/test/spec_recursive.rb +72 -0
  1252. data/vendor/bundle/gems/rack-1.4.5/test/spec_request.rb +938 -0
  1253. data/vendor/bundle/gems/rack-1.4.5/test/spec_response.rb +313 -0
  1254. data/vendor/bundle/gems/rack-1.4.5/test/spec_rewindable_input.rb +118 -0
  1255. data/vendor/bundle/gems/rack-1.4.5/test/spec_runtime.rb +49 -0
  1256. data/vendor/bundle/gems/rack-1.4.5/test/spec_sendfile.rb +90 -0
  1257. data/vendor/bundle/gems/rack-1.4.5/test/spec_server.rb +121 -0
  1258. data/vendor/bundle/gems/rack-1.4.5/test/spec_session_abstract_id.rb +43 -0
  1259. data/vendor/bundle/gems/rack-1.4.5/test/spec_session_cookie.rb +361 -0
  1260. data/vendor/bundle/gems/rack-1.4.5/test/spec_session_memcache.rb +321 -0
  1261. data/vendor/bundle/gems/rack-1.4.5/test/spec_session_pool.rb +209 -0
  1262. data/vendor/bundle/gems/rack-1.4.5/test/spec_showexceptions.rb +92 -0
  1263. data/vendor/bundle/gems/rack-1.4.5/test/spec_showstatus.rb +84 -0
  1264. data/vendor/bundle/gems/rack-1.4.5/test/spec_static.rb +145 -0
  1265. data/vendor/bundle/gems/rack-1.4.5/test/spec_thin.rb +86 -0
  1266. data/vendor/bundle/gems/rack-1.4.5/test/spec_urlmap.rb +213 -0
  1267. data/vendor/bundle/gems/rack-1.4.5/test/spec_utils.rb +542 -0
  1268. data/vendor/bundle/gems/rack-1.4.5/test/spec_webrick.rb +143 -0
  1269. data/vendor/bundle/gems/rack-1.4.5/test/static/another/index.html +1 -0
  1270. data/vendor/bundle/gems/rack-1.4.5/test/static/index.html +1 -0
  1271. data/vendor/bundle/gems/rack-1.4.5/test/testrequest.rb +78 -0
  1272. data/vendor/bundle/gems/rack-1.4.5/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
  1273. data/vendor/bundle/gems/rack-1.4.5/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
  1274. data/vendor/bundle/gems/rack-cache-1.2/CHANGES +241 -0
  1275. data/vendor/bundle/gems/rack-cache-1.2/COPYING +18 -0
  1276. data/vendor/bundle/gems/rack-cache-1.2/Gemfile +2 -0
  1277. data/vendor/bundle/gems/rack-cache-1.2/README +126 -0
  1278. data/vendor/bundle/gems/rack-cache-1.2/Rakefile +139 -0
  1279. data/vendor/bundle/gems/rack-cache-1.2/TODO +27 -0
  1280. data/vendor/bundle/gems/rack-cache-1.2/doc/configuration.markdown +127 -0
  1281. data/vendor/bundle/gems/rack-cache-1.2/doc/faq.markdown +148 -0
  1282. data/vendor/bundle/gems/rack-cache-1.2/doc/index.markdown +121 -0
  1283. data/vendor/bundle/gems/rack-cache-1.2/doc/layout.html.erb +34 -0
  1284. data/vendor/bundle/gems/rack-cache-1.2/doc/license.markdown +24 -0
  1285. data/vendor/bundle/gems/rack-cache-1.2/doc/rack-cache.css +362 -0
  1286. data/vendor/bundle/gems/rack-cache-1.2/doc/server.ru +34 -0
  1287. data/vendor/bundle/gems/rack-cache-1.2/doc/storage.markdown +164 -0
  1288. data/vendor/bundle/gems/rack-cache-1.2/example/sinatra/app.rb +21 -0
  1289. data/vendor/bundle/gems/rack-cache-1.2/example/sinatra/views/index.erb +44 -0
  1290. data/vendor/bundle/gems/rack-cache-1.2/lib/rack-cache.rb +1 -0
  1291. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache.rb +45 -0
  1292. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/appengine.rb +52 -0
  1293. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/cachecontrol.rb +194 -0
  1294. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/context.rb +286 -0
  1295. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/entitystore.rb +341 -0
  1296. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/key.rb +52 -0
  1297. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/metastore.rb +418 -0
  1298. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/options.rb +166 -0
  1299. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/request.rb +33 -0
  1300. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/response.rb +255 -0
  1301. data/vendor/bundle/gems/rack-cache-1.2/lib/rack/cache/storage.rb +62 -0
  1302. data/vendor/bundle/gems/rack-cache-1.2/rack-cache.gemspec +75 -0
  1303. data/vendor/bundle/gems/rack-cache-1.2/test/cache_test.rb +38 -0
  1304. data/vendor/bundle/gems/rack-cache-1.2/test/cachecontrol_test.rb +145 -0
  1305. data/vendor/bundle/gems/rack-cache-1.2/test/context_test.rb +916 -0
  1306. data/vendor/bundle/gems/rack-cache-1.2/test/entitystore_test.rb +268 -0
  1307. data/vendor/bundle/gems/rack-cache-1.2/test/key_test.rb +50 -0
  1308. data/vendor/bundle/gems/rack-cache-1.2/test/metastore_test.rb +338 -0
  1309. data/vendor/bundle/gems/rack-cache-1.2/test/options_test.rb +77 -0
  1310. data/vendor/bundle/gems/rack-cache-1.2/test/pony.jpg +0 -0
  1311. data/vendor/bundle/gems/rack-cache-1.2/test/request_test.rb +19 -0
  1312. data/vendor/bundle/gems/rack-cache-1.2/test/response_test.rb +184 -0
  1313. data/vendor/bundle/gems/rack-cache-1.2/test/spec_setup.rb +232 -0
  1314. data/vendor/bundle/gems/rack-cache-1.2/test/storage_test.rb +94 -0
  1315. data/vendor/bundle/gems/rack-ssl-1.3.3/LICENSE +22 -0
  1316. data/vendor/bundle/gems/rack-ssl-1.3.3/README.md +13 -0
  1317. data/vendor/bundle/gems/rack-ssl-1.3.3/lib/rack/ssl.rb +89 -0
  1318. data/vendor/bundle/gems/rack-test-0.6.2/Gemfile +6 -0
  1319. data/vendor/bundle/gems/rack-test-0.6.2/Gemfile.lock +31 -0
  1320. data/vendor/bundle/gems/rack-test-0.6.2/History.txt +166 -0
  1321. data/vendor/bundle/gems/rack-test-0.6.2/MIT-LICENSE.txt +19 -0
  1322. data/vendor/bundle/gems/rack-test-0.6.2/README.rdoc +85 -0
  1323. data/vendor/bundle/gems/rack-test-0.6.2/Rakefile +33 -0
  1324. data/vendor/bundle/gems/rack-test-0.6.2/Thorfile +114 -0
  1325. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/mock_session.rb +66 -0
  1326. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test.rb +304 -0
  1327. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test/cookie_jar.rb +182 -0
  1328. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test/methods.rb +82 -0
  1329. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test/mock_digest_request.rb +29 -0
  1330. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test/uploaded_file.rb +50 -0
  1331. data/vendor/bundle/gems/rack-test-0.6.2/lib/rack/test/utils.rb +136 -0
  1332. data/vendor/bundle/gems/rack-test-0.6.2/rack-test.gemspec +77 -0
  1333. data/vendor/bundle/gems/rack-test-0.6.2/spec/fixtures/bar.txt +1 -0
  1334. data/vendor/bundle/gems/rack-test-0.6.2/spec/fixtures/config.ru +3 -0
  1335. data/vendor/bundle/gems/rack-test-0.6.2/spec/fixtures/fake_app.rb +143 -0
  1336. data/vendor/bundle/gems/rack-test-0.6.2/spec/fixtures/foo.txt +1 -0
  1337. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test/cookie_spec.rb +219 -0
  1338. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test/digest_auth_spec.rb +46 -0
  1339. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test/multipart_spec.rb +145 -0
  1340. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test/uploaded_file_spec.rb +22 -0
  1341. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test/utils_spec.rb +122 -0
  1342. data/vendor/bundle/gems/rack-test-0.6.2/spec/rack/test_spec.rb +510 -0
  1343. data/vendor/bundle/gems/rack-test-0.6.2/spec/spec_helper.rb +66 -0
  1344. data/vendor/bundle/gems/rack-test-0.6.2/spec/support/matchers/body.rb +9 -0
  1345. data/vendor/bundle/gems/rack-test-0.6.2/spec/support/matchers/challenge.rb +11 -0
  1346. data/vendor/bundle/gems/railties-3.2.11/CHANGELOG.md +87 -0
  1347. data/vendor/bundle/gems/railties-3.2.11/README.rdoc +35 -0
  1348. data/vendor/bundle/gems/railties-3.2.11/bin/rails +7 -0
  1349. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/belongs_to.png +0 -0
  1350. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/book_icon.gif +0 -0
  1351. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/bullet.gif +0 -0
  1352. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/challenge.png +0 -0
  1353. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/chapters_icon.gif +0 -0
  1354. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/check_bullet.gif +0 -0
  1355. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/credits_pic_blank.gif +0 -0
  1356. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/csrf.png +0 -0
  1357. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/customized_error_messages.png +0 -0
  1358. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/edge_badge.png +0 -0
  1359. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/error_messages.png +0 -0
  1360. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/feature_tile.gif +0 -0
  1361. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/footer_tile.gif +0 -0
  1362. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/fxn.png +0 -0
  1363. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/grey_bullet.gif +0 -0
  1364. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/habtm.png +0 -0
  1365. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/has_many.png +0 -0
  1366. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/has_many_through.png +0 -0
  1367. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/has_one.png +0 -0
  1368. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/has_one_through.png +0 -0
  1369. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/header_backdrop.png +0 -0
  1370. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/header_tile.gif +0 -0
  1371. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_html_safe.png +0 -0
  1372. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
  1373. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_translated_en.png +0 -0
  1374. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
  1375. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_translation_missing.png +0 -0
  1376. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/i18n/demo_untranslated.png +0 -0
  1377. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/README +5 -0
  1378. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/1.png +0 -0
  1379. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/10.png +0 -0
  1380. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/11.png +0 -0
  1381. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/12.png +0 -0
  1382. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/13.png +0 -0
  1383. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/14.png +0 -0
  1384. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/15.png +0 -0
  1385. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/2.png +0 -0
  1386. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/3.png +0 -0
  1387. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/4.png +0 -0
  1388. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/5.png +0 -0
  1389. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/6.png +0 -0
  1390. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/7.png +0 -0
  1391. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/8.png +0 -0
  1392. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/callouts/9.png +0 -0
  1393. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/caution.png +0 -0
  1394. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/example.png +0 -0
  1395. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/home.png +0 -0
  1396. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/important.png +0 -0
  1397. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/next.png +0 -0
  1398. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/note.png +0 -0
  1399. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/prev.png +0 -0
  1400. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/tip.png +0 -0
  1401. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/up.png +0 -0
  1402. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/icons/warning.png +0 -0
  1403. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/jaimeiniesta.jpg +0 -0
  1404. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/nav_arrow.gif +0 -0
  1405. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/polymorphic.png +0 -0
  1406. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/posts_index.png +0 -0
  1407. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/radar.png +0 -0
  1408. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
  1409. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/rails_guides_logo.gif +0 -0
  1410. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/rails_logo_remix.gif +0 -0
  1411. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/rails_welcome.png +0 -0
  1412. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/session_fixation.png +0 -0
  1413. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_grey.gif +0 -0
  1414. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_info.gif +0 -0
  1415. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_note.gif +0 -0
  1416. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_red.gif +0 -0
  1417. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_yellow.gif +0 -0
  1418. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/tab_yellow.png +0 -0
  1419. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/validation_error_messages.png +0 -0
  1420. data/vendor/bundle/gems/railties-3.2.11/guides/assets/images/vijaydev.jpg +0 -0
  1421. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/guides.js +7 -0
  1422. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +59 -0
  1423. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +75 -0
  1424. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +59 -0
  1425. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +65 -0
  1426. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +100 -0
  1427. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +97 -0
  1428. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +91 -0
  1429. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +55 -0
  1430. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +41 -0
  1431. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +52 -0
  1432. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +67 -0
  1433. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +52 -0
  1434. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +57 -0
  1435. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +58 -0
  1436. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +72 -0
  1437. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +88 -0
  1438. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +33 -0
  1439. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +74 -0
  1440. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +64 -0
  1441. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +55 -0
  1442. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +94 -0
  1443. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +51 -0
  1444. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +66 -0
  1445. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +56 -0
  1446. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +69 -0
  1447. data/vendor/bundle/gems/railties-3.2.11/guides/assets/javascripts/syntaxhighlighter/shCore.js +17 -0
  1448. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/fixes.css +16 -0
  1449. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/kindle.css +11 -0
  1450. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/main.css +453 -0
  1451. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/print.css +52 -0
  1452. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/reset.css +43 -0
  1453. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/style.css +13 -0
  1454. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCore.css +226 -0
  1455. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +328 -0
  1456. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +331 -0
  1457. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +339 -0
  1458. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +324 -0
  1459. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +328 -0
  1460. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +324 -0
  1461. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +324 -0
  1462. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +324 -0
  1463. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +117 -0
  1464. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +120 -0
  1465. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +128 -0
  1466. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +113 -0
  1467. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +117 -0
  1468. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +113 -0
  1469. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +113 -0
  1470. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +113 -0
  1471. data/vendor/bundle/gems/railties-3.2.11/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +116 -0
  1472. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/Gemfile +38 -0
  1473. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/README.rdoc +261 -0
  1474. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/Rakefile +7 -0
  1475. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/images/rails.png +0 -0
  1476. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/javascripts/application.js +15 -0
  1477. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +3 -0
  1478. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/javascripts/home.js.coffee +3 -0
  1479. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +3 -0
  1480. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/stylesheets/application.css +13 -0
  1481. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +3 -0
  1482. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/stylesheets/home.css.scss +3 -0
  1483. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +3 -0
  1484. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss +56 -0
  1485. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/controllers/application_controller.rb +3 -0
  1486. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/controllers/comments_controller.rb +16 -0
  1487. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/controllers/home_controller.rb +5 -0
  1488. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/controllers/posts_controller.rb +84 -0
  1489. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/helpers/application_helper.rb +2 -0
  1490. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/helpers/comments_helper.rb +2 -0
  1491. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/helpers/home_helper.rb +2 -0
  1492. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/helpers/posts_helper.rb +5 -0
  1493. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/models/comment.rb +3 -0
  1494. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/models/post.rb +11 -0
  1495. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/models/tag.rb +3 -0
  1496. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/comments/_comment.html.erb +15 -0
  1497. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/comments/_form.html.erb +13 -0
  1498. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/home/index.html.erb +2 -0
  1499. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/layouts/application.html.erb +14 -0
  1500. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/posts/_form.html.erb +32 -0
  1501. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/posts/edit.html.erb +6 -0
  1502. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/posts/index.html.erb +27 -0
  1503. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/posts/new.html.erb +5 -0
  1504. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/posts/show.html.erb +31 -0
  1505. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/app/views/tags/_form.html.erb +12 -0
  1506. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config.ru +4 -0
  1507. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/application.rb +59 -0
  1508. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/boot.rb +6 -0
  1509. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/database.yml +25 -0
  1510. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/environment.rb +5 -0
  1511. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/environments/development.rb +37 -0
  1512. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/environments/production.rb +67 -0
  1513. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/environments/test.rb +37 -0
  1514. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/backtrace_silencers.rb +7 -0
  1515. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/inflections.rb +15 -0
  1516. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/mime_types.rb +5 -0
  1517. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/secret_token.rb +7 -0
  1518. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/session_store.rb +8 -0
  1519. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/initializers/wrap_parameters.rb +14 -0
  1520. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/locales/en.yml +5 -0
  1521. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/config/routes.rb +64 -0
  1522. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/db/migrate/20110901012504_create_posts.rb +11 -0
  1523. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb +12 -0
  1524. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb +11 -0
  1525. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/db/schema.rb +43 -0
  1526. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/db/seeds.rb +7 -0
  1527. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/doc/README_FOR_APP +2 -0
  1528. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/public/404.html +26 -0
  1529. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/public/422.html +26 -0
  1530. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/public/500.html +25 -0
  1531. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/public/favicon.ico +0 -0
  1532. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/public/robots.txt +5 -0
  1533. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/script/rails +6 -0
  1534. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/fixtures/comments.yml +11 -0
  1535. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/fixtures/posts.yml +11 -0
  1536. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/fixtures/tags.yml +9 -0
  1537. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/functional/comments_controller_test.rb +7 -0
  1538. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/functional/home_controller_test.rb +9 -0
  1539. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/functional/posts_controller_test.rb +49 -0
  1540. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/performance/browsing_test.rb +12 -0
  1541. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/test_helper.rb +13 -0
  1542. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/comment_test.rb +7 -0
  1543. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/helpers/comments_helper_test.rb +4 -0
  1544. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/helpers/home_helper_test.rb +4 -0
  1545. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/helpers/posts_helper_test.rb +4 -0
  1546. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/post_test.rb +7 -0
  1547. data/vendor/bundle/gems/railties-3.2.11/guides/code/getting_started/test/unit/tag_test.rb +7 -0
  1548. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides.rb +50 -0
  1549. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides/generator.rb +310 -0
  1550. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides/helpers.rb +45 -0
  1551. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides/indexer.rb +69 -0
  1552. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides/levenshtein.rb +31 -0
  1553. data/vendor/bundle/gems/railties-3.2.11/guides/rails_guides/textile_extensions.rb +63 -0
  1554. data/vendor/bundle/gems/railties-3.2.11/guides/source/2_2_release_notes.textile +422 -0
  1555. data/vendor/bundle/gems/railties-3.2.11/guides/source/2_3_release_notes.textile +610 -0
  1556. data/vendor/bundle/gems/railties-3.2.11/guides/source/3_0_release_notes.textile +595 -0
  1557. data/vendor/bundle/gems/railties-3.2.11/guides/source/3_1_release_notes.textile +553 -0
  1558. data/vendor/bundle/gems/railties-3.2.11/guides/source/3_2_release_notes.textile +540 -0
  1559. data/vendor/bundle/gems/railties-3.2.11/guides/source/_license.html.erb +2 -0
  1560. data/vendor/bundle/gems/railties-3.2.11/guides/source/_welcome.html.erb +19 -0
  1561. data/vendor/bundle/gems/railties-3.2.11/guides/source/action_controller_overview.textile +820 -0
  1562. data/vendor/bundle/gems/railties-3.2.11/guides/source/action_mailer_basics.textile +516 -0
  1563. data/vendor/bundle/gems/railties-3.2.11/guides/source/action_view_overview.textile +1497 -0
  1564. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_model_basics.textile +205 -0
  1565. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_record_basics.textile +218 -0
  1566. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_record_querying.textile +1433 -0
  1567. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_record_validations_callbacks.textile +1283 -0
  1568. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_resource_basics.textile +120 -0
  1569. data/vendor/bundle/gems/railties-3.2.11/guides/source/active_support_core_extensions.textile +3713 -0
  1570. data/vendor/bundle/gems/railties-3.2.11/guides/source/ajax_on_rails.textile +267 -0
  1571. data/vendor/bundle/gems/railties-3.2.11/guides/source/api_documentation_guidelines.textile +185 -0
  1572. data/vendor/bundle/gems/railties-3.2.11/guides/source/asset_pipeline.textile +707 -0
  1573. data/vendor/bundle/gems/railties-3.2.11/guides/source/association_basics.textile +1959 -0
  1574. data/vendor/bundle/gems/railties-3.2.11/guides/source/caching_with_rails.textile +437 -0
  1575. data/vendor/bundle/gems/railties-3.2.11/guides/source/command_line.textile +574 -0
  1576. data/vendor/bundle/gems/railties-3.2.11/guides/source/configuring.textile +641 -0
  1577. data/vendor/bundle/gems/railties-3.2.11/guides/source/contributing_to_ruby_on_rails.textile +448 -0
  1578. data/vendor/bundle/gems/railties-3.2.11/guides/source/credits.html.erb +72 -0
  1579. data/vendor/bundle/gems/railties-3.2.11/guides/source/debugging_rails_applications.textile +714 -0
  1580. data/vendor/bundle/gems/railties-3.2.11/guides/source/documents.yaml +157 -0
  1581. data/vendor/bundle/gems/railties-3.2.11/guides/source/engines.textile +618 -0
  1582. data/vendor/bundle/gems/railties-3.2.11/guides/source/form_helpers.textile +798 -0
  1583. data/vendor/bundle/gems/railties-3.2.11/guides/source/generators.textile +621 -0
  1584. data/vendor/bundle/gems/railties-3.2.11/guides/source/getting_started.textile +1929 -0
  1585. data/vendor/bundle/gems/railties-3.2.11/guides/source/i18n.textile +931 -0
  1586. data/vendor/bundle/gems/railties-3.2.11/guides/source/index.html.erb +30 -0
  1587. data/vendor/bundle/gems/railties-3.2.11/guides/source/initialization.textile +1116 -0
  1588. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/KINDLE.md +26 -0
  1589. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/copyright.html.erb +1 -0
  1590. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/layout.html.erb +27 -0
  1591. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/rails_guides.opf.erb +52 -0
  1592. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/toc.html.erb +24 -0
  1593. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/toc.ncx.erb +64 -0
  1594. data/vendor/bundle/gems/railties-3.2.11/guides/source/kindle/welcome.html.erb +5 -0
  1595. data/vendor/bundle/gems/railties-3.2.11/guides/source/layout.html.erb +124 -0
  1596. data/vendor/bundle/gems/railties-3.2.11/guides/source/layouts_and_rendering.textile +1237 -0
  1597. data/vendor/bundle/gems/railties-3.2.11/guides/source/migrations.textile +900 -0
  1598. data/vendor/bundle/gems/railties-3.2.11/guides/source/nested_model_forms.textile +222 -0
  1599. data/vendor/bundle/gems/railties-3.2.11/guides/source/performance_testing.textile +597 -0
  1600. data/vendor/bundle/gems/railties-3.2.11/guides/source/plugins.textile +464 -0
  1601. data/vendor/bundle/gems/railties-3.2.11/guides/source/rails_application_templates.textile +240 -0
  1602. data/vendor/bundle/gems/railties-3.2.11/guides/source/rails_on_rack.textile +236 -0
  1603. data/vendor/bundle/gems/railties-3.2.11/guides/source/routing.textile +885 -0
  1604. data/vendor/bundle/gems/railties-3.2.11/guides/source/ruby_on_rails_guides_guidelines.textile +79 -0
  1605. data/vendor/bundle/gems/railties-3.2.11/guides/source/security.textile +1004 -0
  1606. data/vendor/bundle/gems/railties-3.2.11/guides/source/testing.textile +947 -0
  1607. data/vendor/bundle/gems/railties-3.2.11/guides/w3c_validator.rb +91 -0
  1608. data/vendor/bundle/gems/railties-3.2.11/lib/rails.rb +126 -0
  1609. data/vendor/bundle/gems/railties-3.2.11/lib/rails/all.rb +15 -0
  1610. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application.rb +320 -0
  1611. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/bootstrap.rb +73 -0
  1612. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/configuration.rb +151 -0
  1613. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/finisher.rb +98 -0
  1614. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/railties.rb +13 -0
  1615. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/route_inspector.rb +84 -0
  1616. data/vendor/bundle/gems/railties-3.2.11/lib/rails/application/routes_reloader.rb +56 -0
  1617. data/vendor/bundle/gems/railties-3.2.11/lib/rails/backtrace_cleaner.rb +42 -0
  1618. data/vendor/bundle/gems/railties-3.2.11/lib/rails/cli.rb +16 -0
  1619. data/vendor/bundle/gems/railties-3.2.11/lib/rails/code_statistics.rb +118 -0
  1620. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands.rb +104 -0
  1621. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/application.rb +38 -0
  1622. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/benchmarker.rb +34 -0
  1623. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/console.rb +55 -0
  1624. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/dbconsole.rb +123 -0
  1625. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/destroy.rb +10 -0
  1626. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/generate.rb +12 -0
  1627. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/plugin.rb +544 -0
  1628. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/plugin_new.rb +11 -0
  1629. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/profiler.rb +32 -0
  1630. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/runner.rb +54 -0
  1631. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/server.rb +100 -0
  1632. data/vendor/bundle/gems/railties-3.2.11/lib/rails/commands/update.rb +9 -0
  1633. data/vendor/bundle/gems/railties-3.2.11/lib/rails/configuration.rb +89 -0
  1634. data/vendor/bundle/gems/railties-3.2.11/lib/rails/console/app.rb +36 -0
  1635. data/vendor/bundle/gems/railties-3.2.11/lib/rails/console/helpers.rb +11 -0
  1636. data/vendor/bundle/gems/railties-3.2.11/lib/rails/engine.rb +657 -0
  1637. data/vendor/bundle/gems/railties-3.2.11/lib/rails/engine/commands.rb +43 -0
  1638. data/vendor/bundle/gems/railties-3.2.11/lib/rails/engine/configuration.rb +84 -0
  1639. data/vendor/bundle/gems/railties-3.2.11/lib/rails/engine/railties.rb +33 -0
  1640. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators.rb +339 -0
  1641. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/actions.rb +325 -0
  1642. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/active_model.rb +78 -0
  1643. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/app_base.rb +281 -0
  1644. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/base.rb +390 -0
  1645. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/css/assets/assets_generator.rb +13 -0
  1646. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
  1647. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/css/scaffold/scaffold_generator.rb +16 -0
  1648. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb.rb +21 -0
  1649. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/controller/controller_generator.rb +20 -0
  1650. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/controller/templates/view.html.erb +2 -0
  1651. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/mailer/mailer_generator.rb +13 -0
  1652. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/mailer/templates/view.text.erb +3 -0
  1653. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/scaffold_generator.rb +29 -0
  1654. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/templates/_form.html.erb +23 -0
  1655. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/templates/edit.html.erb +6 -0
  1656. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/templates/index.html.erb +27 -0
  1657. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/templates/new.html.erb +5 -0
  1658. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/erb/scaffold/templates/show.html.erb +12 -0
  1659. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/generated_attribute.rb +107 -0
  1660. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/js/assets/assets_generator.rb +13 -0
  1661. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/js/assets/templates/javascript.js +2 -0
  1662. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/migration.rb +68 -0
  1663. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/named_base.rb +202 -0
  1664. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/USAGE +15 -0
  1665. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/app_generator.rb +303 -0
  1666. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/Gemfile +26 -0
  1667. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/README +261 -0
  1668. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/Rakefile +7 -0
  1669. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/assets/images/rails.png +0 -0
  1670. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +17 -0
  1671. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +13 -0
  1672. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +3 -0
  1673. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
  1674. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +14 -0
  1675. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config.ru +4 -0
  1676. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/application.rb +74 -0
  1677. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/boot.rb +6 -0
  1678. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +31 -0
  1679. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +86 -0
  1680. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +62 -0
  1681. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +33 -0
  1682. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +43 -0
  1683. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +20 -0
  1684. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +54 -0
  1685. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +39 -0
  1686. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +55 -0
  1687. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +25 -0
  1688. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/environment.rb +5 -0
  1689. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +41 -0
  1690. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +73 -0
  1691. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +39 -0
  1692. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
  1693. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +15 -0
  1694. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +5 -0
  1695. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt +7 -0
  1696. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +8 -0
  1697. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
  1698. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/locales/en.yml +5 -0
  1699. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/config/routes.rb +58 -0
  1700. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
  1701. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/doc/README_FOR_APP +2 -0
  1702. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/gitignore +15 -0
  1703. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/404.html +26 -0
  1704. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/422.html +26 -0
  1705. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/500.html +25 -0
  1706. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
  1707. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/index.html +241 -0
  1708. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/public/robots.txt +5 -0
  1709. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/script/rails +5 -0
  1710. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb +12 -0
  1711. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/app/templates/test/test_helper.rb +15 -0
  1712. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/assets/USAGE +20 -0
  1713. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/assets/assets_generator.rb +25 -0
  1714. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/assets/templates/javascript.js +2 -0
  1715. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
  1716. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/controller/USAGE +18 -0
  1717. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/controller/controller_generator.rb +20 -0
  1718. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/controller/templates/controller.rb +13 -0
  1719. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/generator/USAGE +12 -0
  1720. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/generator/generator_generator.rb +25 -0
  1721. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
  1722. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
  1723. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/helper/USAGE +17 -0
  1724. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/helper/helper_generator.rb +13 -0
  1725. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/helper/templates/helper.rb +4 -0
  1726. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/integration_test/USAGE +10 -0
  1727. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/integration_test/integration_test_generator.rb +7 -0
  1728. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/migration/USAGE +29 -0
  1729. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/migration/migration_generator.rb +8 -0
  1730. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/model/USAGE +45 -0
  1731. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/model/model_generator.rb +8 -0
  1732. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/observer/USAGE +12 -0
  1733. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/observer/observer_generator.rb +7 -0
  1734. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/performance_test/USAGE +10 -0
  1735. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/performance_test/performance_test_generator.rb +7 -0
  1736. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/USAGE +10 -0
  1737. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb +318 -0
  1738. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec +29 -0
  1739. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/Gemfile +23 -0
  1740. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/MIT-LICENSE +20 -0
  1741. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/README.rdoc +3 -0
  1742. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/Rakefile +31 -0
  1743. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt +4 -0
  1744. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/app/helpers/%name%/application_helper.rb.tt +4 -0
  1745. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt +14 -0
  1746. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/config/routes.rb +6 -0
  1747. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/gitignore +7 -0
  1748. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb +6 -0
  1749. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb +7 -0
  1750. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/lib/%name%/version.rb +3 -0
  1751. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/lib/tasks/%name%_tasks.rake +4 -0
  1752. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/rails/application.rb +18 -0
  1753. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/rails/boot.rb +10 -0
  1754. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/rails/routes.rb +4 -0
  1755. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/script/rails.tt +7 -0
  1756. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb +7 -0
  1757. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb +12 -0
  1758. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb +15 -0
  1759. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/resource/USAGE +23 -0
  1760. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/resource/resource_generator.rb +20 -0
  1761. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/resource_route/resource_route_generator.rb +50 -0
  1762. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold/USAGE +35 -0
  1763. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold/scaffold_generator.rb +23 -0
  1764. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold/templates/scaffold.css +56 -0
  1765. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
  1766. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +25 -0
  1767. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +89 -0
  1768. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/session_migration/USAGE +8 -0
  1769. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/session_migration/session_migration_generator.rb +8 -0
  1770. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/task/USAGE +9 -0
  1771. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/task/task_generator.rb +12 -0
  1772. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/rails/task/templates/task.rb +8 -0
  1773. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/resource_helpers.rb +80 -0
  1774. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_case.rb +247 -0
  1775. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit.rb +8 -0
  1776. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/controller/controller_generator.rb +15 -0
  1777. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/controller/templates/functional_test.rb +19 -0
  1778. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/helper/helper_generator.rb +13 -0
  1779. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/helper/templates/helper_test.rb +6 -0
  1780. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/integration/integration_generator.rb +13 -0
  1781. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/integration/templates/integration_test.rb +7 -0
  1782. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/mailer/mailer_generator.rb +14 -0
  1783. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +21 -0
  1784. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/model/model_generator.rb +24 -0
  1785. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/model/templates/fixtures.yml +23 -0
  1786. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/model/templates/unit_test.rb +9 -0
  1787. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/observer/observer_generator.rb +13 -0
  1788. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/observer/templates/unit_test.rb +9 -0
  1789. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/performance/performance_generator.rb +13 -0
  1790. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/performance/templates/performance_test.rb +12 -0
  1791. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/plugin/plugin_generator.rb +13 -0
  1792. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
  1793. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +3 -0
  1794. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +38 -0
  1795. data/vendor/bundle/gems/railties-3.2.11/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +51 -0
  1796. data/vendor/bundle/gems/railties-3.2.11/lib/rails/info.rb +116 -0
  1797. data/vendor/bundle/gems/railties-3.2.11/lib/rails/info_controller.rb +15 -0
  1798. data/vendor/bundle/gems/railties-3.2.11/lib/rails/initializable.rb +89 -0
  1799. data/vendor/bundle/gems/railties-3.2.11/lib/rails/paths.rb +211 -0
  1800. data/vendor/bundle/gems/railties-3.2.11/lib/rails/performance_test_help.rb +3 -0
  1801. data/vendor/bundle/gems/railties-3.2.11/lib/rails/plugin.rb +92 -0
  1802. data/vendor/bundle/gems/railties-3.2.11/lib/rails/rack.rb +7 -0
  1803. data/vendor/bundle/gems/railties-3.2.11/lib/rails/rack/debugger.rb +24 -0
  1804. data/vendor/bundle/gems/railties-3.2.11/lib/rails/rack/log_tailer.rb +34 -0
  1805. data/vendor/bundle/gems/railties-3.2.11/lib/rails/rack/logger.rb +60 -0
  1806. data/vendor/bundle/gems/railties-3.2.11/lib/rails/railtie.rb +202 -0
  1807. data/vendor/bundle/gems/railties-3.2.11/lib/rails/railtie/configurable.rb +35 -0
  1808. data/vendor/bundle/gems/railties-3.2.11/lib/rails/railtie/configuration.rb +90 -0
  1809. data/vendor/bundle/gems/railties-3.2.11/lib/rails/ruby_version_check.rb +23 -0
  1810. data/vendor/bundle/gems/railties-3.2.11/lib/rails/rubyprof_ext.rb +35 -0
  1811. data/vendor/bundle/gems/railties-3.2.11/lib/rails/script_rails_loader.rb +29 -0
  1812. data/vendor/bundle/gems/railties-3.2.11/lib/rails/source_annotation_extractor.rb +104 -0
  1813. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks.rb +16 -0
  1814. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/annotations.rake +20 -0
  1815. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/documentation.rake +155 -0
  1816. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/engine.rake +72 -0
  1817. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/framework.rake +76 -0
  1818. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/log.rake +9 -0
  1819. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/middleware.rake +7 -0
  1820. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/misc.rake +67 -0
  1821. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/routes.rake +9 -0
  1822. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/statistics.rake +16 -0
  1823. data/vendor/bundle/gems/railties-3.2.11/lib/rails/tasks/tmp.rake +37 -0
  1824. data/vendor/bundle/gems/railties-3.2.11/lib/rails/test_help.rb +56 -0
  1825. data/vendor/bundle/gems/railties-3.2.11/lib/rails/test_unit/railtie.rb +15 -0
  1826. data/vendor/bundle/gems/railties-3.2.11/lib/rails/test_unit/sub_test_task.rb +8 -0
  1827. data/vendor/bundle/gems/railties-3.2.11/lib/rails/test_unit/testing.rake +146 -0
  1828. data/vendor/bundle/gems/railties-3.2.11/lib/rails/version.rb +10 -0
  1829. data/vendor/bundle/gems/rake-10.0.3/CHANGES +526 -0
  1830. data/vendor/bundle/gems/rake-10.0.3/MIT-LICENSE +21 -0
  1831. data/vendor/bundle/gems/rake-10.0.3/README.rdoc +187 -0
  1832. data/vendor/bundle/gems/rake-10.0.3/Rakefile +374 -0
  1833. data/vendor/bundle/gems/rake-10.0.3/TODO +21 -0
  1834. data/vendor/bundle/gems/rake-10.0.3/bin/rake +33 -0
  1835. data/vendor/bundle/gems/rake-10.0.3/doc/command_line_usage.rdoc +152 -0
  1836. data/vendor/bundle/gems/rake-10.0.3/doc/example/Rakefile1 +38 -0
  1837. data/vendor/bundle/gems/rake-10.0.3/doc/example/Rakefile2 +35 -0
  1838. data/vendor/bundle/gems/rake-10.0.3/doc/example/a.c +6 -0
  1839. data/vendor/bundle/gems/rake-10.0.3/doc/example/b.c +6 -0
  1840. data/vendor/bundle/gems/rake-10.0.3/doc/example/main.c +11 -0
  1841. data/vendor/bundle/gems/rake-10.0.3/doc/glossary.rdoc +51 -0
  1842. data/vendor/bundle/gems/rake-10.0.3/doc/jamis.rb +591 -0
  1843. data/vendor/bundle/gems/rake-10.0.3/doc/proto_rake.rdoc +127 -0
  1844. data/vendor/bundle/gems/rake-10.0.3/doc/rake.1.gz +0 -0
  1845. data/vendor/bundle/gems/rake-10.0.3/doc/rakefile.rdoc +557 -0
  1846. data/vendor/bundle/gems/rake-10.0.3/doc/rational.rdoc +151 -0
  1847. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.4.14.rdoc +23 -0
  1848. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.4.15.rdoc +35 -0
  1849. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.0.rdoc +53 -0
  1850. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.3.rdoc +78 -0
  1851. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.5.4.rdoc +46 -0
  1852. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.6.0.rdoc +141 -0
  1853. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.0.rdoc +119 -0
  1854. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.1.rdoc +59 -0
  1855. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.2.rdoc +121 -0
  1856. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.7.3.rdoc +47 -0
  1857. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.0.rdoc +114 -0
  1858. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.2.rdoc +165 -0
  1859. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.3.rdoc +112 -0
  1860. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.4.rdoc +147 -0
  1861. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.5.rdoc +53 -0
  1862. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.6.rdoc +55 -0
  1863. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.8.7.rdoc +55 -0
  1864. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.0.rdoc +112 -0
  1865. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.1.rdoc +52 -0
  1866. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  1867. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.2.rdoc +49 -0
  1868. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.3.rdoc +102 -0
  1869. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.4.rdoc +110 -0
  1870. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.5.rdoc +114 -0
  1871. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.6.rdoc +127 -0
  1872. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.0.rdoc +178 -0
  1873. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.1.rdoc +187 -0
  1874. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.2.rdoc +191 -0
  1875. data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.3.rdoc +191 -0
  1876. data/vendor/bundle/gems/rake-10.0.3/install.rb +90 -0
  1877. data/vendor/bundle/gems/rake-10.0.3/lib/rake.rb +71 -0
  1878. data/vendor/bundle/gems/rake-10.0.3/lib/rake/alt_system.rb +109 -0
  1879. data/vendor/bundle/gems/rake-10.0.3/lib/rake/application.rb +669 -0
  1880. data/vendor/bundle/gems/rake-10.0.3/lib/rake/backtrace.rb +18 -0
  1881. data/vendor/bundle/gems/rake-10.0.3/lib/rake/clean.rb +32 -0
  1882. data/vendor/bundle/gems/rake-10.0.3/lib/rake/cloneable.rb +16 -0
  1883. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/compositepublisher.rb +21 -0
  1884. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/ftptools.rb +151 -0
  1885. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/publisher.rb +73 -0
  1886. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  1887. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/sshpublisher.rb +50 -0
  1888. data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/sys.rb +1 -0
  1889. data/vendor/bundle/gems/rake-10.0.3/lib/rake/default_loader.rb +10 -0
  1890. data/vendor/bundle/gems/rake-10.0.3/lib/rake/dsl_definition.rb +156 -0
  1891. data/vendor/bundle/gems/rake-10.0.3/lib/rake/early_time.rb +18 -0
  1892. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/core.rb +27 -0
  1893. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/module.rb +0 -0
  1894. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/string.rb +168 -0
  1895. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ext/time.rb +15 -0
  1896. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_creation_task.rb +24 -0
  1897. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_list.rb +410 -0
  1898. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_task.rb +47 -0
  1899. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_utils.rb +114 -0
  1900. data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_utils_ext.rb +146 -0
  1901. data/vendor/bundle/gems/rake-10.0.3/lib/rake/gempackagetask.rb +1 -0
  1902. data/vendor/bundle/gems/rake-10.0.3/lib/rake/invocation_chain.rb +51 -0
  1903. data/vendor/bundle/gems/rake-10.0.3/lib/rake/invocation_exception_mixin.rb +16 -0
  1904. data/vendor/bundle/gems/rake-10.0.3/lib/rake/loaders/makefile.rb +40 -0
  1905. data/vendor/bundle/gems/rake-10.0.3/lib/rake/multi_task.rb +13 -0
  1906. data/vendor/bundle/gems/rake-10.0.3/lib/rake/name_space.rb +25 -0
  1907. data/vendor/bundle/gems/rake-10.0.3/lib/rake/packagetask.rb +185 -0
  1908. data/vendor/bundle/gems/rake-10.0.3/lib/rake/pathmap.rb +1 -0
  1909. data/vendor/bundle/gems/rake-10.0.3/lib/rake/phony.rb +15 -0
  1910. data/vendor/bundle/gems/rake-10.0.3/lib/rake/private_reader.rb +20 -0
  1911. data/vendor/bundle/gems/rake-10.0.3/lib/rake/promise.rb +99 -0
  1912. data/vendor/bundle/gems/rake-10.0.3/lib/rake/pseudo_status.rb +24 -0
  1913. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rake_module.rb +37 -0
  1914. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rake_test_loader.rb +22 -0
  1915. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rdoctask.rb +1 -0
  1916. data/vendor/bundle/gems/rake-10.0.3/lib/rake/ruby182_test_unit_fix.rb +25 -0
  1917. data/vendor/bundle/gems/rake-10.0.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1918. data/vendor/bundle/gems/rake-10.0.3/lib/rake/runtest.rb +22 -0
  1919. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task.rb +350 -0
  1920. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_argument_error.rb +7 -0
  1921. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_arguments.rb +78 -0
  1922. data/vendor/bundle/gems/rake-10.0.3/lib/rake/task_manager.rb +296 -0
  1923. data/vendor/bundle/gems/rake-10.0.3/lib/rake/tasklib.rb +22 -0
  1924. data/vendor/bundle/gems/rake-10.0.3/lib/rake/testtask.rb +198 -0
  1925. data/vendor/bundle/gems/rake-10.0.3/lib/rake/thread_history_display.rb +48 -0
  1926. data/vendor/bundle/gems/rake-10.0.3/lib/rake/thread_pool.rb +155 -0
  1927. data/vendor/bundle/gems/rake-10.0.3/lib/rake/trace_output.rb +19 -0
  1928. data/vendor/bundle/gems/rake-10.0.3/lib/rake/version.rb +13 -0
  1929. data/vendor/bundle/gems/rake-10.0.3/lib/rake/win32.rb +55 -0
  1930. data/vendor/bundle/gems/rake-10.0.3/test/file_creation.rb +34 -0
  1931. data/vendor/bundle/gems/rake-10.0.3/test/helper.rb +562 -0
  1932. data/vendor/bundle/gems/rake-10.0.3/test/test_private_reader.rb +42 -0
  1933. data/vendor/bundle/gems/rake-10.0.3/test/test_rake.rb +40 -0
  1934. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_application.rb +515 -0
  1935. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_application_options.rb +443 -0
  1936. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_backtrace.rb +89 -0
  1937. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_clean.rb +14 -0
  1938. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_definitions.rb +80 -0
  1939. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_directory_task.rb +57 -0
  1940. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_dsl.rb +40 -0
  1941. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_early_time.rb +31 -0
  1942. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_extension.rb +59 -0
  1943. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_creation_task.rb +56 -0
  1944. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_list.rb +628 -0
  1945. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_list_path_map.rb +8 -0
  1946. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_task.rb +122 -0
  1947. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_utils.rb +305 -0
  1948. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_ftp_file.rb +59 -0
  1949. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_functional.rb +496 -0
  1950. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_invocation_chain.rb +52 -0
  1951. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_makefile_loader.rb +44 -0
  1952. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_multi_task.rb +59 -0
  1953. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_name_space.rb +43 -0
  1954. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_package_task.rb +79 -0
  1955. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map.rb +157 -0
  1956. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map_explode.rb +34 -0
  1957. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_path_map_partial.rb +18 -0
  1958. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_pseudo_status.rb +21 -0
  1959. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_rake_test_loader.rb +21 -0
  1960. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_reduce_compat.rb +30 -0
  1961. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_require.rb +40 -0
  1962. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_rules.rb +327 -0
  1963. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task.rb +316 -0
  1964. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_argument_parsing.rb +103 -0
  1965. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_arguments.rb +88 -0
  1966. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_lib.rb +9 -0
  1967. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_manager.rb +157 -0
  1968. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_manager_argument_resolution.rb +19 -0
  1969. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_with_arguments.rb +171 -0
  1970. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_test_task.rb +120 -0
  1971. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_thread_pool.rb +123 -0
  1972. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_top_level_functions.rb +71 -0
  1973. data/vendor/bundle/gems/rake-10.0.3/test/test_rake_win32.rb +72 -0
  1974. data/vendor/bundle/gems/rake-10.0.3/test/test_thread_history_display.rb +91 -0
  1975. data/vendor/bundle/gems/rake-10.0.3/test/test_trace_output.rb +43 -0
  1976. data/vendor/bundle/gems/rdoc-3.12.1/CVE-2013-0256.rdoc +49 -0
  1977. data/vendor/bundle/gems/rdoc-3.12.1/DEVELOPERS.rdoc +141 -0
  1978. data/vendor/bundle/gems/rdoc-3.12.1/History.rdoc +970 -0
  1979. data/vendor/bundle/gems/rdoc-3.12.1/LEGAL.rdoc +27 -0
  1980. data/vendor/bundle/gems/rdoc-3.12.1/LICENSE.rdoc +57 -0
  1981. data/vendor/bundle/gems/rdoc-3.12.1/Manifest.txt +231 -0
  1982. data/vendor/bundle/gems/rdoc-3.12.1/README.rdoc +61 -0
  1983. data/vendor/bundle/gems/rdoc-3.12.1/RI.rdoc +57 -0
  1984. data/vendor/bundle/gems/rdoc-3.12.1/Rakefile +137 -0
  1985. data/vendor/bundle/gems/rdoc-3.12.1/TODO.rdoc +40 -0
  1986. data/vendor/bundle/gems/rdoc-3.12.1/bin/rdoc +40 -0
  1987. data/vendor/bundle/gems/rdoc-3.12.1/bin/ri +12 -0
  1988. data/vendor/bundle/gems/rdoc-3.12.1/lib/gauntlet_rdoc.rb +84 -0
  1989. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc.rb +221 -0
  1990. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/alias.rb +111 -0
  1991. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/anon_class.rb +10 -0
  1992. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/any_method.rb +208 -0
  1993. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/attr.rb +134 -0
  1994. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/class_module.rb +619 -0
  1995. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/code_object.rb +305 -0
  1996. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/code_objects.rb +5 -0
  1997. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/comment.rb +225 -0
  1998. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/constant.rb +84 -0
  1999. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/context.rb +1136 -0
  2000. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/context/section.rb +123 -0
  2001. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/cross_reference.rb +175 -0
  2002. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/encoding.rb +90 -0
  2003. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/erbio.rb +37 -0
  2004. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator.rb +45 -0
  2005. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/darkfish.rb +532 -0
  2006. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/json_index.rb +240 -0
  2007. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/markup.rb +171 -0
  2008. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/ri.rb +83 -0
  2009. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
  2010. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_head.rhtml +16 -0
  2011. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +18 -0
  2012. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +9 -0
  2013. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +8 -0
  2014. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +16 -0
  2015. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +12 -0
  2016. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +7 -0
  2017. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +12 -0
  2018. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +10 -0
  2019. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +10 -0
  2020. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +10 -0
  2021. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/class.rhtml +165 -0
  2022. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
  2023. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
  2024. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
  2025. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
  2026. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
  2027. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
  2028. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
  2029. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
  2030. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
  2031. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
  2032. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
  2033. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
  2034. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
  2035. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
  2036. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
  2037. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
  2038. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
  2039. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
  2040. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
  2041. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
  2042. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
  2043. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
  2044. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
  2045. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
  2046. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/index.rhtml +19 -0
  2047. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/js/darkfish.js +155 -0
  2048. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/js/jquery.js +18 -0
  2049. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/js/search.js +94 -0
  2050. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/page.rhtml +16 -0
  2051. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/rdoc.css +543 -0
  2052. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +55 -0
  2053. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/json_index/js/navigation.js +142 -0
  2054. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/generator/template/json_index/js/searcher.js +228 -0
  2055. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ghost_method.rb +6 -0
  2056. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/include.rb +110 -0
  2057. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/known_classes.rb +72 -0
  2058. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup.rb +813 -0
  2059. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/attr_changer.rb +25 -0
  2060. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/attr_span.rb +29 -0
  2061. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/attribute.rb +51 -0
  2062. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/attribute_manager.rb +335 -0
  2063. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/blank_line.rb +27 -0
  2064. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/document.rb +148 -0
  2065. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/formatter.rb +173 -0
  2066. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/formatter_test_case.rb +698 -0
  2067. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/heading.rb +64 -0
  2068. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/include.rb +42 -0
  2069. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/indented_paragraph.rb +33 -0
  2070. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/inline.rb +1 -0
  2071. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/list.rb +82 -0
  2072. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/list_item.rb +86 -0
  2073. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/paragraph.rb +14 -0
  2074. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/parser.rb +504 -0
  2075. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/pre_process.rb +293 -0
  2076. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/raw.rb +69 -0
  2077. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/rule.rb +20 -0
  2078. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/special.rb +40 -0
  2079. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/text_formatter_test_case.rb +114 -0
  2080. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_ansi.rb +87 -0
  2081. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_bs.rb +78 -0
  2082. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_html.rb +394 -0
  2083. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_html_crossref.rb +156 -0
  2084. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_html_snippet.rb +268 -0
  2085. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_label.rb +55 -0
  2086. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_rdoc.rb +302 -0
  2087. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_table_of_contents.rb +56 -0
  2088. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_test.rb +69 -0
  2089. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/to_tt_only.rb +111 -0
  2090. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/markup/verbatim.rb +64 -0
  2091. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/meta_method.rb +6 -0
  2092. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/method_attr.rb +384 -0
  2093. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/normal_class.rb +69 -0
  2094. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/normal_module.rb +64 -0
  2095. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/options.rb +1040 -0
  2096. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser.rb +242 -0
  2097. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/c.rb +1024 -0
  2098. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/rd.rb +22 -0
  2099. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/ruby.rb +1816 -0
  2100. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/ruby_tools.rb +162 -0
  2101. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/simple.rb +61 -0
  2102. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/parser/text.rb +11 -0
  2103. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd.rb +95 -0
  2104. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd/block_parser.rb +1054 -0
  2105. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd/block_parser.ry +638 -0
  2106. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd/inline.rb +71 -0
  2107. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd/inline_parser.rb +1207 -0
  2108. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rd/inline_parser.ry +593 -0
  2109. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rdoc.rb +532 -0
  2110. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/require.rb +51 -0
  2111. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ri.rb +20 -0
  2112. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ri/driver.rb +1174 -0
  2113. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ri/formatter.rb +5 -0
  2114. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ri/paths.rb +128 -0
  2115. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ri/store.rb +357 -0
  2116. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ruby_lex.rb +1334 -0
  2117. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/ruby_token.rb +458 -0
  2118. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/rubygems_hook.rb +220 -0
  2119. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/single_class.rb +21 -0
  2120. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/stats.rb +436 -0
  2121. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/stats/normal.rb +48 -0
  2122. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/stats/quiet.rb +59 -0
  2123. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/stats/verbose.rb +45 -0
  2124. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/task.rb +329 -0
  2125. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/test_case.rb +76 -0
  2126. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/text.rb +314 -0
  2127. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/token_stream.rb +95 -0
  2128. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/tom_doc.rb +232 -0
  2129. data/vendor/bundle/gems/rdoc-3.12.1/lib/rdoc/top_level.rb +523 -0
  2130. data/vendor/bundle/gems/rdoc-3.12.1/test/README +1 -0
  2131. data/vendor/bundle/gems/rdoc-3.12.1/test/binary.dat +0 -0
  2132. data/vendor/bundle/gems/rdoc-3.12.1/test/hidden.zip.txt +1 -0
  2133. data/vendor/bundle/gems/rdoc-3.12.1/test/test.ja.large.rdoc +3 -0
  2134. data/vendor/bundle/gems/rdoc-3.12.1/test/test.ja.rdoc +10 -0
  2135. data/vendor/bundle/gems/rdoc-3.12.1/test/test.ja.txt +8 -0
  2136. data/vendor/bundle/gems/rdoc-3.12.1/test/test.txt +1 -0
  2137. data/vendor/bundle/gems/rdoc-3.12.1/test/test_attribute_manager.rb +117 -0
  2138. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_alias.rb +13 -0
  2139. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_any_method.rb +248 -0
  2140. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_attr.rb +136 -0
  2141. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_class_module.rb +814 -0
  2142. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_code_object.rb +297 -0
  2143. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_comment.rb +504 -0
  2144. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_constant.rb +15 -0
  2145. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_context.rb +791 -0
  2146. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_context_section.rb +53 -0
  2147. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_cross_reference.rb +176 -0
  2148. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_encoding.rb +188 -0
  2149. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_generator_darkfish.rb +151 -0
  2150. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_generator_json_index.rb +255 -0
  2151. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_generator_markup.rb +56 -0
  2152. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_generator_ri.rb +84 -0
  2153. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_include.rb +96 -0
  2154. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup.rb +95 -0
  2155. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_attribute_manager.rb +237 -0
  2156. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_document.rb +180 -0
  2157. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_formatter.rb +55 -0
  2158. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_heading.rb +20 -0
  2159. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_include.rb +19 -0
  2160. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_indented_paragraph.rb +39 -0
  2161. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_paragraph.rb +18 -0
  2162. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_parser.rb +1624 -0
  2163. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_pre_process.rb +461 -0
  2164. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_raw.rb +29 -0
  2165. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_ansi.rb +348 -0
  2166. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_bs.rb +342 -0
  2167. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_html.rb +515 -0
  2168. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_html_crossref.rb +200 -0
  2169. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_html_snippet.rb +668 -0
  2170. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_label.rb +50 -0
  2171. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_rdoc.rb +357 -0
  2172. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_table_of_contents.rb +90 -0
  2173. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_to_tt_only.rb +226 -0
  2174. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_markup_verbatim.rb +16 -0
  2175. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_method_attr.rb +150 -0
  2176. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_normal_class.rb +23 -0
  2177. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_normal_module.rb +37 -0
  2178. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_options.rb +579 -0
  2179. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_parser.rb +162 -0
  2180. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_parser_c.rb +1438 -0
  2181. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_parser_rd.rb +52 -0
  2182. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_parser_ruby.rb +2490 -0
  2183. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_parser_simple.rb +115 -0
  2184. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rd.rb +30 -0
  2185. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rd_block_parser.rb +527 -0
  2186. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rd_inline.rb +63 -0
  2187. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rd_inline_parser.rb +173 -0
  2188. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rdoc.rb +280 -0
  2189. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_require.rb +25 -0
  2190. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_ri_driver.rb +1059 -0
  2191. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_ri_paths.rb +46 -0
  2192. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_ri_store.rb +466 -0
  2193. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_ruby_lex.rb +137 -0
  2194. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_rubygems_hook.rb +202 -0
  2195. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_single_class.rb +12 -0
  2196. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_stats.rb +588 -0
  2197. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_task.rb +120 -0
  2198. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_text.rb +542 -0
  2199. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_token_stream.rb +42 -0
  2200. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_tom_doc.rb +458 -0
  2201. data/vendor/bundle/gems/rdoc-3.12.1/test/test_rdoc_top_level.rb +313 -0
  2202. data/vendor/bundle/gems/rdoc-3.12.1/test/xref_data.rb +76 -0
  2203. data/vendor/bundle/gems/rdoc-3.12.1/test/xref_test_case.rb +67 -0
  2204. data/vendor/bundle/gems/sprockets-2.2.2/LICENSE +21 -0
  2205. data/vendor/bundle/gems/sprockets-2.2.2/README.md +405 -0
  2206. data/vendor/bundle/gems/sprockets-2.2.2/bin/sprockets +80 -0
  2207. data/vendor/bundle/gems/sprockets-2.2.2/lib/rake/sprocketstask.rb +140 -0
  2208. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets.rb +64 -0
  2209. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/asset.rb +260 -0
  2210. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/asset_attributes.rb +126 -0
  2211. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/base.rb +307 -0
  2212. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/bundled_asset.rb +79 -0
  2213. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/cache/file_store.rb +32 -0
  2214. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/caching.rb +96 -0
  2215. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/charset_normalizer.rb +41 -0
  2216. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/context.rb +235 -0
  2217. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/directive_processor.rb +406 -0
  2218. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/eco_template.rb +38 -0
  2219. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/ejs_template.rb +37 -0
  2220. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/engines.rb +74 -0
  2221. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/environment.rb +91 -0
  2222. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/errors.rb +19 -0
  2223. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/index.rb +99 -0
  2224. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/jst_processor.rb +33 -0
  2225. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/manifest.rb +203 -0
  2226. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/mime.rb +48 -0
  2227. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/processed_asset.rb +152 -0
  2228. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/processing.rb +280 -0
  2229. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/processor.rb +32 -0
  2230. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/safety_colons.rb +28 -0
  2231. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/server.rb +247 -0
  2232. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/static_asset.rb +57 -0
  2233. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/trail.rb +90 -0
  2234. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/utils.rb +69 -0
  2235. data/vendor/bundle/gems/sprockets-2.2.2/lib/sprockets/version.rb +3 -0
  2236. data/vendor/bundle/gems/thor-0.17.0/CHANGELOG.rdoc +142 -0
  2237. data/vendor/bundle/gems/thor-0.17.0/Gemfile +19 -0
  2238. data/vendor/bundle/gems/thor-0.17.0/LICENSE.md +20 -0
  2239. data/vendor/bundle/gems/thor-0.17.0/README.md +28 -0
  2240. data/vendor/bundle/gems/thor-0.17.0/Thorfile +30 -0
  2241. data/vendor/bundle/gems/thor-0.17.0/bin/rake2thor +86 -0
  2242. data/vendor/bundle/gems/thor-0.17.0/bin/thor +6 -0
  2243. data/vendor/bundle/gems/thor-0.17.0/lib/thor.rb +448 -0
  2244. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions.rb +318 -0
  2245. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/create_file.rb +105 -0
  2246. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/create_link.rb +57 -0
  2247. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/directory.rb +117 -0
  2248. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/empty_directory.rb +153 -0
  2249. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/file_manipulation.rb +314 -0
  2250. data/vendor/bundle/gems/thor-0.17.0/lib/thor/actions/inject_into_file.rb +109 -0
  2251. data/vendor/bundle/gems/thor-0.17.0/lib/thor/base.rb +654 -0
  2252. data/vendor/bundle/gems/thor-0.17.0/lib/thor/core_ext/file_binary_read.rb +9 -0
  2253. data/vendor/bundle/gems/thor-0.17.0/lib/thor/core_ext/hash_with_indifferent_access.rb +80 -0
  2254. data/vendor/bundle/gems/thor-0.17.0/lib/thor/core_ext/ordered_hash.rb +100 -0
  2255. data/vendor/bundle/gems/thor-0.17.0/lib/thor/error.rb +35 -0
  2256. data/vendor/bundle/gems/thor-0.17.0/lib/thor/group.rb +285 -0
  2257. data/vendor/bundle/gems/thor-0.17.0/lib/thor/invocation.rb +170 -0
  2258. data/vendor/bundle/gems/thor-0.17.0/lib/thor/parser.rb +4 -0
  2259. data/vendor/bundle/gems/thor-0.17.0/lib/thor/parser/argument.rb +74 -0
  2260. data/vendor/bundle/gems/thor-0.17.0/lib/thor/parser/arguments.rb +171 -0
  2261. data/vendor/bundle/gems/thor-0.17.0/lib/thor/parser/option.rb +121 -0
  2262. data/vendor/bundle/gems/thor-0.17.0/lib/thor/parser/options.rb +216 -0
  2263. data/vendor/bundle/gems/thor-0.17.0/lib/thor/rake_compat.rb +72 -0
  2264. data/vendor/bundle/gems/thor-0.17.0/lib/thor/runner.rb +321 -0
  2265. data/vendor/bundle/gems/thor-0.17.0/lib/thor/shell.rb +88 -0
  2266. data/vendor/bundle/gems/thor-0.17.0/lib/thor/shell/basic.rb +389 -0
  2267. data/vendor/bundle/gems/thor-0.17.0/lib/thor/shell/color.rb +144 -0
  2268. data/vendor/bundle/gems/thor-0.17.0/lib/thor/shell/html.rb +123 -0
  2269. data/vendor/bundle/gems/thor-0.17.0/lib/thor/task.rb +132 -0
  2270. data/vendor/bundle/gems/thor-0.17.0/lib/thor/util.rb +266 -0
  2271. data/vendor/bundle/gems/thor-0.17.0/lib/thor/version.rb +3 -0
  2272. data/vendor/bundle/gems/thor-0.17.0/spec/actions/create_file_spec.rb +170 -0
  2273. data/vendor/bundle/gems/thor-0.17.0/spec/actions/create_link_spec.rb +81 -0
  2274. data/vendor/bundle/gems/thor-0.17.0/spec/actions/directory_spec.rb +156 -0
  2275. data/vendor/bundle/gems/thor-0.17.0/spec/actions/empty_directory_spec.rb +130 -0
  2276. data/vendor/bundle/gems/thor-0.17.0/spec/actions/file_manipulation_spec.rb +382 -0
  2277. data/vendor/bundle/gems/thor-0.17.0/spec/actions/inject_into_file_spec.rb +135 -0
  2278. data/vendor/bundle/gems/thor-0.17.0/spec/actions_spec.rb +331 -0
  2279. data/vendor/bundle/gems/thor-0.17.0/spec/base_spec.rb +279 -0
  2280. data/vendor/bundle/gems/thor-0.17.0/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  2281. data/vendor/bundle/gems/thor-0.17.0/spec/core_ext/ordered_hash_spec.rb +115 -0
  2282. data/vendor/bundle/gems/thor-0.17.0/spec/exit_condition_spec.rb +19 -0
  2283. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/application.rb +2 -0
  2284. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/app{1}/README +3 -0
  2285. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/bundle/execute.rb +6 -0
  2286. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/bundle/main.thor +1 -0
  2287. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  2288. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/COMMENTER +11 -0
  2289. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/README +3 -0
  2290. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/block_helper.rb +3 -0
  2291. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/config.rb +1 -0
  2292. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/doc/config.yaml.tt +1 -0
  2293. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/enum.thor +10 -0
  2294. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/group.thor +114 -0
  2295. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/invoke.thor +112 -0
  2296. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/path with spaces b/data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/path with → spaces +0 -0
  2297. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/preserve/script.sh +3 -0
  2298. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/script.thor +195 -0
  2299. data/vendor/bundle/gems/thor-0.17.0/spec/fixtures/task.thor +10 -0
  2300. data/vendor/bundle/gems/thor-0.17.0/spec/group_spec.rb +216 -0
  2301. data/vendor/bundle/gems/thor-0.17.0/spec/invocation_spec.rb +100 -0
  2302. data/vendor/bundle/gems/thor-0.17.0/spec/parser/argument_spec.rb +53 -0
  2303. data/vendor/bundle/gems/thor-0.17.0/spec/parser/arguments_spec.rb +66 -0
  2304. data/vendor/bundle/gems/thor-0.17.0/spec/parser/option_spec.rb +202 -0
  2305. data/vendor/bundle/gems/thor-0.17.0/spec/parser/options_spec.rb +395 -0
  2306. data/vendor/bundle/gems/thor-0.17.0/spec/rake_compat_spec.rb +72 -0
  2307. data/vendor/bundle/gems/thor-0.17.0/spec/register_spec.rb +197 -0
  2308. data/vendor/bundle/gems/thor-0.17.0/spec/runner_spec.rb +241 -0
  2309. data/vendor/bundle/gems/thor-0.17.0/spec/shell/basic_spec.rb +312 -0
  2310. data/vendor/bundle/gems/thor-0.17.0/spec/shell/color_spec.rb +81 -0
  2311. data/vendor/bundle/gems/thor-0.17.0/spec/shell/html_spec.rb +32 -0
  2312. data/vendor/bundle/gems/thor-0.17.0/spec/shell_spec.rb +47 -0
  2313. data/vendor/bundle/gems/thor-0.17.0/spec/spec_helper.rb +63 -0
  2314. data/vendor/bundle/gems/thor-0.17.0/spec/task_spec.rb +80 -0
  2315. data/vendor/bundle/gems/thor-0.17.0/spec/thor_spec.rb +488 -0
  2316. data/vendor/bundle/gems/thor-0.17.0/spec/util_spec.rb +196 -0
  2317. data/vendor/bundle/gems/thor-0.17.0/thor.gemspec +20 -0
  2318. data/vendor/bundle/gems/tilt-1.3.3/COPYING +18 -0
  2319. data/vendor/bundle/gems/tilt-1.3.3/Gemfile +2 -0
  2320. data/vendor/bundle/gems/tilt-1.3.3/README.md +208 -0
  2321. data/vendor/bundle/gems/tilt-1.3.3/Rakefile +80 -0
  2322. data/vendor/bundle/gems/tilt-1.3.3/TEMPLATES.md +516 -0
  2323. data/vendor/bundle/gems/tilt-1.3.3/bin/tilt +110 -0
  2324. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt.rb +190 -0
  2325. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/builder.rb +40 -0
  2326. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/coffee.rb +50 -0
  2327. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/css.rb +72 -0
  2328. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/erb.rb +110 -0
  2329. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/haml.rb +64 -0
  2330. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/liquid.rb +41 -0
  2331. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markaby.rb +52 -0
  2332. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markdown.rb +190 -0
  2333. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/nokogiri.rb +43 -0
  2334. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/radius.rb +51 -0
  2335. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/rdoc.rb +32 -0
  2336. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/string.rb +21 -0
  2337. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/template.rb +285 -0
  2338. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/textile.rb +25 -0
  2339. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/wiki.rb +50 -0
  2340. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/yajl.rb +94 -0
  2341. data/vendor/bundle/gems/tilt-1.3.3/test/contest.rb +68 -0
  2342. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/locals.mab +1 -0
  2343. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby.mab +1 -0
  2344. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby_other_static.mab +1 -0
  2345. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/render_twice.mab +1 -0
  2346. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/scope.mab +1 -0
  2347. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/yielding.mab +2 -0
  2348. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_blueclothtemplate_test.rb +45 -0
  2349. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_buildertemplate_test.rb +59 -0
  2350. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_cache_test.rb +32 -0
  2351. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_coffeescripttemplate_test.rb +61 -0
  2352. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_compilesite_test.rb +51 -0
  2353. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_creoletemplate_test.rb +28 -0
  2354. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erbtemplate_test.rb +234 -0
  2355. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erubistemplate_test.rb +151 -0
  2356. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_fallback_test.rb +122 -0
  2357. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_hamltemplate_test.rb +144 -0
  2358. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_kramdown_test.rb +42 -0
  2359. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_lesstemplate_test.rb +26 -0
  2360. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_liquidtemplate_test.rb +78 -0
  2361. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markaby_test.rb +88 -0
  2362. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markdown_test.rb +161 -0
  2363. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_marukutemplate_test.rb +48 -0
  2364. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_nokogiritemplate_test.rb +87 -0
  2365. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_radiustemplate_test.rb +75 -0
  2366. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdiscounttemplate_test.rb +55 -0
  2367. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdoctemplate_test.rb +24 -0
  2368. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redcarpettemplate_test.rb +59 -0
  2369. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redclothtemplate_test.rb +24 -0
  2370. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_sasstemplate_test.rb +41 -0
  2371. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_stringtemplate_test.rb +170 -0
  2372. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_template_test.rb +154 -0
  2373. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_test.rb +65 -0
  2374. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_wikiclothtemplate_test.rb +32 -0
  2375. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_yajltemplate_test.rb +92 -0
  2376. data/vendor/bundle/gems/tilt-1.3.3/tilt.gemspec +109 -0
  2377. data/vendor/bundle/specifications/actionpack-3.2.11.gemspec +57 -0
  2378. data/vendor/bundle/specifications/activemodel-3.2.11.gemspec +32 -0
  2379. data/vendor/bundle/specifications/activesupport-3.2.11.gemspec +33 -0
  2380. data/vendor/bundle/specifications/builder-3.0.4.gemspec +29 -0
  2381. data/vendor/bundle/specifications/erubis-2.7.0.gemspec +28 -0
  2382. data/vendor/bundle/specifications/hike-1.2.1.gemspec +25 -0
  2383. data/vendor/bundle/specifications/i18n-0.6.1.gemspec +38 -0
  2384. data/vendor/bundle/specifications/journey-1.0.4.gemspec +47 -0
  2385. data/vendor/bundle/specifications/json-1.7.6.gemspec +36 -0
  2386. data/vendor/bundle/specifications/multi_json-1.5.0.gemspec +41 -0
  2387. data/vendor/bundle/specifications/rack-1.4.5.gemspec +47 -0
  2388. data/vendor/bundle/specifications/rack-cache-1.2.gemspec +40 -0
  2389. data/vendor/bundle/specifications/rack-ssl-1.3.3.gemspec +29 -0
  2390. data/vendor/bundle/specifications/rack-test-0.6.2.gemspec +31 -0
  2391. data/vendor/bundle/specifications/railties-3.2.11.gemspec +47 -0
  2392. data/vendor/bundle/specifications/rake-10.0.3.gemspec +34 -0
  2393. data/vendor/bundle/specifications/rdoc-3.12.1.gemspec +51 -0
  2394. data/vendor/bundle/specifications/sprockets-2.2.2.gemspec +64 -0
  2395. data/vendor/bundle/specifications/thor-0.17.0.gemspec +30 -0
  2396. data/vendor/bundle/specifications/tilt-1.3.3.gemspec +97 -0
  2397. metadata +2479 -0
@@ -0,0 +1,9 @@
1
+ // ┌────────────────────────────────────────────────────────────────────┐ \\
2
+ // │ Raphaël 2.0.2 - JavaScript Vector Library │ \\
3
+ // ├────────────────────────────────────────────────────────────────────┤ \\
4
+ // │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
5
+ // │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
6
+ // ├────────────────────────────────────────────────────────────────────┤ \\
7
+ // │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
8
+ // └────────────────────────────────────────────────────────────────────┘ \\
9
+ (function(a){var b="0.3.4",c="hasOwnProperty",d=/[\.\/]/,e="*",f=function(){},g=function(a,b){return a-b},h,i,j={n:{}},k=function(a,b){var c=j,d=i,e=Array.prototype.slice.call(arguments,2),f=k.listeners(a),l=0,m=!1,n,o=[],p={},q=[],r=h,s=[];h=a,i=0;for(var t=0,u=f.length;t<u;t++)"zIndex"in f[t]&&(o.push(f[t].zIndex),f[t].zIndex<0&&(p[f[t].zIndex]=f[t]));o.sort(g);while(o[l]<0){n=p[o[l++]],q.push(n.apply(b,e));if(i){i=d;return q}}for(t=0;t<u;t++){n=f[t];if("zIndex"in n)if(n.zIndex==o[l]){q.push(n.apply(b,e));if(i)break;do{l++,n=p[o[l]],n&&q.push(n.apply(b,e));if(i)break}while(n)}else p[n.zIndex]=n;else{q.push(n.apply(b,e));if(i)break}}i=d,h=r;return q.length?q:null};k.listeners=function(a){var b=a.split(d),c=j,f,g,h,i,k,l,m,n,o=[c],p=[];for(i=0,k=b.length;i<k;i++){n=[];for(l=0,m=o.length;l<m;l++){c=o[l].n,g=[c[b[i]],c[e]],h=2;while(h--)f=g[h],f&&(n.push(f),p=p.concat(f.f||[]))}o=n}return p},k.on=function(a,b){var c=a.split(d),e=j;for(var g=0,h=c.length;g<h;g++)e=e.n,!e[c[g]]&&(e[c[g]]={n:{}}),e=e[c[g]];e.f=e.f||[];for(g=0,h=e.f.length;g<h;g++)if(e.f[g]==b)return f;e.f.push(b);return function(a){+a==+a&&(b.zIndex=+a)}},k.stop=function(){i=1},k.nt=function(a){if(a)return(new RegExp("(?:\\.|\\/|^)"+a+"(?:\\.|\\/|$)")).test(h);return h},k.off=k.unbind=function(a,b){var f=a.split(d),g,h,i,k,l,m,n,o=[j];for(k=0,l=f.length;k<l;k++)for(m=0;m<o.length;m+=i.length-2){i=[m,1],g=o[m].n;if(f[k]!=e)g[f[k]]&&i.push(g[f[k]]);else for(h in g)g[c](h)&&i.push(g[h]);o.splice.apply(o,i)}for(k=0,l=o.length;k<l;k++){g=o[k];while(g.n){if(b){if(g.f){for(m=0,n=g.f.length;m<n;m++)if(g.f[m]==b){g.f.splice(m,1);break}!g.f.length&&delete g.f}for(h in g.n)if(g.n[c](h)&&g.n[h].f){var p=g.n[h].f;for(m=0,n=p.length;m<n;m++)if(p[m]==b){p.splice(m,1);break}!p.length&&delete g.n[h].f}}else{delete g.f;for(h in g.n)g.n[c](h)&&g.n[h].f&&delete g.n[h].f}g=g.n}}},k.once=function(a,b){var c=function(){var d=b.apply(this,arguments);k.unbind(a,c);return d};return k.on(a,c)},k.version=b,k.toString=function(){return"You are running Eve "+b},typeof module!="undefined"&&module.exports?module.exports=k:typeof define!="undefined"?define("eve",[],function(){return k}):a.eve=k})(this),function(){function cs(b,d,e,f,h,i){e=Q(e);var j,k,l,m=[],o,p,q,t=b.ms,u={},v={},w={};if(f)for(y=0,z=cm.length;y<z;y++){var x=cm[y];if(x.el.id==d.id&&x.anim==b){x.percent!=e?(cm.splice(y,1),l=1):k=x,d.attr(x.totalOrigin);break}}else f=+v;for(var y=0,z=b.percents.length;y<z;y++){if(b.percents[y]==e||b.percents[y]>f*b.top){e=b.percents[y],p=b.percents[y-1]||0,t=t/b.top*(e-p),o=b.percents[y+1],j=b.anim[e];break}f&&d.attr(b.anim[b.percents[y]])}if(!!j){if(!k){for(var A in j)if(j[g](A))if(U[g](A)||d.paper.customAttributes[g](A)){u[A]=d.attr(A),u[A]==null&&(u[A]=T[A]),v[A]=j[A];switch(U[A]){case C:w[A]=(v[A]-u[A])/t;break;case"colour":u[A]=a.getRGB(u[A]);var B=a.getRGB(v[A]);w[A]={r:(B.r-u[A].r)/t,g:(B.g-u[A].g)/t,b:(B.b-u[A].b)/t};break;case"path":var D=bH(u[A],v[A]),E=D[1];u[A]=D[0],w[A]=[];for(y=0,z=u[A].length;y<z;y++){w[A][y]=[0];for(var F=1,G=u[A][y].length;F<G;F++)w[A][y][F]=(E[y][F]-u[A][y][F])/t}break;case"transform":var H=d._,I=bQ(H[A],v[A]);if(I){u[A]=I.from,v[A]=I.to,w[A]=[],w[A].real=!0;for(y=0,z=u[A].length;y<z;y++){w[A][y]=[u[A][y][0]];for(F=1,G=u[A][y].length;F<G;F++)w[A][y][F]=(v[A][y][F]-u[A][y][F])/t}}else{var J=d.matrix||new bR,K={_:{transform:H.transform},getBBox:function(){return d.getBBox(1)}};u[A]=[J.a,J.b,J.c,J.d,J.e,J.f],bO(K,v[A]),v[A]=K._.transform,w[A]=[(K.matrix.a-J.a)/t,(K.matrix.b-J.b)/t,(K.matrix.c-J.c)/t,(K.matrix.d-J.d)/t,(K.matrix.e-J.e)/t,(K.matrix.e-J.f)/t]}break;case"csv":var L=r(j[A])[s](c),M=r(u[A])[s](c);if(A=="clip-rect"){u[A]=M,w[A]=[],y=M.length;while(y--)w[A][y]=(L[y]-u[A][y])/t}v[A]=L;break;default:L=[][n](j[A]),M=[][n](u[A]),w[A]=[],y=d.paper.customAttributes[A].length;while(y--)w[A][y]=((L[y]||0)-(M[y]||0))/t}}var O=j.easing,P=a.easing_formulas[O];if(!P){P=r(O).match(N);if(P&&P.length==5){var R=P;P=function(a){return cq(a,+R[1],+R[2],+R[3],+R[4],t)}}else P=bf}q=j.start||b.start||+(new Date),x={anim:b,percent:e,timestamp:q,start:q+(b.del||0),status:0,initstatus:f||0,stop:!1,ms:t,easing:P,from:u,diff:w,to:v,el:d,callback:j.callback,prev:p,next:o,repeat:i||b.times,origin:d.attr(),totalOrigin:h},cm.push(x);if(f&&!k&&!l){x.stop=!0,x.start=new Date-t*f;if(cm.length==1)return co()}l&&(x.start=new Date-x.ms*f),cm.length==1&&cn(co)}else k.initstatus=f,k.start=new Date-k.ms*f;eve("anim.start."+d.id,d,b)}}function cr(a,b){var c=[],d={};this.ms=b,this.times=1;if(a){for(var e in a)a[g](e)&&(d[Q(e)]=a[e],c.push(Q(e)));c.sort(bd)}this.anim=d,this.top=c[c.length-1],this.percents=c}function cq(a,b,c,d,e,f){function o(a,b){var c,d,e,f,j,k;for(e=a,k=0;k<8;k++){f=m(e)-a;if(z(f)<b)return e;j=(3*i*e+2*h)*e+g;if(z(j)<1e-6)break;e=e-f/j}c=0,d=1,e=a;if(e<c)return c;if(e>d)return d;while(c<d){f=m(e);if(z(f-a)<b)return e;a>f?c=e:d=e,e=(d-c)/2+c}return e}function n(a,b){var c=o(a,b);return((l*c+k)*c+j)*c}function m(a){return((i*a+h)*a+g)*a}var g=3*b,h=3*(d-b)-g,i=1-g-h,j=3*c,k=3*(e-c)-j,l=1-j-k;return n(a,1/(200*f))}function ce(){return this.x+q+this.y+q+this.width+" × "+this.height}function cd(){return this.x+q+this.y}function bR(a,b,c,d,e,f){a!=null?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f=+f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function bx(a,b){var c=[];for(var d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]}),c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function bw(){return this.hex}function bu(a,b,c){function d(){var e=Array.prototype.slice.call(arguments,0),f=e.join("␀"),h=d.cache=d.cache||{},i=d.count=d.count||[];if(h[g](f)){bt(i,f);return c?c(h[f]):h[f]}i.length>=1e3&&delete h[i.shift()],i.push(f),h[f]=a[m](b,e);return c?c(h[f]):h[f]}return d}function bt(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return a.push(a.splice(c,1)[0])}function a(c){if(a.is(c,"function"))return b?c():eve.on("DOMload",c);if(a.is(c,E))return a._engine.create[m](a,c.splice(0,3+a.is(c[0],C))).add(c);var d=Array.prototype.slice.call(arguments,0);if(a.is(d[d.length-1],"function")){var e=d.pop();return b?e.call(a._engine.create[m](a,d)):eve.on("DOMload",function(){e.call(a._engine.create[m](a,d))})}return a._engine.create[m](a,arguments)}a.version="2.0.2",a.eve=eve;var b,c=/[, ]+/,d={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},e=/\{(\d+)\}/g,f="prototype",g="hasOwnProperty",h={doc:document,win:window},i={was:Object.prototype[g].call(h.win,"Raphael"),is:h.win.Raphael},j=function(){this.ca=this.customAttributes={}},k,l="appendChild",m="apply",n="concat",o="createTouch"in h.doc,p="",q=" ",r=String,s="split",t="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel"[s](q),u={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},v=r.prototype.toLowerCase,w=Math,x=w.max,y=w.min,z=w.abs,A=w.pow,B=w.PI,C="number",D="string",E="array",F="toString",G="fill",H=Object.prototype.toString,I={},J="push",K=a._ISURL=/^url\(['"]?([^\)]+?)['"]?\)$/i,L=/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+%?(?:\s*,\s*[\d\.]+%?)?)\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i,M={NaN:1,Infinity:1,"-Infinity":1},N=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,O=w.round,P="setAttribute",Q=parseFloat,R=parseInt,S=r.prototype.toUpperCase,T=a._availableAttrs={"arrow-end":"none","arrow-start":"none",blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:'10px "Arial"',"font-family":'"Arial"',"font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/","letter-spacing":0,opacity:1,path:"M0,0",r:0,rx:0,ry:0,src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",transform:"",width:0,x:0,y:0},U=a._availableAnimAttrs={blur:C,"clip-rect":"csv",cx:C,cy:C,fill:"colour","fill-opacity":C,"font-size":C,height:C,opacity:C,path:"path",r:C,rx:C,ry:C,stroke:"colour","stroke-opacity":C,"stroke-width":C,transform:"transform",width:C,x:C,y:C},V=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]/g,W=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/,X={hs:1,rg:1},Y=/,?([achlmqrstvxz]),?/gi,Z=/([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig,$=/([rstm])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig,_=/(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/ig,ba=a._radial_gradient=/^r(?:\(([^,]+?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*([^\)]+?)\))?/,bb={},bc=function(a,b){return a.key-b.key},bd=function(a,b){return Q(a)-Q(b)},be=function(){},bf=function(a){return a},bg=a._rectPath=function(a,b,c,d,e){if(e)return[["M",a+e,b],["l",c-e*2,0],["a",e,e,0,0,1,e,e],["l",0,d-e*2],["a",e,e,0,0,1,-e,e],["l",e*2-c,0],["a",e,e,0,0,1,-e,-e],["l",0,e*2-d],["a",e,e,0,0,1,e,-e],["z"]];return[["M",a,b],["l",c,0],["l",0,d],["l",-c,0],["z"]]},bh=function(a,b,c,d){d==null&&(d=c);return[["M",a,b],["m",0,-d],["a",c,d,0,1,1,0,2*d],["a",c,d,0,1,1,0,-2*d],["z"]]},bi=a._getPath={path:function(a){return a.attr("path")},circle:function(a){var b=a.attrs;return bh(b.cx,b.cy,b.r)},ellipse:function(a){var b=a.attrs;return bh(b.cx,b.cy,b.rx,b.ry)},rect:function(a){var b=a.attrs;return bg(b.x,b.y,b.width,b.height,b.r)},image:function(a){var b=a.attrs;return bg(b.x,b.y,b.width,b.height)},text:function(a){var b=a._getBBox();return bg(b.x,b.y,b.width,b.height)}},bj=a.mapPath=function(a,b){if(!b)return a;var c,d,e,f,g,h,i;a=bH(a);for(e=0,g=a.length;e<g;e++){i=a[e];for(f=1,h=i.length;f<h;f+=2)c=b.x(i[f],i[f+1]),d=b.y(i[f],i[f+1]),i[f]=c,i[f+1]=d}return a};a._g=h,a.type=h.win.SVGAngle||h.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML";if(a.type=="VML"){var bk=h.doc.createElement("div"),bl;bk.innerHTML='<v:shape adj="1"/>',bl=bk.firstChild,bl.style.behavior="url(#default#VML)";if(!bl||typeof bl.adj!="object")return a.type=p;bk=null}a.svg=!(a.vml=a.type=="VML"),a._Paper=j,a.fn=k=j.prototype=a.prototype,a._id=0,a._oid=0,a.is=function(a,b){b=v.call(b);if(b=="finite")return!M[g](+a);if(b=="array")return a instanceof Array;return b=="null"&&a===null||b==typeof a&&a!==null||b=="object"&&a===Object(a)||b=="array"&&Array.isArray&&Array.isArray(a)||H.call(a).slice(8,-1).toLowerCase()==b},a.angle=function(b,c,d,e,f,g){if(f==null){var h=b-d,i=c-e;if(!h&&!i)return 0;return(180+w.atan2(-i,-h)*180/B+360)%360}return a.angle(b,c,f,g)-a.angle(d,e,f,g)},a.rad=function(a){return a%360*B/180},a.deg=function(a){return a*180/B%360},a.snapTo=function(b,c,d){d=a.is(d,"finite")?d:10;if(a.is(b,E)){var e=b.length;while(e--)if(z(b[e]-c)<=d)return b[e]}else{b=+b;var f=c%b;if(f<d)return c-f;if(f>b-d)return c-f+b}return c};var bm=a.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g,function(a){var b=w.random()*16|0,c=a=="x"?b:b&3|8;return c.toString(16)});a.setWindow=function(b){eve("setWindow",a,h.win,b),h.win=b,h.doc=h.win.document,a._engine.initWin&&a._engine.initWin(h.win)};var bn=function(b){if(a.vml){var c=/^\s+|\s+$/g,d;try{var e=new ActiveXObject("htmlfile");e.write("<body>"),e.close(),d=e.body}catch(f){d=createPopup().document.body}var g=d.createTextRange();bn=bu(function(a){try{d.style.color=r(a).replace(c,p);var b=g.queryCommandValue("ForeColor");b=(b&255)<<16|b&65280|(b&16711680)>>>16;return"#"+("000000"+b.toString(16)).slice(-6)}catch(e){return"none"}})}else{var i=h.doc.createElement("i");i.title="Raphaël Colour Picker",i.style.display="none",h.doc.body.appendChild(i),bn=bu(function(a){i.style.color=a;return h.doc.defaultView.getComputedStyle(i,p).getPropertyValue("color")})}return bn(b)},bo=function(){return"hsb("+[this.h,this.s,this.b]+")"},bp=function(){return"hsl("+[this.h,this.s,this.l]+")"},bq=function(){return this.hex},br=function(b,c,d){c==null&&a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b&&(d=b.b,c=b.g,b=b.r);if(c==null&&a.is(b,D)){var e=a.getRGB(b);b=e.r,c=e.g,d=e.b}if(b>1||c>1||d>1)b/=255,c/=255,d/=255;return[b,c,d]},bs=function(b,c,d,e){b*=255,c*=255,d*=255;var f={r:b,g:c,b:d,hex:a.rgb(b,c,d),toString:bq};a.is(e,"finite")&&(f.opacity=e);return f};a.color=function(b){var c;a.is(b,"object")&&"h"in b&&"s"in b&&"b"in b?(c=a.hsb2rgb(b),b.r=c.r,b.g=c.g,b.b=c.b,b.hex=c.hex):a.is(b,"object")&&"h"in b&&"s"in b&&"l"in b?(c=a.hsl2rgb(b),b.r=c.r,b.g=c.g,b.b=c.b,b.hex=c.hex):(a.is(b,"string")&&(b=a.getRGB(b)),a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b?(c=a.rgb2hsl(b),b.h=c.h,b.s=c.s,b.l=c.l,c=a.rgb2hsb(b),b.v=c.b):(b={hex:"none"},b.r=b.g=b.b=b.h=b.s=b.v=b.l=-1)),b.toString=bq;return b},a.hsb2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"b"in a&&(c=a.b,b=a.s,a=a.h,d=a.o),a*=360;var e,f,g,h,i;a=a%360/60,i=c*b,h=i*(1-z(a%2-1)),e=f=g=c-i,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a];return bs(e,f,g,d)},a.hsl2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"l"in a&&(c=a.l,b=a.s,a=a.h);if(a>1||b>1||c>1)a/=360,b/=100,c/=100;a*=360;var e,f,g,h,i;a=a%360/60,i=2*b*(c<.5?c:1-c),h=i*(1-z(a%2-1)),e=f=g=c-i/2,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a];return bs(e,f,g,d)},a.rgb2hsb=function(a,b,c){c=br(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g;f=x(a,b,c),g=f-y(a,b,c),d=g==0?null:f==a?(b-c)/g:f==b?(c-a)/g+2:(a-b)/g+4,d=(d+360)%6*60/360,e=g==0?0:g/f;return{h:d,s:e,b:f,toString:bo}},a.rgb2hsl=function(a,b,c){c=br(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g,h,i;g=x(a,b,c),h=y(a,b,c),i=g-h,d=i==0?null:g==a?(b-c)/i:g==b?(c-a)/i+2:(a-b)/i+4,d=(d+360)%6*60/360,f=(g+h)/2,e=i==0?0:f<.5?i/(2*f):i/(2-2*f);return{h:d,s:e,l:f,toString:bp}},a._path2string=function(){return this.join(",").replace(Y,"$1")};var bv=a._preload=function(a,b){var c=h.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em",c.onload=function(){b.call(this),this.onload=null,h.doc.body.removeChild(this)},c.onerror=function(){h.doc.body.removeChild(this)},h.doc.body.appendChild(c),c.src=a};a.getRGB=bu(function(b){if(!b||!!((b=r(b)).indexOf("-")+1))return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:bw};if(b=="none")return{r:-1,g:-1,b:-1,hex:"none",toString:bw};!X[g](b.toLowerCase().substring(0,2))&&b.charAt()!="#"&&(b=bn(b));var c,d,e,f,h,i,j,k=b.match(L);if(k){k[2]&&(f=R(k[2].substring(5),16),e=R(k[2].substring(3,5),16),d=R(k[2].substring(1,3),16)),k[3]&&(f=R((i=k[3].charAt(3))+i,16),e=R((i=k[3].charAt(2))+i,16),d=R((i=k[3].charAt(1))+i,16)),k[4]&&(j=k[4][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),k[1].toLowerCase().slice(0,4)=="rgba"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100));if(k[5]){j=k[5][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360),k[1].toLowerCase().slice(0,4)=="hsba"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsb2rgb(d,e,f,h)}if(k[6]){j=k[6][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360),k[1].toLowerCase().slice(0,4)=="hsla"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsl2rgb(d,e,f,h)}k={r:d,g:e,b:f,toString:bw},k.hex="#"+(16777216|f|e<<8|d<<16).toString(16).slice(1),a.is(h,"finite")&&(k.opacity=h);return k}return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:bw}},a),a.hsb=bu(function(b,c,d){return a.hsb2rgb(b,c,d).hex}),a.hsl=bu(function(b,c,d){return a.hsl2rgb(b,c,d).hex}),a.rgb=bu(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)}),a.getColor=function(a){var b=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75},c=this.hsb2rgb(b.h,b.s,b.b);b.h+=.075,b.h>1&&(b.h=0,b.s-=.2,b.s<=0&&(this.getColor.start={h:0,s:1,b:b.b}));return c.hex},a.getColor.reset=function(){delete this.start},a.parsePathString=bu(function(b){if(!b)return null;var c={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},d=[];a.is(b,E)&&a.is(b[0],E)&&(d=bz(b)),d.length||r(b).replace(Z,function(a,b,e){var f=[],g=b.toLowerCase();e.replace(_,function(a,b){b&&f.push(+b)}),g=="m"&&f.length>2&&(d.push([b][n](f.splice(0,2))),g="l",b=b=="m"?"l":"L");if(g=="r")d.push([b][n](f));else while(f.length>=c[g]){d.push([b][n](f.splice(0,c[g])));if(!c[g])break}}),d.toString=a._path2string;return d}),a.parseTransformString=bu(function(b){if(!b)return null;var c={r:3,s:4,t:2,m:6},d=[];a.is(b,E)&&a.is(b[0],E)&&(d=bz(b)),d.length||r(b).replace($,function(a,b,c){var e=[],f=v.call(b);c.replace(_,function(a,b){b&&e.push(+b)}),d.push([b][n](e))}),d.toString=a._path2string;return d}),a.findDotsAtSegment=function(a,b,c,d,e,f,g,h,i){var j=1-i,k=A(j,3),l=A(j,2),m=i*i,n=m*i,o=k*a+l*3*i*c+j*3*i*i*e+n*g,p=k*b+l*3*i*d+j*3*i*i*f+n*h,q=a+2*i*(c-a)+m*(e-2*c+a),r=b+2*i*(d-b)+m*(f-2*d+b),s=c+2*i*(e-c)+m*(g-2*e+c),t=d+2*i*(f-d)+m*(h-2*f+d),u=j*a+i*c,v=j*b+i*d,x=j*e+i*g,y=j*f+i*h,z=90-w.atan2(q-s,r-t)*180/B;(q>s||r<t)&&(z+=180);return{x:o,y:p,m:{x:q,y:r},n:{x:s,y:t},start:{x:u,y:v},end:{x:x,y:y},alpha:z}},a._removedFactory=function(a){return function(){throw new Error("Raphaël: you are calling to method “"+a+"” of removed object")}};var by=bu(function(a){if(!a)return{x:0,y:0,width:0,height:0};a=bH(a);var b=0,c=0,d=[],e=[],f;for(var g=0,h=a.length;g<h;g++){f=a[g];if(f[0]=="M")b=f[1],c=f[2],d.push(b),e.push(c);else{var i=bG(b,c,f[1],f[2],f[3],f[4],f[5],f[6]);d=d[n](i.min.x,i.max.x),e=e[n](i.min.y,i.max.y),b=f[5],c=f[6]}}var j=y[m](0,d),k=y[m](0,e);return{x:j,y:k,width:x[m](0,d)-j,height:x[m](0,e)-k}},null,function(a){return{x:a.x,y:a.y,width:a.width,height:a.height}}),bz=function(b){var c=[];if(!a.is(b,E)||!a.is(b&&b[0],E))b=a.parsePathString(b);for(var d=0,e=b.length;d<e;d++){c[d]=[];for(var f=0,g=b[d].length;f<g;f++)c[d][f]=b[d][f]}c.toString=a._path2string;return c},bA=a._pathToRelative=bu(function(b){if(!a.is(b,E)||!a.is(b&&b[0],E))b=a.parsePathString(b);var c=[],d=0,e=0,f=0,g=0,h=0;b[0][0]=="M"&&(d=b[0][1],e=b[0][2],f=d,g=e,h++,c.push(["M",d,e]));for(var i=h,j=b.length;i<j;i++){var k=c[i]=[],l=b[i];if(l[0]!=v.call(l[0])){k[0]=v.call(l[0]);switch(k[0]){case"a":k[1]=l[1],k[2]=l[2],k[3]=l[3],k[4]=l[4],k[5]=l[5],k[6]=+(l[6]-d).toFixed(3),k[7]=+(l[7]-e).toFixed(3);break;case"v":k[1]=+(l[1]-e).toFixed(3);break;case"m":f=l[1],g=l[2];default:for(var m=1,n=l.length;m<n;m++)k[m]=+(l[m]-(m%2?d:e)).toFixed(3)}}else{k=c[i]=[],l[0]=="m"&&(f=l[1]+d,g=l[2]+e);for(var o=0,p=l.length;o<p;o++)c[i][o]=l[o]}var q=c[i].length;switch(c[i][0]){case"z":d=f,e=g;break;case"h":d+=+c[i][q-1];break;case"v":e+=+c[i][q-1];break;default:d+=+c[i][q-2],e+=+c[i][q-1]}}c.toString=a._path2string;return c},0,bz),bB=a._pathToAbsolute=bu(function(b){if(!a.is(b,E)||!a.is(b&&b[0],E))b=a.parsePathString(b);if(!b||!b.length)return[["M",0,0]];var c=[],d=0,e=0,f=0,g=0,h=0;b[0][0]=="M"&&(d=+b[0][1],e=+b[0][2],f=d,g=e,h++,c[0]=["M",d,e]);var i=b.length==3&&b[0][0]=="M"&&b[1][0].toUpperCase()=="R"&&b[2][0].toUpperCase()=="Z";for(var j,k,l=h,m=b.length;l<m;l++){c.push(j=[]),k=b[l];if(k[0]!=S.call(k[0])){j[0]=S.call(k[0]);switch(j[0]){case"A":j[1]=k[1],j[2]=k[2],j[3]=k[3],j[4]=k[4],j[5]=k[5],j[6]=+(k[6]+d),j[7]=+(k[7]+e);break;case"V":j[1]=+k[1]+e;break;case"H":j[1]=+k[1]+d;break;case"R":var o=[d,e][n](k.slice(1));for(var p=2,q=o.length;p<q;p++)o[p]=+o[p]+d,o[++p]=+o[p]+e;c.pop(),c=c[n](bx(o,i));break;case"M":f=+k[1]+d,g=+k[2]+e;default:for(p=1,q=k.length;p<q;p++)j[p]=+k[p]+(p%2?d:e)}}else if(k[0]=="R")o=[d,e][n](k.slice(1)),c.pop(),c=c[n](bx(o,i)),j=["R"][n](k.slice(-2));else for(var r=0,s=k.length;r<s;r++)j[r]=k[r];switch(j[0]){case"Z":d=f,e=g;break;case"H":d=j[1];break;case"V":e=j[1];break;case"M":f=j[j.length-2],g=j[j.length-1];default:d=j[j.length-2],e=j[j.length-1]}}c.toString=a._path2string;return c},null,bz),bC=function(a,b,c,d){return[a,b,c,d,c,d]},bD=function(a,b,c,d,e,f){var g=1/3,h=2/3;return[g*a+h*c,g*b+h*d,g*e+h*c,g*f+h*d,e,f]},bE=function(a,b,c,d,e,f,g,h,i,j){var k=B*120/180,l=B/180*(+e||0),m=[],o,p=bu(function(a,b,c){var d=a*w.cos(c)-b*w.sin(c),e=a*w.sin(c)+b*w.cos(c);return{x:d,y:e}});if(!j){o=p(a,b,-l),a=o.x,b=o.y,o=p(h,i,-l),h=o.x,i=o.y;var q=w.cos(B/180*e),r=w.sin(B/180*e),t=(a-h)/2,u=(b-i)/2,v=t*t/(c*c)+u*u/(d*d);v>1&&(v=w.sqrt(v),c=v*c,d=v*d);var x=c*c,y=d*d,A=(f==g?-1:1)*w.sqrt(z((x*y-x*u*u-y*t*t)/(x*u*u+y*t*t))),C=A*c*u/d+(a+h)/2,D=A*-d*t/c+(b+i)/2,E=w.asin(((b-D)/d).toFixed(9)),F=w.asin(((i-D)/d).toFixed(9));E=a<C?B-E:E,F=h<C?B-F:F,E<0&&(E=B*2+E),F<0&&(F=B*2+F),g&&E>F&&(E=E-B*2),!g&&F>E&&(F=F-B*2)}else E=j[0],F=j[1],C=j[2],D=j[3];var G=F-E;if(z(G)>k){var H=F,I=h,J=i;F=E+k*(g&&F>E?1:-1),h=C+c*w.cos(F),i=D+d*w.sin(F),m=bE(h,i,c,d,e,0,g,I,J,[F,H,C,D])}G=F-E;var K=w.cos(E),L=w.sin(E),M=w.cos(F),N=w.sin(F),O=w.tan(G/4),P=4/3*c*O,Q=4/3*d*O,R=[a,b],S=[a+P*L,b-Q*K],T=[h+P*N,i-Q*M],U=[h,i];S[0]=2*R[0]-S[0],S[1]=2*R[1]-S[1];if(j)return[S,T,U][n](m);m=[S,T,U][n](m).join()[s](",");var V=[];for(var W=0,X=m.length;W<X;W++)V[W]=W%2?p(m[W-1],m[W],l).y:p(m[W],m[W+1],l).x;return V},bF=function(a,b,c,d,e,f,g,h,i){var j=1-i;return{x:A(j,3)*a+A(j,2)*3*i*c+j*3*i*i*e+A(i,3)*g,y:A(j,3)*b+A(j,2)*3*i*d+j*3*i*i*f+A(i,3)*h}},bG=bu(function(a,b,c,d,e,f,g,h){var i=e-2*c+a-(g-2*e+c),j=2*(c-a)-2*(e-c),k=a-c,l=(-j+w.sqrt(j*j-4*i*k))/2/i,n=(-j-w.sqrt(j*j-4*i*k))/2/i,o=[b,h],p=[a,g],q;z(l)>"1e12"&&(l=.5),z(n)>"1e12"&&(n=.5),l>0&&l<1&&(q=bF(a,b,c,d,e,f,g,h,l),p.push(q.x),o.push(q.y)),n>0&&n<1&&(q=bF(a,b,c,d,e,f,g,h,n),p.push(q.x),o.push(q.y)),i=f-2*d+b-(h-2*f+d),j=2*(d-b)-2*(f-d),k=b-d,l=(-j+w.sqrt(j*j-4*i*k))/2/i,n=(-j-w.sqrt(j*j-4*i*k))/2/i,z(l)>"1e12"&&(l=.5),z(n)>"1e12"&&(n=.5),l>0&&l<1&&(q=bF(a,b,c,d,e,f,g,h,l),p.push(q.x),o.push(q.y)),n>0&&n<1&&(q=bF(a,b,c,d,e,f,g,h,n),p.push(q.x),o.push(q.y));return{min:{x:y[m](0,p),y:y[m](0,o)},max:{x:x[m](0,p),y:x[m](0,o)}}}),bH=a._path2curve=bu(function(a,b){var c=bB(a),d=b&&bB(b),e={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g=function(a,b){var c,d;if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];!(a[0]in{T:1,Q:1})&&(b.qx=b.qy=null);switch(a[0]){case"M":b.X=a[1],b.Y=a[2];break;case"A":a=["C"][n](bE[m](0,[b.x,b.y][n](a.slice(1))));break;case"S":c=b.x+(b.x-(b.bx||b.x)),d=b.y+(b.y-(b.by||b.y)),a=["C",c,d][n](a.slice(1));break;case"T":b.qx=b.x+(b.x-(b.qx||b.x)),b.qy=b.y+(b.y-(b.qy||b.y)),a=["C"][n](bD(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case"Q":b.qx=a[1],b.qy=a[2],a=["C"][n](bD(b.x,b.y,a[1],a[2],a[3],a[4]));break;case"L":a=["C"][n](bC(b.x,b.y,a[1],a[2]));break;case"H":a=["C"][n](bC(b.x,b.y,a[1],b.y));break;case"V":a=["C"][n](bC(b.x,b.y,b.x,a[1]));break;case"Z":a=["C"][n](bC(b.x,b.y,b.X,b.Y))}return a},h=function(a,b){if(a[b].length>7){a[b].shift();var e=a[b];while(e.length)a.splice(b++,0,["C"][n](e.splice(0,6)));a.splice(b,1),k=x(c.length,d&&d.length||0)}},i=function(a,b,e,f,g){a&&b&&a[g][0]=="M"&&b[g][0]!="M"&&(b.splice(g,0,["M",f.x,f.y]),e.bx=0,e.by=0,e.x=a[g][1],e.y=a[g][2],k=x(c.length,d&&d.length||0))};for(var j=0,k=x(c.length,d&&d.length||0);j<k;j++){c[j]=g(c[j],e),h(c,j),d&&(d[j]=g(d[j],f)),d&&h(d,j),i(c,d,e,f,j),i(d,c,f,e,j);var l=c[j],o=d&&d[j],p=l.length,q=d&&o.length;e.x=l[p-2],e.y=l[p-1],e.bx=Q(l[p-4])||e.x,e.by=Q(l[p-3])||e.y,f.bx=d&&(Q(o[q-4])||f.x),f.by=d&&(Q(o[q-3])||f.y),f.x=d&&o[q-2],f.y=d&&o[q-1]}return d?[c,d]:c},null,bz),bI=a._parseDots=bu(function(b){var c=[];for(var d=0,e=b.length;d<e;d++){var f={},g=b[d].match(/^([^:]*):?([\d\.]*)/);f.color=a.getRGB(g[1]);if(f.color.error)return null;f.color=f.color.hex,g[2]&&(f.offset=g[2]+"%"),c.push(f)}for(d=1,e=c.length-1;d<e;d++)if(!c[d].offset){var h=Q(c[d-1].offset||0),i=0;for(var j=d+1;j<e;j++)if(c[j].offset){i=c[j].offset;break}i||(i=100,j=e),i=Q(i);var k=(i-h)/(j-d+1);for(;d<j;d++)h+=k,c[d].offset=h+"%"}return c}),bJ=a._tear=function(a,b){a==b.top&&(b.top=a.prev),a==b.bottom&&(b.bottom=a.next),a.next&&(a.next.prev=a.prev),a.prev&&(a.prev.next=a.next)},bK=a._tofront=function(a,b){b.top!==a&&(bJ(a,b),a.next=null,a.prev=b.top,b.top.next=a,b.top=a)},bL=a._toback=function(a,b){b.bottom!==a&&(bJ(a,b),a.next=b.bottom,a.prev=null,b.bottom.prev=a,b.bottom=a)},bM=a._insertafter=function(a,b,c){bJ(a,c),b==c.top&&(c.top=a),b.next&&(b.next.prev=a),a.next=b.next,a.prev=b,b.next=a},bN=a._insertbefore=function(a,b,c){bJ(a,c),b==c.bottom&&(c.bottom=a),b.prev&&(b.prev.next=a),a.prev=b.prev,b.prev=a,a.next=b},bO=a._extractTransform=function(b,c){if(c==null)return b._.transform;c=r(c).replace(/\.{3}|\u2026/g,b._.transform||p);var d=a.parseTransformString(c),e=0,f=0,g=0,h=1,i=1,j=b._,k=new bR;j.transform=d||[];if(d)for(var l=0,m=d.length;l<m;l++){var n=d[l],o=n.length,q=r(n[0]).toLowerCase(),s=n[0]!=q,t=s?k.invert():0,u,v,w,x,y;q=="t"&&o==3?s?(u=t.x(0,0),v=t.y(0,0),w=t.x(n[1],n[2]),x=t.y(n[1],n[2]),k.translate(w-u,x-v)):k.translate(n[1],n[2]):q=="r"?o==2?(y=y||b.getBBox(1),k.rotate(n[1],y.x+y.width/2,y.y+y.height/2),e+=n[1]):o==4&&(s?(w=t.x(n[2],n[3]),x=t.y(n[2],n[3]),k.rotate(n[1],w,x)):k.rotate(n[1],n[2],n[3]),e+=n[1]):q=="s"?o==2||o==3?(y=y||b.getBBox(1),k.scale(n[1],n[o-1],y.x+y.width/2,y.y+y.height/2),h*=n[1],i*=n[o-1]):o==5&&(s?(w=t.x(n[3],n[4]),x=t.y(n[3],n[4]),k.scale(n[1],n[2],w,x)):k.scale(n[1],n[2],n[3],n[4]),h*=n[1],i*=n[2]):q=="m"&&o==7&&k.add(n[1],n[2],n[3],n[4],n[5],n[6]),j.dirtyT=1,b.matrix=k}b.matrix=k,j.sx=h,j.sy=i,j.deg=e,j.dx=f=k.e,j.dy=g=k.f,h==1&&i==1&&!e&&j.bbox?(j.bbox.x+=+f,j.bbox.y+=+g):j.dirtyT=1},bP=function(a){var b=a[0];switch(b.toLowerCase()){case"t":return[b,0,0];case"m":return[b,1,0,0,1,0,0];case"r":return a.length==4?[b,0,a[2],a[3]]:[b,0];case"s":return a.length==5?[b,1,1,a[3],a[4]]:a.length==3?[b,1,1]:[b,1]}},bQ=a._equaliseTransform=function(b,c){c=r(c).replace(/\.{3}|\u2026/g,b),b=a.parseTransformString(b)||[],c=a.parseTransformString(c)||[];var d=x(b.length,c.length),e=[],f=[],g=0,h,i,j,k;for(;g<d;g++){j=b[g]||bP(c[g]),k=c[g]||bP(j);if(j[0]!=k[0]||j[0].toLowerCase()=="r"&&(j[2]!=k[2]||j[3]!=k[3])||j[0].toLowerCase()=="s"&&(j[3]!=k[3]||j[4]!=k[4]))return;e[g]=[],f[g]=[];for(h=0,i=x(j.length,k.length);h<i;h++)h in j&&(e[g][h]=j[h]),h in k&&(f[g][h]=k[h])}return{from:e,to:f}};a._getContainer=function(b,c,d,e){var f;f=e==null&&!a.is(b,"object")?h.doc.getElementById(b):b;if(f!=null){if(f.tagName)return c==null?{container:f,width:f.style.pixelWidth||f.offsetWidth,height:f.style.pixelHeight||f.offsetHeight}:{container:f,width:c,height:d};return{container:1,x:b,y:c,width:d,height:e}}},a.pathToRelative=bA,a._engine={},a.path2curve=bH,a.matrix=function(a,b,c,d,e,f){return new bR(a,b,c,d,e,f)},function(b){function d(a){var b=w.sqrt(c(a));a[0]&&(a[0]/=b),a[1]&&(a[1]/=b)}function c(a){return a[0]*a[0]+a[1]*a[1]}b.add=function(a,b,c,d,e,f){var g=[[],[],[]],h=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1]],i=[[a,c,e],[b,d,f],[0,0,1]],j,k,l,m;a&&a instanceof bR&&(i=[[a.a,a.c,a.e],[a.b,a.d,a.f],[0,0,1]]);for(j=0;j<3;j++)for(k=0;k<3;k++){m=0;for(l=0;l<3;l++)m+=h[j][l]*i[l][k];g[j][k]=m}this.a=g[0][0],this.b=g[1][0],this.c=g[0][1],this.d=g[1][1],this.e=g[0][2],this.f=g[1][2]},b.invert=function(){var a=this,b=a.a*a.d-a.b*a.c;return new bR(a.d/b,-a.b/b,-a.c/b,a.a/b,(a.c*a.f-a.d*a.e)/b,(a.b*a.e-a.a*a.f)/b)},b.clone=function(){return new bR(this.a,this.b,this.c,this.d,this.e,this.f)},b.translate=function(a,b){this.add(1,0,0,1,a,b)},b.scale=function(a,b,c,d){b==null&&(b=a),(c||d)&&this.add(1,0,0,1,c,d),this.add(a,0,0,b,0,0),(c||d)&&this.add(1,0,0,1,-c,-d)},b.rotate=function(b,c,d){b=a.rad(b),c=c||0,d=d||0;var e=+w.cos(b).toFixed(9),f=+w.sin(b).toFixed(9);this.add(e,f,-f,e,c,d),this.add(1,0,0,1,-c,-d)},b.x=function(a,b){return a*this.a+b*this.c+this.e},b.y=function(a,b){return a*this.b+b*this.d+this.f},b.get=function(a){return+this[r.fromCharCode(97+a)].toFixed(4)},b.toString=function(){return a.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()},b.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+", Dy="+this.get(5)+", sizingmethod='auto expand')"},b.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]},b.split=function(){var b={};b.dx=this.e,b.dy=this.f;var e=[[this.a,this.c],[this.b,this.d]];b.scalex=w.sqrt(c(e[0])),d(e[0]),b.shear=e[0][0]*e[1][0]+e[0][1]*e[1][1],e[1]=[e[1][0]-e[0][0]*b.shear,e[1][1]-e[0][1]*b.shear],b.scaley=w.sqrt(c(e[1])),d(e[1]),b.shear/=b.scaley;var f=-e[0][1],g=e[1][1];g<0?(b.rotate=a.deg(w.acos(g)),f<0&&(b.rotate=360-b.rotate)):b.rotate=a.deg(w.asin(f)),b.isSimple=!+b.shear.toFixed(9)&&(b.scalex.toFixed(9)==b.scaley.toFixed(9)||!b.rotate),b.isSuperSimple=!+b.shear.toFixed(9)&&b.scalex.toFixed(9)==b.scaley.toFixed(9)&&!b.rotate,b.noRotation=!+b.shear.toFixed(9)&&!b.rotate;return b},b.toTransformString=function(a){var b=a||this[s]();if(b.isSimple){b.scalex=+b.scalex.toFixed(4),b.scaley=+b.scaley.toFixed(4),b.rotate=+b.rotate.toFixed(4);return(b.dx||b.dy?"t"+[b.dx,b.dy]:p)+(b.scalex!=1||b.scaley!=1?"s"+[b.scalex,b.scaley,0,0]:p)+(b.rotate?"r"+[b.rotate,0,0]:p)}return"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}}(bR.prototype);var bS=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);navigator.vendor=="Apple Computer, Inc."&&(bS&&bS[1]<4||navigator.platform.slice(0,2)=="iP")||navigator.vendor=="Google Inc."&&bS&&bS[1]<8?k.safari=function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:k.safari=be;var bT=function(){this.returnValue=!1},bU=function(){return this.originalEvent.preventDefault()},bV=function(){this.cancelBubble=!0},bW=function(){return this.originalEvent.stopPropagation()},bX=function(){if(h.doc.addEventListener)return function(a,b,c,d){var e=o&&u[b]?u[b]:b,f=function(e){var f=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,i=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,j=e.clientX+i,k=e.clientY+f;if(o&&u[g](b))for(var l=0,m=e.targetTouches&&e.targetTouches.length;l<m;l++)if(e.targetTouches[l].target==a){var n=e;e=e.targetTouches[l],e.originalEvent=n,e.preventDefault=bU,e.stopPropagation=bW;break}return c.call(d,e,j,k)};a.addEventListener(e,f,!1);return function(){a.removeEventListener(e,f,!1);return!0}};if(h.doc.attachEvent)return function(a,b,c,d){var e=function(a){a=a||h.win.event;var b=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,e=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,f=a.clientX+e,g=a.clientY+b;a.preventDefault=a.preventDefault||bT,a.stopPropagation=a.stopPropagation||bV;return c.call(d,a,f,g)};a.attachEvent("on"+b,e);var f=function(){a.detachEvent("on"+b,e);return!0};return f}}(),bY=[],bZ=function(a){var b=a.clientX,c=a.clientY,d=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,e=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,f,g=bY.length;while(g--){f=bY[g];if(o){var i=a.touches.length,j;while(i--){j=a.touches[i];if(j.identifier==f.el._drag.id){b=j.clientX,c=j.clientY,(a.originalEvent?a.originalEvent:a).preventDefault();break}}}else a.preventDefault();var k=f.el.node,l,m=k.nextSibling,n=k.parentNode,p=k.style.display;h.win.opera&&n.removeChild(k),k.style.display="none",l=f.el.paper.getElementByPoint(b,c),k.style.display=p,h.win.opera&&(m?n.insertBefore(k,m):n.appendChild(k)),l&&eve("drag.over."+f.el.id,f.el,l),b+=e,c+=d,eve("drag.move."+f.el.id,f.move_scope||f.el,b-f.el._drag.x,c-f.el._drag.y,b,c,a)}},b$=function(b){a.unmousemove(bZ).unmouseup(b$);var c=bY.length,d;while(c--)d=bY[c],d.el._drag={},eve("drag.end."+d.el.id,d.end_scope||d.start_scope||d.move_scope||d.el,b);bY=[]},b_=a.el={};for(var ca=t.length;ca--;)(function(b){a[b]=b_[b]=function(c,d){a.is(c,"function")&&(this.events=this.events||[],this.events.push({name:b,f:c,unbind:bX(this.shape||this.node||h.doc,b,c,d||this)}));return this},a["un"+b]=b_["un"+b]=function(a){var c=this.events||[],d=c.length;while(d--)if(c[d].name==b&&c[d].f==a){c[d].unbind(),c.splice(d,1),!c.length&&delete this.events;return this}return this}})(t[ca]);b_.data=function(b,c){var d=bb[this.id]=bb[this.id]||{};if(arguments.length==1){if(a.is(b,"object")){for(var e in b)b[g](e)&&this.data(e,b[e]);return this}eve("data.get."+this.id,this,d[b],b);return d[b]}d[b]=c,eve("data.set."+this.id,this,c,b);return this},b_.removeData=function(a){a==null?bb[this.id]={}:bb[this.id]&&delete bb[this.id][a];return this},b_.hover=function(a,b,c,d){return this.mouseover(a,c).mouseout(b,d||c)},b_.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};var cb=[];b_.drag=function(b,c,d,e,f,g){function i(i){(i.originalEvent||i).preventDefault();var j=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,k=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft;this._drag.x=i.clientX+k,this._drag.y=i.clientY+j,this._drag.id=i.identifier,!bY.length&&a.mousemove(bZ).mouseup(b$),bY.push({el:this,move_scope:e,start_scope:f,end_scope:g}),c&&eve.on("drag.start."+this.id,c),b&&eve.on("drag.move."+this.id,b),d&&eve.on("drag.end."+this.id,d),eve("drag.start."+this.id,f||e||this,i.clientX+k,i.clientY+j,i)}this._drag={},cb.push({el:this,start:i}),this.mousedown(i);return this},b_.onDragOver=function(a){a?eve.on("drag.over."+this.id,a):eve.unbind("drag.over."+this.id)},b_.undrag=function(){var b=cb.length;while(b--)cb[b].el==this&&(this.unmousedown(cb[b].start),cb.splice(b,1),eve.unbind("drag.*."+this.id));!cb.length&&a.unmousemove(bZ).unmouseup(b$)},k.circle=function(b,c,d){var e=a._engine.circle(this,b||0,c||0,d||0);this.__set__&&this.__set__.push(e);return e},k.rect=function(b,c,d,e,f){var g=a._engine.rect(this,b||0,c||0,d||0,e||0,f||0);this.__set__&&this.__set__.push(g);return g},k.ellipse=function(b,c,d,e){var f=a._engine.ellipse(this,b||0,c||0,d||0,e||0);this.__set__&&this.__set__.push(f);return f},k.path=function(b){b&&!a.is(b,D)&&!a.is(b[0],E)&&(b+=p);var c=a._engine.path(a.format[m](a,arguments),this);this.__set__&&this.__set__.push(c);return c},k.image=function(b,c,d,e,f){var g=a._engine.image(this,b||"about:blank",c||0,d||0,e||0,f||0);this.__set__&&this.__set__.push(g);return g},k.text=function(b,c,d){var e=a._engine.text(this,b||0,c||0,r(d));this.__set__&&this.__set__.push(e);return e},k.set=function(b){!a.is(b,"array")&&(b=Array.prototype.splice.call(arguments,0,arguments.length));var c=new ct(b);this.__set__&&this.__set__.push(c);return c},k.setStart=function(a){this.__set__=a||this.set()},k.setFinish=function(a){var b=this.__set__;delete this.__set__;return b},k.setSize=function(b,c){return a._engine.setSize.call(this,b,c)},k.setViewBox=function(b,c,d,e,f){return a._engine.setViewBox.call(this,b,c,d,e,f)},k.top=k.bottom=null,k.raphael=a;var cc=function(a){var b=a.getBoundingClientRect(),c=a.ownerDocument,d=c.body,e=c.documentElement,f=e.clientTop||d.clientTop||0,g=e.clientLeft||d.clientLeft||0,i=b.top+(h.win.pageYOffset||e.scrollTop||d.scrollTop)-f,j=b.left+(h.win.pageXOffset||e.scrollLeft||d.scrollLeft)-g;return{y:i,x:j}};k.getElementByPoint=function(a,b){var c=this,d=c.canvas,e=h.doc.elementFromPoint(a,b);if(h.win.opera&&e.tagName=="svg"){var f=cc(d),g=d.createSVGRect();g.x=a-f.x,g.y=b-f.y,g.width=g.height=1;var i=d.getIntersectionList(g,null);i.length&&(e=i[i.length-1])}if(!e)return null;while(e.parentNode&&e!=d.parentNode&&!e.raphael)e=e.parentNode;e==c.canvas.parentNode&&(e=d),e=e&&e.raphael?c.getById(e.raphaelid):null;return e},k.getById=function(a){var b=this.bottom;while(b){if(b.id==a)return b;b=b.next}return null},k.forEach=function(a,b){var c=this.bottom;while(c){if(a.call(b,c)===!1)return this;c=c.next}return this},b_.getBBox=function(a){if(this.removed)return{};var b=this._;if(a){if(b.dirty||!b.bboxwt)this.realPath=bi[this.type](this),b.bboxwt=by(this.realPath),b.bboxwt.toString=ce,b.dirty=0;return b.bboxwt}if(b.dirty||b.dirtyT||!b.bbox){if(b.dirty||!this.realPath)b.bboxwt=0,this.realPath=bi[this.type](this);b.bbox=by(bj(this.realPath,this.matrix)),b.bbox.toString=ce,b.dirty=b.dirtyT=0}return b.bbox},b_.clone=function(){if(this.removed)return null;var a=this.paper[this.type]().attr(this.attr());this.__set__&&this.__set__.push(a);return a},b_.glow=function(a){if(this.type=="text")return null;a=a||{};var b={width:(a.width||10)+(+this.attr("stroke-width")||1),fill:a.fill||!1,opacity:a.opacity||.5,offsetx:a.offsetx||0,offsety:a.offsety||0,color:a.color||"#000"},c=b.width/2,d=this.paper,e=d.set(),f=this.realPath||bi[this.type](this);f=this.matrix?bj(f,this.matrix):f;for(var g=1;g<c+1;g++)e.push(d.path(f).attr({stroke:b.color,fill:b.fill?b.color:"none","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":+(b.width/c*g).toFixed(3),opacity:+(b.opacity/c).toFixed(3)}));return e.insertBefore(this).translate(b.offsetx,b.offsety)};var cf={},cg=function(b,c,d,e,f,g,h,i,j){var k=0,l=100,m=[b,c,d,e,f,g,h,i].join(),n=cf[m],o,p;!n&&(cf[m]=n={data:[]}),n.timer&&clearTimeout(n.timer),n.timer=setTimeout(function(){delete cf[m]},2e3);if(j!=null&&!n.precision){var q=cg(b,c,d,e,f,g,h,i);n.precision=~~q*10,n.data=[]}l=n.precision||l;for(var r=0;r<l+1;r++){n.data[r*l]?p=n.data[r*l]:(p=a.findDotsAtSegment(b,c,d,e,f,g,h,i,r/l),n.data[r*l]=p),r&&(k+=A(A(o.x-p.x,2)+A(o.y-p.y,2),.5));if(j!=null&&k>=j)return p;o=p}if(j==null)return k},ch=function(b,c){return function(d,e,f){d=bH(d);var g,h,i,j,k="",l={},m,n=0;for(var o=0,p=d.length;o<p;o++){i=d[o];if(i[0]=="M")g=+i[1],h=+i[2];else{j=cg(g,h,i[1],i[2],i[3],i[4],i[5],i[6]);if(n+j>e){if(c&&!l.start){m=cg(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),k+=["C"+m.start.x,m.start.y,m.m.x,m.m.y,m.x,m.y];if(f)return k;l.start=k,k=["M"+m.x,m.y+"C"+m.n.x,m.n.y,m.end.x,m.end.y,i[5],i[6]].join(),n+=j,g=+i[5],h=+i[6];continue}if(!b&&!c){m=cg(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n);return{x:m.x,y:m.y,alpha:m.alpha}}}n+=j,g=+i[5],h=+i[6]}k+=i.shift()+i}l.end=k,m=b?n:c?l:a.findDotsAtSegment(g,h,i[0],i[1],i[2],i[3],i[4],i[5],1),m.alpha&&(m={x:m.x,y:m.y,alpha:m.alpha});return m}},ci=ch(1),cj=ch(),ck=ch(0,1);a.getTotalLength=ci,a.getPointAtLength=cj,a.getSubpath=function(a,b,c){if(this.getTotalLength(a)-c<1e-6)return ck(a,b).end;var d=ck(a,c,1);return b?ck(d,b).end:d},b_.getTotalLength=function(){if(this.type=="path"){if(this.node.getTotalLength)return this.node.getTotalLength();return ci(this.attrs.path)}},b_.getPointAtLength=function(a){if(this.type=="path")return cj(this.attrs.path,a)},b_.getSubpath=function(b,c){if(this.type=="path")return a.getSubpath(this.attrs.path,b,c)};var cl=a.easing_formulas={linear:function(a){return a},"<":function(a){return A(a,1.7)},">":function(a){return A(a,.48)},"<>":function(a){var b=.48-a/1.04,c=w.sqrt(.1734+b*b),d=c-b,e=A(z(d),1/3)*(d<0?-1:1),f=-c-b,g=A(z(f),1/3)*(f<0?-1:1),h=e+g+.5;return(1-h)*3*h*h+h*h*h},backIn:function(a){var b=1.70158;return a*a*((b+1)*a-b)},backOut:function(a){a=a-1;var b=1.70158;return a*a*((b+1)*a+b)+1},elastic:function(a){if(a==!!a)return a;return A(2,-10*a)*w.sin((a-.075)*2*B/.3)+1},bounce:function(a){var b=7.5625,c=2.75,d;a<1/c?d=b*a*a:a<2/c?(a-=1.5/c,d=b*a*a+.75):a<2.5/c?(a-=2.25/c,d=b*a*a+.9375):(a-=2.625/c,d=b*a*a+.984375);return d}};cl.easeIn=cl["ease-in"]=cl["<"],cl.easeOut=cl["ease-out"]=cl[">"],cl.easeInOut=cl["ease-in-out"]=cl["<>"],cl["back-in"]=cl.backIn,cl["back-out"]=cl.backOut;var cm=[],cn=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,16)},co=function(){var b=+(new Date),c=0;for(;c<cm.length;c++){var d=cm[c];if(d.el.removed||d.paused)continue;var e=b-d.start,f=d.ms,h=d.easing,i=d.from,j=d.diff,k=d.to,l=d.t,m=d.el,o={},p,r={},s;d.initstatus?(e=(d.initstatus*d.anim.top-d.prev)/(d.percent-d.prev)*f,d.status=d.initstatus,delete d.initstatus,d.stop&&cm.splice(c--,1)):d.status=(d.prev+(d.percent-d.prev)*(e/f))/d.anim.top;if(e<0)continue;if(e<f){var t=h(e/f);for(var u in i)if(i[g](u)){switch(U[u]){case C:p=+i[u]+t*f*j[u];break;case"colour":p="rgb("+[cp(O(i[u].r+t*f*j[u].r)),cp(O(i[u].g+t*f*j[u].g)),cp(O(i[u].b+t*f*j[u].b))].join(",")+")";break;case"path":p=[];for(var v=0,w=i[u].length;v<w;v++){p[v]=[i[u][v][0]];for(var x=1,y=i[u][v].length;x<y;x++)p[v][x]=+i[u][v][x]+t*f*j[u][v][x];p[v]=p[v].join(q)}p=p.join(q);break;case"transform":if(j[u].real){p=[];for(v=0,w=i[u].length;v<w;v++){p[v]=[i[u][v][0]];for(x=1,y=i[u][v].length;x<y;x++)p[v][x]=i[u][v][x]+t*f*j[u][v][x]}}else{var z=function(a){return+i[u][a]+t*f*j[u][a]};p=[["m",z(0),z(1),z(2),z(3),z(4),z(5)]]}break;case"csv":if(u=="clip-rect"){p=[],v=4;while(v--)p[v]=+i[u][v]+t*f*j[u][v]}break;default:var A=[][n](i[u]);p=[],v=m.paper.customAttributes[u].length;while(v--)p[v]=+A[v]+t*f*j[u][v]}o[u]=p}m.attr(o),function(a,b,c){setTimeout(function(){eve("anim.frame."+a,b,c)})}(m.id,m,d.anim)}else{(function(b,c,d){setTimeout(function(){eve("anim.frame."+c.id,c,d),eve("anim.finish."+c.id,c,d),a.is(b,"function")&&b.call(c)})})(d.callback,m,d.anim),m.attr(k),cm.splice(c--,1);if(d.repeat>1&&!d.next){for(s in k)k[g](s)&&(r[s]=d.totalOrigin[s]);d.el.attr(r),cs(d.anim,d.el,d.anim.percents[0],null,d.totalOrigin,d.repeat-1)}d.next&&!d.stop&&cs(d.anim,d.el,d.next,null,d.totalOrigin,d.repeat)}}a.svg&&m&&m.paper&&m.paper.safari(),cm.length&&cn(co)},cp=function(a){return a>255?255:a<0?0:a};b_.animateWith=function(b,c,d,e,f,g){var h=this;if(h.removed){g&&g.call(h);return h}var i=d instanceof cr?d:a.animation(d,e,f,g),j,k;cs(i,h,i.percents[0],null,h.attr());for(var l=0,m=cm.length;l<m;l++)if(cm[l].anim==c&&cm[l].el==b){cm[m-1].start=cm[l].start;break}return h},b_.onAnimation=function(a){a?eve.on("anim.frame."+this.id,a):eve.unbind("anim.frame."+this.id);return this},cr.prototype.delay=function(a){var b=new cr(this.anim,this.ms);b.times=this.times,b.del=+a||0;return b},cr.prototype.repeat=function(a){var b=new cr(this.anim,this.ms);b.del=this.del,b.times=w.floor(x(a,0))||1;return b},a.animation=function(b,c,d,e){if(b instanceof cr)return b;if(a.is(d,"function")||!d)e=e||d||null,d=null;b=Object(b),c=+c||0;var f={},h,i;for(i in b)b[g](i)&&Q(i)!=i&&Q(i)+"%"!=i&&(h=!0,f[i]=b[i]);if(!h)return new cr(b,c);d&&(f.easing=d),e&&(f.callback=e);return new cr({100:f},c)},b_.animate=function(b,c,d,e){var f=this;if(f.removed){e&&e.call(f);return f}var g=b instanceof cr?b:a.animation(b,c,d,e);cs(g,f,g.percents[0],null,f.attr());return f},b_.setTime=function(a,b){a&&b!=null&&this.status(a,y(b,a.ms)/a.ms);return this},b_.status=function(a,b){var c=[],d=0,e,f;if(b!=null){cs(a,this,-1,y(b,1));return this}e=cm.length;for(;d<e;d++){f=cm[d];if(f.el.id==this.id&&(!a||f.anim==a)){if(a)return f.status;c.push({anim:f.anim,status:f.status})}}if(a)return 0;return c},b_.pause=function(a){for(var b=0;b<cm.length;b++)cm[b].el.id==this.id&&(!a||cm[b].anim==a)&&eve("anim.pause."+this.id,this,cm[b].anim)!==!1&&(cm[b].paused=!0);return this},b_.resume=function(a){for(var b=0;b<cm.length;b++)if(cm[b].el.id==this.id&&(!a||cm[b].anim==a)){var c=cm[b];eve("anim.resume."+this.id,this,c.anim)!==!1&&(delete c.paused,this.status(c.anim,c.status))}return this},b_.stop=function(a){for(var b=0;b<cm.length;b++)cm[b].el.id==this.id&&(!a||cm[b].anim==a)&&eve("anim.stop."+this.id,this,cm[b].anim)!==!1&&cm.splice(b--,1);return this},b_.toString=function(){return"Raphaël’s object"};var ct=function(a){this.items=[],this.length=0,this.type="set";if(a)for(var b=0,c=a.length;b<c;b++)a[b]&&(a[b].constructor==b_.constructor||a[b].constructor==ct)&&(this[this.items.length]=this.items[this.items.length]=a[b],this.length++)},cu=ct.prototype;cu.push=function(){var a,b;for(var c=0,d=arguments.length;c<d;c++)a=arguments[c],a&&(a.constructor==b_.constructor||a.constructor==ct)&&(b=this.items.length,this[b]=this.items[b]=a,this.length++);return this},cu.pop=function(){this.length&&delete this[this.length--];return this.items.pop()},cu.forEach=function(a,b){for(var c=0,d=this.items.length;c<d;c++)if(a.call(b,this.items[c],c)===!1)return this;return this};for(var cv in b_)b_[g](cv)&&(cu[cv]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a][m](c,b)})}}(cv));cu.attr=function(b,c){if(b&&a.is(b,E)&&a.is(b[0],"object"))for(var d=0,e=b.length;d<e;d++)this.items[d].attr(b[d]);else for(var f=0,g=this.items.length;f<g;f++)this.items[f].attr(b,c);return this},cu.clear=function(){while(this.length)this.pop()},cu.splice=function(a,b,c){a=a<0?x(this.length+a,0):a,b=x(0,y(this.length-a,b));var d=[],e=[],f=[],g;for(g=2;g<arguments.length;g++)f.push(arguments[g]);for(g=0;g<b;g++)e.push(this[a+g]);for(;g<this.length-a;g++)d.push(this[a+g]);var h=f.length;for(g=0;g<h+d.length;g++)this.items[a+g]=this[a+g]=g<h?f[g]:d[g-h];g=this.items.length=this.length-=b-h;while(this[g])delete this[g++];return new ct(e)},cu.exclude=function(a){for(var b=0,c=this.length;b<c;b++)if(this[b]==a){this.splice(b,1);return!0}},cu.animate=function(b,c,d,e){(a.is(d,"function")||!d)&&(e=d||null);var f=this.items.length,g=f,h,i=this,j;if(!f)return this;e&&(j=function(){!--f&&e.call(i)}),d=a.is(d,D)?d:j;var k=a.animation(b,c,d,j);h=this.items[--g].animate(k);while(g--)this.items[g]&&!this.items[g].removed&&this.items[g].animateWith(h,k,k);return this},cu.insertAfter=function(a){var b=this.items.length;while(b--)this.items[b].insertAfter(a);return this},cu.getBBox=function(){var a=[],b=[],c=[],d=[];for(var e=this.items.length;e--;)if(!this.items[e].removed){var f=this.items[e].getBBox();a.push(f.x),b.push(f.y),c.push(f.x+f.width),d.push(f.y+f.height)}a=y[m](0,a),b=y[m](0,b);return{x:a,y:b,width:x[m](0,c)-a,height:x[m](0,d)-b}},cu.clone=function(a){a=new ct;for(var b=0,c=this.items.length;b<c;b++)a.push(this.items[b].clone());return a},cu.toString=function(){return"Raphaël‘s set"},a.registerFont=function(a){if(!a.face)return a;this.fonts=this.fonts||{};var b={w:a.w,face:{},glyphs:{}},c=a.face["font-family"];for(var d in a.face)a.face[g](d)&&(b.face[d]=a.face[d]);this.fonts[c]?this.fonts[c].push(b):this.fonts[c]=[b];if(!a.svg){b.face["units-per-em"]=R(a.face["units-per-em"],10);for(var e in a.glyphs)if(a.glyphs[g](e)){var f=a.glyphs[e];b.glyphs[e]={w:f.w,k:{},d:f.d&&"M"+f.d.replace(/[mlcxtrv]/g,function(a){return{l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"}[a]||"M"})+"z"};if(f.k)for(var h in f.k)f[g](h)&&(b.glyphs[e].k[h]=f.k[h])}}return a},k.getFont=function(b,c,d,e){e=e||"normal",d=d||"normal",c=+c||{normal:400,bold:700,lighter:300,bolder:800}[c]||400;if(!!a.fonts){var f=a.fonts[b];if(!f){var h=new RegExp("(^|\\s)"+b.replace(/[^\w\d\s+!~.:_-]/g,p)+"(\\s|$)","i");for(var i in a.fonts)if(a.fonts[g](i)&&h.test(i)){f=a.fonts[i];break}}var j;if(f)for(var k=0,l=f.length;k<l;k++){j=f[k];if(j.face["font-weight"]==c&&(j.face["font-style"]==d||!j.face["font-style"])&&j.face["font-stretch"]==e)break}return j}},k.print=function(b,d,e,f,g,h,i){h=h||"middle",i=x(y(i||0,1),-1);var j=this.set(),k=r(e)[s](p),l=0,m=p,n;a.is(f,e)&&(f=this.getFont(f));if(f){n=(g||16)/f.face["units-per-em"];var o=f.face.bbox[s](c),q=+o[0],t=+o[1]+(h=="baseline"?o[3]-o[1]+ +f.face.descent:(o[3]-o[1])/2);for(var u=0,v=k.length;u<v;u++){var w=u&&f.glyphs[k[u-1]]||{},z=f.glyphs[k[u]];l+=u?(w.w||f.w)+(w.k&&w.k[k[u]]||0)+f.w*i:0,z&&z.d&&j.push(this.path(z.d).attr({fill:"#000",stroke:"none",transform:[["t",l*n,0]]}))}j.transform(["...s",n,n,q,t,"t",(b-q)/n,(d-t)/n])}return j},k.add=function(b){if(a.is(b,"array")){var c=this.set(),e=0,f=b.length,h;for(;e<f;e++)h=b[e]||{},d[g](h.type)&&c.push(this[h.type]().attr(h))}return c},a.format=function(b,c){var d=a.is(c,E)?[0][n](c):arguments;b&&a.is(b,D)&&d.length-1&&(b=b.replace(e,function(a,b){return d[++b]==null?p:d[b]}));return b||p},a.fullfill=function(){var a=/\{([^\}]+)\}/g,b=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g,c=function(a,c,d){var e=d;c.replace(b,function(a,b,c,d,f){b=b||d,e&&(b in e&&(e=e[b]),typeof e=="function"&&f&&(e=e()))}),e=(e==null||e==d?a:e)+"";return e};return function(b,d){return String(b).replace(a,function(a,b){return c(a,b,d)})}}(),a.ninja=function(){i.was?h.win.Raphael=i.is:delete Raphael;return a},a.st=cu,function(b,c,d){function e(){/in/.test(b.readyState)?setTimeout(e,9):a.eve("DOMload")}b.readyState==null&&b.addEventListener&&(b.addEventListener(c,d=function(){b.removeEventListener(c,d,!1),b.readyState="complete"},!1),b.readyState="loading"),e()}(document,"DOMContentLoaded"),i.was?h.win.Raphael=a:Raphael=a,eve.on("DOMload",function(){b=!0})}(),window.Raphael.svg&&function(a){var b="hasOwnProperty",c=String,d=parseFloat,e=parseInt,f=Math,g=f.max,h=f.abs,i=f.pow,j=/[, ]+/,k=a.eve,l="",m=" ",n="http://www.w3.org/1999/xlink",o={block:"M5,0 0,2.5 5,5z",classic:"M5,0 0,2.5 5,5 3.5,3 3.5,2z",diamond:"M2.5,0 5,2.5 2.5,5 0,2.5z",open:"M6,1 1,3.5 6,6",oval:"M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"},p={};a.toString=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var q=function(d,e){if(e){typeof d=="string"&&(d=q(d));for(var f in e)e[b](f)&&(f.substring(0,6)=="xlink:"?d.setAttributeNS(n,f.substring(6),c(e[f])):d.setAttribute(f,c(e[f])))}else d=a._g.doc.createElementNS("http://www.w3.org/2000/svg",d),d.style&&(d.style.webkitTapHighlightColor="rgba(0,0,0,0)");return d},r=function(b,e){var j="linear",k=b.id+e,m=.5,n=.5,o=b.node,p=b.paper,r=o.style,s=a._g.doc.getElementById(k);if(!s){e=c(e).replace(a._radial_gradient,function(a,b,c){j="radial";if(b&&c){m=d(b),n=d(c);var e=(n>.5)*2-1;i(m-.5,2)+i(n-.5,2)>.25&&(n=f.sqrt(.25-i(m-.5,2))*e+.5)&&n!=.5&&(n=n.toFixed(5)-1e-5*e)}return l}),e=e.split(/\s*\-\s*/);if(j=="linear"){var t=e.shift();t=-d(t);if(isNaN(t))return null;var u=[0,0,f.cos(a.rad(t)),f.sin(a.rad(t))],v=1/(g(h(u[2]),h(u[3]))||1);u[2]*=v,u[3]*=v,u[2]<0&&(u[0]=-u[2],u[2]=0),u[3]<0&&(u[1]=-u[3],u[3]=0)}var w=a._parseDots(e);if(!w)return null;k=k.replace(/[\(\)\s,\xb0#]/g,"_"),b.gradient&&k!=b.gradient.id&&(p.defs.removeChild(b.gradient),delete b.gradient);if(!b.gradient){s=q(j+"Gradient",{id:k}),b.gradient=s,q(s,j=="radial"?{fx:m,fy:n}:{x1:u[0],y1:u[1],x2:u[2],y2:u[3],gradientTransform:b.matrix.invert()}),p.defs.appendChild(s);for(var x=0,y=w.length;x<y;x++)s.appendChild(q("stop",{offset:w[x].offset?w[x].offset:x?"100%":"0%","stop-color":w[x].color||"#fff"}))}}q(o,{fill:"url(#"+k+")",opacity:1,"fill-opacity":1}),r.fill=l,r.opacity=1,r.fillOpacity=1;return 1},s=function(a){var b=a.getBBox(1);q(a.pattern,{patternTransform:a.matrix.invert()+" translate("+b.x+","+b.y+")"})},t=function(d,e,f){if(d.type=="path"){var g=c(e).toLowerCase().split("-"),h=d.paper,i=f?"end":"start",j=d.node,k=d.attrs,m=k["stroke-width"],n=g.length,r="classic",s,t,u,v,w,x=3,y=3,z=5;while(n--)switch(g[n]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":r=g[n];break;case"wide":y=5;break;case"narrow":y=2;break;case"long":x=5;break;case"short":x=2}r=="open"?(x+=2,y+=2,z+=2,u=1,v=f?4:1,w={fill:"none",stroke:k.stroke}):(v=u=x/2,w={fill:k.stroke,stroke:"none"}),d._.arrows?f?(d._.arrows.endPath&&p[d._.arrows.endPath]--,d._.arrows.endMarker&&p[d._.arrows.endMarker]--):(d._.arrows.startPath&&p[d._.arrows.startPath]--,d._.arrows.startMarker&&p[d._.arrows.startMarker]--):d._.arrows={};if(r!="none"){var A="raphael-marker-"+r,B="raphael-marker-"+i+r+x+y;a._g.doc.getElementById(A)?p[A]++:(h.defs.appendChild(q(q("path"),{"stroke-linecap":"round",d:o[r],id:A})),p[A]=1);var C=a._g.doc.getElementById(B),D;C?(p[B]++,D=C.getElementsByTagName("use")[0]):(C=q(q("marker"),{id:B,markerHeight:y,markerWidth:x,orient:"auto",refX:v,refY:y/2}),D=q(q("use"),{"xlink:href":"#"+A,transform:(f?"rotate(180 "+x/2+" "+y/2+") ":l)+"scale("+x/z+","+y/z+")","stroke-width":(1/((x/z+y/z)/2)).toFixed(4)}),C.appendChild(D),h.defs.appendChild(C),p[B]=1),q(D,w);var F=u*(r!="diamond"&&r!="oval");f?(s=d._.arrows.startdx*m||0,t=a.getTotalLength(k.path)-F*m):(s=F*m,t=a.getTotalLength(k.path)-(d._.arrows.enddx*m||0)),w={},w["marker-"+i]="url(#"+B+")";if(t||s)w.d=Raphael.getSubpath(k.path,s,t);q(j,w),d._.arrows[i+"Path"]=A,d._.arrows[i+"Marker"]=B,d._.arrows[i+"dx"]=F,d._.arrows[i+"Type"]=r,d._.arrows[i+"String"]=e}else f?(s=d._.arrows.startdx*m||0,t=a.getTotalLength(k.path)-s):(s=0,t=a.getTotalLength(k.path)-(d._.arrows.enddx*m||0)),d._.arrows[i+"Path"]&&q(j,{d:Raphael.getSubpath(k.path,s,t)}),delete d._.arrows[i+"Path"],delete d._.arrows[i+"Marker"],delete d._.arrows[i+"dx"],delete d._.arrows[i+"Type"],delete d._.arrows[i+"String"];for(w in p)if(p[b](w)&&!p[w]){var G=a._g.doc.getElementById(w);G&&G.parentNode.removeChild(G)}}},u={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},v=function(a,b,d){b=u[c(b).toLowerCase()];if(b){var e=a.attrs["stroke-width"]||"1",f={round:e,square:e,butt:0}[a.attrs["stroke-linecap"]||d["stroke-linecap"]]||0,g=[],h=b.length;while(h--)g[h]=b[h]*e+(h%2?1:-1)*f;q(a.node,{"stroke-dasharray":g.join(",")})}},w=function(d,f){var i=d.node,k=d.attrs,m=i.style.visibility;i.style.visibility="hidden";for(var o in f)if(f[b](o)){if(!a._availableAttrs[b](o))continue;var p=f[o];k[o]=p;switch(o){case"blur":d.blur(p);break;case"href":case"title":case"target":var u=i.parentNode;if(u.tagName.toLowerCase()!="a"){var w=q("a");u.insertBefore(w,i),w.appendChild(i),u=w}o=="target"?u.setAttributeNS(n,"show",p=="blank"?"new":p):u.setAttributeNS(n,o,p);break;case"cursor":i.style.cursor=p;break;case"transform":d.transform(p);break;case"arrow-start":t(d,p);break;case"arrow-end":t(d,p,1);break;case"clip-rect":var x=c(p).split(j);if(x.length==4){d.clip&&d.clip.parentNode.parentNode.removeChild(d.clip.parentNode);var z=q("clipPath"),A=q("rect");z.id=a.createUUID(),q(A,{x:x[0],y:x[1],width:x[2],height:x[3]}),z.appendChild(A),d.paper.defs.appendChild(z),q(i,{"clip-path":"url(#"+z.id+")"}),d.clip=A}if(!p){var B=i.getAttribute("clip-path");if(B){var C=a._g.doc.getElementById(B.replace(/(^url\(#|\)$)/g,l));C&&C.parentNode.removeChild(C),q(i,{"clip-path":l}),delete d.clip}}break;case"path":d.type=="path"&&(q(i,{d:p?k.path=a._pathToAbsolute(p):"M0,0"}),d._.dirty=1,d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1)));break;case"width":i.setAttribute(o,p),d._.dirty=1;if(k.fx)o="x",p=k.x;else break;case"x":k.fx&&(p=-k.x-(k.width||0));case"rx":if(o=="rx"&&d.type=="rect")break;case"cx":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"height":i.setAttribute(o,p),d._.dirty=1;if(k.fy)o="y",p=k.y;else break;case"y":k.fy&&(p=-k.y-(k.height||0));case"ry":if(o=="ry"&&d.type=="rect")break;case"cy":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"r":d.type=="rect"?q(i,{rx:p,ry:p}):i.setAttribute(o,p),d._.dirty=1;break;case"src":d.type=="image"&&i.setAttributeNS(n,"href",p);break;case"stroke-width":if(d._.sx!=1||d._.sy!=1)p/=g(h(d._.sx),h(d._.sy))||1;d.paper._vbSize&&(p*=d.paper._vbSize),i.setAttribute(o,p),k["stroke-dasharray"]&&v(d,k["stroke-dasharray"],f),d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"stroke-dasharray":v(d,p,f);break;case"fill":var D=c(p).match(a._ISURL);if(D){z=q("pattern");var F=q("image");z.id=a.createUUID(),q(z,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1}),q(F,{x:0,y:0,"xlink:href":D[1]}),z.appendChild(F),function(b){a._preload(D[1],function(){var a=this.offsetWidth,c=this.offsetHeight;q(b,{width:a,height:c}),q(F,{width:a,height:c}),d.paper.safari()})}(z),d.paper.defs.appendChild(z),q(i,{fill:"url(#"+z.id+")"}),d.pattern=z,d.pattern&&s(d);break}var G=a.getRGB(p);if(!G.error)delete f.gradient,delete k.gradient,!a.is(k.opacity,"undefined")&&a.is(f.opacity,"undefined")&&q(i,{opacity:k.opacity}),!a.is(k["fill-opacity"],"undefined")&&a.is(f["fill-opacity"],"undefined")&&q(i,{"fill-opacity":k["fill-opacity"]});else if((d.type=="circle"||d.type=="ellipse"||c(p).charAt()!="r")&&r(d,p)){if("opacity"in k||"fill-opacity"in k){var H=a._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l));if(H){var I=H.getElementsByTagName("stop");q(I[I.length-1],{"stop-opacity":("opacity"in k?k.opacity:1)*("fill-opacity"in k?k["fill-opacity"]:1)})}}k.gradient=p,k.fill="none";break}G[b]("opacity")&&q(i,{"fill-opacity":G.opacity>1?G.opacity/100:G.opacity});case"stroke":G=a.getRGB(p),i.setAttribute(o,G.hex),o=="stroke"&&G[b]("opacity")&&q(i,{"stroke-opacity":G.opacity>1?G.opacity/100:G.opacity}),o=="stroke"&&d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"gradient":(d.type=="circle"||d.type=="ellipse"||c(p).charAt()!="r")&&r(d,p);break;case"opacity":k.gradient&&!k[b]("stroke-opacity")&&q(i,{"stroke-opacity":p>1?p/100:p});case"fill-opacity":if(k.gradient){H=a._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l)),H&&(I=H.getElementsByTagName("stop"),q(I[I.length-1],{"stop-opacity":p}));break};default:o=="font-size"&&(p=e(p,10)+"px");var J=o.replace(/(\-.)/g,function(a){return a.substring(1).toUpperCase()});i.style[J]=p,d._.dirty=1,i.setAttribute(o,p)}}y(d,f),i.style.visibility=m},x=1.2,y=function(d,f){if(d.type=="text"&&!!(f[b]("text")||f[b]("font")||f[b]("font-size")||f[b]("x")||f[b]("y"))){var g=d.attrs,h=d.node,i=h.firstChild?e(a._g.doc.defaultView.getComputedStyle(h.firstChild,l).getPropertyValue("font-size"),10):10;if(f[b]("text")){g.text=f.text;while(h.firstChild)h.removeChild(h.firstChild);var j=c(f.text).split("\n"),k=[],m;for(var n=0,o=j.length;n<o;n++)m=q("tspan"),n&&q(m,{dy:i*x,x:g.x}),m.appendChild(a._g.doc.createTextNode(j[n])),h.appendChild(m),k[n]=m}else{k=h.getElementsByTagName("tspan");for(n=0,o=k.length;n<o;n++)n?q(k[n],{dy:i*x,x:g.x}):q(k[0],{dy:0})}q(h,{x:g.x,y:g.y}),d._.dirty=1;var p=d._getBBox(),r=g.y-(p.y+p.height/2);r&&a.is(r,"finite")&&q(k[0],{dy:r})}},z=function(b,c){var d=0,e=0;this[0]=this.node=b,b.raphael=!0,this.id=a._oid++,b.raphaelid=this.id,this.matrix=a.matrix(),this.realPath=null,this.paper=c,this.attrs=this.attrs||{},this._={transform:[],sx:1,sy:1,deg:0,dx:0,dy:0,dirty:1},!c.bottom&&(c.bottom=this),this.prev=c.top,c.top&&(c.top.next=this),c.top=this,this.next=null},A=a.el;z.prototype=A,A.constructor=z,a._engine.path=function(a,b){var c=q("path");b.canvas&&b.canvas.appendChild(c);var d=new z(c,b);d.type="path",w(d,{fill:"none",stroke:"#000",path:a});return d},A.rotate=function(a,b,e){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1]),e=d(a[2])),a=d(a[0]),e==null&&(b=e);if(b==null||e==null){var f=this.getBBox(1);b=f.x+f.width/2,e=f.y+f.height/2}this.transform(this._.transform.concat([["r",a,b,e]]));return this},A.scale=function(a,b,e,f){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1]),e=d(a[2]),f=d(a[3])),a=d(a[0]),b==null&&(b=a),f==null&&(e=f);if(e==null||f==null)var g=this.getBBox(1);e=e==null?g.x+g.width/2:e,f=f==null?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,b,e,f]]));return this},A.translate=function(a,b){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1])),a=d(a[0])||0,b=+b||0,this.transform(this._.transform.concat([["t",a,b]]));return this},A.transform=function(c){var d=this._;if(c==null)return d.transform;a._extractTransform(this,c),this.clip&&q(this.clip,{transform:this.matrix.invert()}),this.pattern&&s(this),this.node&&q(this.node,{transform:this.matrix});if(d.sx!=1||d.sy!=1){var e=this.attrs[b]("stroke-width")?this.attrs["stroke-width"]:1;this.attr({"stroke-width":e})}return this},A.hide=function(){!this.removed&&this.paper.safari(this.node.style.display="none");return this},A.show=function(){!this.removed&&this.paper.safari(this.node.style.display="");return this},A.remove=function(){if(!this.removed){var b=this.paper;b.__set__&&b.__set__.exclude(this),k.unbind("*.*."+this.id),this.gradient&&b.defs.removeChild(this.gradient),a._tear(this,b),this.node.parentNode.tagName.toLowerCase()=="a"?this.node.parentNode.parentNode.removeChild(this.node.parentNode):this.node.parentNode.removeChild(this.node);for(var c in this)this[c]=typeof this[c]=="function"?a._removedFactory(c):null;this.removed=!0}},A._getBBox=function(){if(this.node.style.display=="none"){this.show();var a=!0}var b={};try{b=this.node.getBBox()}catch(c){}finally{b=b||{}}a&&this.hide();return b},A.attr=function(c,d){if(this.removed)return this;if(c==null){var e={};for(var f in this.attrs)this.attrs[b](f)&&(e[f]=this.attrs[f]);e.gradient&&e.fill=="none"&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform;return e}if(d==null&&a.is(c,"string")){if(c=="fill"&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;if(c=="transform")return this._.transform;var g=c.split(j),h={};for(var i=0,l=g.length;i<l;i++)c=g[i],c in this.attrs?h[c]=this.attrs[c]:a.is(this.paper.customAttributes[c],"function")?h[c]=this.paper.customAttributes[c].def:h[c]=a._availableAttrs[c];return l-1?h:h[g[0]]}if(d==null&&a.is(c,"array")){h={};for(i=0,l=c.length;i<l;i++)h[c[i]]=this.attr(c[i]);return h}if(d!=null){var m={};m[c]=d}else c!=null&&a.is(c,"object")&&(m=c);for(var n in m)k("attr."+n+"."+this.id,this,m[n]);for(n in this.paper.customAttributes)if(this.paper.customAttributes[b](n)&&m[b](n)&&a.is(this.paper.customAttributes[n],"function")){var o=this.paper.customAttributes[n].apply(this,[].concat(m[n]));this.attrs[n]=m[n];for(var p in o)o[b](p)&&(m[p]=o[p])}w(this,m);return this},A.toFront=function(){if(this.removed)return this;this.node.parentNode.tagName.toLowerCase()=="a"?this.node.parentNode.parentNode.appendChild(this.node.parentNode):this.node.parentNode.appendChild(this.node);var b=this.paper;b.top!=this&&a._tofront(this,b);return this},A.toBack=function(){if(this.removed)return this;var b=this.node.parentNode;b.tagName.toLowerCase()=="a"?b.parentNode.insertBefore(this.node.parentNode,this.node.parentNode.parentNode.firstChild):b.firstChild!=this.node&&b.insertBefore(this.node,this.node.parentNode.firstChild),a._toback(this,this.paper);var c=this.paper;return this},A.insertAfter=function(b){if(this.removed)return this;var c=b.node||b[b.length-1].node;c.nextSibling?c.parentNode.insertBefore(this.node,c.nextSibling):c.parentNode.appendChild(this.node),a._insertafter(this,b,this.paper);return this},A.insertBefore=function(b){if(this.removed)return this;var c=b.node||b[0].node;c.parentNode.insertBefore(this.node,c),a._insertbefore(this,b,this.paper);return this},A.blur=function(b){var c=this;if(+b!==0){var d=q("filter"),e=q("feGaussianBlur");c.attrs.blur=b,d.id=a.createUUID(),q(e,{stdDeviation:+b||1.5}),d.appendChild(e),c.paper.defs.appendChild(d),c._blur=d,q(c.node,{filter:"url(#"+d.id+")"})}else c._blur&&(c._blur.parentNode.removeChild(c._blur),delete c._blur,delete c.attrs.blur),c.node.removeAttribute("filter")},a._engine.circle=function(a,b,c,d){var e=q("circle");a.canvas&&a.canvas.appendChild(e);var f=new z(e,a);f.attrs={cx:b,cy:c,r:d,fill:"none",stroke:"#000"},f.type="circle",q(e,f.attrs);return f},a._engine.rect=function(a,b,c,d,e,f){var g=q("rect");a.canvas&&a.canvas.appendChild(g);var h=new z(g,a);h.attrs={x:b,y:c,width:d,height:e,r:f||0,rx:f||0,ry:f||0,fill:"none",stroke:"#000"},h.type="rect",q(g,h.attrs);return h},a._engine.ellipse=function(a,b,c,d,e){var f=q("ellipse");a.canvas&&a.canvas.appendChild(f);var g=new z(f,a);g.attrs={cx:b,cy:c,rx:d,ry:e,fill:"none",stroke:"#000"},g.type="ellipse",q(f,g.attrs);return g},a._engine.image=function(a,b,c,d,e,f){var g=q("image");q(g,{x:c,y:d,width:e,height:f,preserveAspectRatio:"none"}),g.setAttributeNS(n,"href",b),a.canvas&&a.canvas.appendChild(g);var h=new z(g,a);h.attrs={x:c,y:d,width:e,height:f,src:b},h.type="image";return h},a._engine.text=function(b,c,d,e){var f=q("text");b.canvas&&b.canvas.appendChild(f);var g=new z(f,b);g.attrs={x:c,y:d,"text-anchor":"middle",text:e,font:a._availableAttrs.font,stroke:"none",fill:"#000"},g.type="text",w(g,g.attrs);return g},a._engine.setSize=function(a,b){this.width=a||this.width,this.height=b||this.height,this.canvas.setAttribute("width",this.width),this.canvas.setAttribute("height",this.height),this._viewBox&&this.setViewBox.apply(this,this._viewBox);return this},a._engine.create=function(){var b=a._getContainer.apply(0,arguments),c=b&&b.container,d=b.x,e=b.y,f=b.width,g=b.height;if(!c)throw new Error("SVG container not found.");var h=q("svg"),i="overflow:hidden;",j;d=d||0,e=e||0,f=f||512,g=g||342,q(h,{height:g,version:1.1,width:f,xmlns:"http://www.w3.org/2000/svg"}),c==1?(h.style.cssText=i+"position:absolute;left:"+d+"px;top:"+e+"px",a._g.doc.body.appendChild(h),j=1):(h.style.cssText=i+"position:relative",c.firstChild?c.insertBefore(h,c.firstChild):c.appendChild(h)),c=new a._Paper,c.width=f,c.height=g,c.canvas=h,c.clear(),c._left=c._top=0,j&&(c.renderfix=function(){}),c.renderfix();return c},a._engine.setViewBox=function(a,b,c,d,e){k("setViewBox",this,this._viewBox,[a,b,c,d,e]);var f=g(c/this.width,d/this.height),h=this.top,i=e?"meet":"xMinYMin",j,l;a==null?(this._vbSize&&(f=1),delete this._vbSize,j="0 0 "+this.width+m+this.height):(this._vbSize=f,j=a+m+b+m+c+m+d),q(this.canvas,{viewBox:j,preserveAspectRatio:i});while(f&&h)l="stroke-width"in h.attrs?h.attrs["stroke-width"]:1,h.attr({"stroke-width":l}),h._.dirty=1,h._.dirtyT=1,h=h.prev;this._viewBox=[a,b,c,d,!!e];return this},a.prototype.renderfix=function(){var a=this.canvas,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}var e=-c.e%1,f=-c.f%1;if(e||f)e&&(this._left=(this._left+e)%1,b.left=this._left+"px"),f&&(this._top=(this._top+f)%1,b.top=this._top+"px")},a.prototype.clear=function(){a.eve("clear",this);var b=this.canvas;while(b.firstChild)b.removeChild(b.firstChild);this.bottom=this.top=null,(this.desc=q("desc")).appendChild(a._g.doc.createTextNode("Created with Raphaël "+a.version)),b.appendChild(this.desc),b.appendChild(this.defs=q("defs"))},a.prototype.remove=function(){k("remove",this),this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null};var B=a.st;for(var C in A)A[b](C)&&!B[b](C)&&(B[C]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(C))}(window.Raphael),window.Raphael.vml&&function(a){var b="hasOwnProperty",c=String,d=parseFloat,e=Math,f=e.round,g=e.max,h=e.min,i=e.abs,j="fill",k=/[, ]+/,l=a.eve,m=" progid:DXImageTransform.Microsoft",n=" ",o="",p={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},q=/([clmz]),?([^clmz]*)/gi,r=/ progid:\S+Blur\([^\)]+\)/g,s=/-?[^,\s-]+/g,t="position:absolute;left:0;top:0;width:1px;height:1px",u=21600,v={path:1,rect:1,image:1},w={circle:1,ellipse:1},x=function(b){var d=/[ahqstv]/ig,e=a._pathToAbsolute;c(b).match(d)&&(e=a._path2curve),d=/[clmz]/g;if(e==a._pathToAbsolute&&!c(b).match(d)){var g=c(b).replace(q,function(a,b,c){var d=[],e=b.toLowerCase()=="m",g=p[b];c.replace(s,function(a){e&&d.length==2&&(g+=d+p[b=="m"?"l":"L"],d=[]),d.push(f(a*u))});return g+d});return g}var h=e(b),i,j;g=[];for(var k=0,l=h.length;k<l;k++){i=h[k],j=h[k][0].toLowerCase(),j=="z"&&(j="x");for(var m=1,r=i.length;m<r;m++)j+=f(i[m]*u)+(m!=r-1?",":o);g.push(j)}return g.join(n)},y=function(b,c,d){var e=a.matrix();e.rotate(-b,.5,.5);return{dx:e.x(c,d),dy:e.y(c,d)}},z=function(a,b,c,d,e,f){var g=a._,h=a.matrix,k=g.fillpos,l=a.node,m=l.style,o=1,p="",q,r=u/b,s=u/c;m.visibility="hidden";if(!!b&&!!c){l.coordsize=i(r)+n+i(s),m.rotation=f*(b*c<0?-1:1);if(f){var t=y(f,d,e);d=t.dx,e=t.dy}b<0&&(p+="x"),c<0&&(p+=" y")&&(o=-1),m.flip=p,l.coordorigin=d*-r+n+e*-s;if(k||g.fillsize){var v=l.getElementsByTagName(j);v=v&&v[0],l.removeChild(v),k&&(t=y(f,h.x(k[0],k[1]),h.y(k[0],k[1])),v.position=t.dx*o+n+t.dy*o),g.fillsize&&(v.size=g.fillsize[0]*i(b)+n+g.fillsize[1]*i(c)),l.appendChild(v)}m.visibility="visible"}};a.toString=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};var A=function(a,b,d){var e=c(b).toLowerCase().split("-"),f=d?"end":"start",g=e.length,h="classic",i="medium",j="medium";while(g--)switch(e[g]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":h=e[g];break;case"wide":case"narrow":j=e[g];break;case"long":case"short":i=e[g]}var k=a.node.getElementsByTagName("stroke")[0];k[f+"arrow"]=h,k[f+"arrowlength"]=i,k[f+"arrowwidth"]=j},B=function(e,i){e.attrs=e.attrs||{};var l=e.node,m=e.attrs,p=l.style,q,r=v[e.type]&&(i.x!=m.x||i.y!=m.y||i.width!=m.width||i.height!=m.height||i.cx!=m.cx||i.cy!=m.cy||i.rx!=m.rx||i.ry!=m.ry||i.r!=m.r),s=w[e.type]&&(m.cx!=i.cx||m.cy!=i.cy||m.r!=i.r||m.rx!=i.rx||m.ry!=i.ry),t=e;for(var y in i)i[b](y)&&(m[y]=i[y]);r&&(m.path=a._getPath[e.type](e),e._.dirty=1),i.href&&(l.href=i.href),i.title&&(l.title=i.title),i.target&&(l.target=i.target),i.cursor&&(p.cursor=i.cursor),"blur"in i&&e.blur(i.blur);if(i.path&&e.type=="path"||r)l.path=x(~c(m.path).toLowerCase().indexOf("r")?a._pathToAbsolute(m.path):m.path),e.type=="image"&&(e._.fillpos=[m.x,m.y],e._.fillsize=[m.width,m.height],z(e,1,1,0,0,0));"transform"in i&&e.transform(i.transform);if(s){var B=+m.cx,D=+m.cy,E=+m.rx||+m.r||0,G=+m.ry||+m.r||0;l.path=a.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",f((B-E)*u),f((D-G)*u),f((B+E)*u),f((D+G)*u),f(B*u))}if("clip-rect"in i){var H=c(i["clip-rect"]).split(k);if(H.length==4){H[2]=+H[2]+ +H[0],H[3]=+H[3]+ +H[1];var I=l.clipRect||a._g.doc.createElement("div"),J=I.style;J.clip=a.format("rect({1}px {2}px {3}px {0}px)",H),l.clipRect||(J.position="absolute",J.top=0,J.left=0,J.width=e.paper.width+"px",J.height=e.paper.height+"px",l.parentNode.insertBefore(I,l),I.appendChild(l),l.clipRect=I)}i["clip-rect"]||l.clipRect&&(l.clipRect.style.clip="auto")}if(e.textpath){var K=e.textpath.style;i.font&&(K.font=i.font),i["font-family"]&&(K.fontFamily='"'+i["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,o)+'"'),i["font-size"]&&(K.fontSize=i["font-size"]),i["font-weight"]&&(K.fontWeight=i["font-weight"]),i["font-style"]&&(K.fontStyle=i["font-style"])}"arrow-start"in i&&A(t,i["arrow-start"]),"arrow-end"in i&&A(t,i["arrow-end"],1);if(i.opacity!=null||i["stroke-width"]!=null||i.fill!=null||i.src!=null||i.stroke!=null||i["stroke-width"]!=null||i["stroke-opacity"]!=null||i["fill-opacity"]!=null||i["stroke-dasharray"]!=null||i["stroke-miterlimit"]!=null||i["stroke-linejoin"]!=null||i["stroke-linecap"]!=null){var L=l.getElementsByTagName(j),M=!1;L=L&&L[0],!L&&(M=L=F(j)),e.type=="image"&&i.src&&(L.src=i.src),i.fill&&(L.on=!0);if(L.on==null||i.fill=="none"||i.fill===null)L.on=!1;if(L.on&&i.fill){var N=c(i.fill).match(a._ISURL);if(N){L.parentNode==l&&l.removeChild(L),L.rotate=!0,L.src=N[1],L.type="tile";var O=e.getBBox(1);L.position=O.x+n+O.y,e._.fillpos=[O.x,O.y],a._preload(N[1],function(){e._.fillsize=[this.offsetWidth,this.offsetHeight]})}else L.color=a.getRGB(i.fill).hex,L.src=o,L.type="solid",a.getRGB(i.fill).error&&(t.type in{circle:1,ellipse:1}||c(i.fill).charAt()!="r")&&C(t,i.fill,L)&&(m.fill="none",m.gradient=i.fill,L.rotate=!1)}if("fill-opacity"in i||"opacity"in i){var P=((+m["fill-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+a.getRGB(i.fill).o+1||2)-1);P=h(g(P,0),1),L.opacity=P,L.src&&(L.color="none")}l.appendChild(L);var Q=l.getElementsByTagName("stroke")&&l.getElementsByTagName("stroke")[0],T=!1;!Q&&(T=Q=F("stroke"));if(i.stroke&&i.stroke!="none"||i["stroke-width"]||i["stroke-opacity"]!=null||i["stroke-dasharray"]||i["stroke-miterlimit"]||i["stroke-linejoin"]||i["stroke-linecap"])Q.on=!0;(i.stroke=="none"||i.stroke===null||Q.on==null||i.stroke==0||i["stroke-width"]==0)&&(Q.on=!1);var U=a.getRGB(i.stroke);Q.on&&i.stroke&&(Q.color=U.hex),P=((+m["stroke-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+U.o+1||2)-1);var V=(d(i["stroke-width"])||1)*.75;P=h(g(P,0),1),i["stroke-width"]==null&&(V=m["stroke-width"]),i["stroke-width"]&&(Q.weight=V),V&&V<1&&(P*=V)&&(Q.weight=1),Q.opacity=P,i["stroke-linejoin"]&&(Q.joinstyle=i["stroke-linejoin"]||"miter"),Q.miterlimit=i["stroke-miterlimit"]||8,i["stroke-linecap"]&&(Q.endcap=i["stroke-linecap"]=="butt"?"flat":i["stroke-linecap"]=="square"?"square":"round");if(i["stroke-dasharray"]){var W={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};Q.dashstyle=W[b](i["stroke-dasharray"])?W[i["stroke-dasharray"]]:o}T&&l.appendChild(Q)}if(t.type=="text"){t.paper.canvas.style.display=o;var X=t.paper.span,Y=100,Z=m.font&&m.font.match(/\d+(?:\.\d*)?(?=px)/);p=X.style,m.font&&(p.font=m.font),m["font-family"]&&(p.fontFamily=m["font-family"]),m["font-weight"]&&(p.fontWeight=m["font-weight"]),m["font-style"]&&(p.fontStyle=m["font-style"]),Z=d(m["font-size"]||Z&&Z[0])||10,p.fontSize=Z*Y+"px",t.textpath.string&&(X.innerHTML=c(t.textpath.string).replace(/</g,"&#60;").replace(/&/g,"&#38;").replace(/\n/g,"<br>"));var $=X.getBoundingClientRect();t.W=m.w=($.right-$.left)/Y,t.H=m.h=($.bottom-$.top)/Y,t.X=m.x,t.Y=m.y+t.H/2,("x"in i||"y"in i)&&(t.path.v=a.format("m{0},{1}l{2},{1}",f(m.x*u),f(m.y*u),f(m.x*u)+1));var _=["x","y","text","font","font-family","font-weight","font-style","font-size"];for(var ba=0,bb=_.length;ba<bb;ba++)if(_[ba]in i){t._.dirty=1;break}switch(m["text-anchor"]){case"start":t.textpath.style["v-text-align"]="left",t.bbx=t.W/2;break;case"end":t.textpath.style["v-text-align"]="right",t.bbx=-t.W/2;break;default:t.textpath.style["v-text-align"]="center",t.bbx=0}t.textpath.style["v-text-kern"]=!0}},C=function(b,f,g){b.attrs=b.attrs||{};var h=b.attrs,i=Math.pow,j,k,l="linear",m=".5 .5";b.attrs.gradient=f,f=c(f).replace(a._radial_gradient,function(a,b,c){l="radial",b&&c&&(b=d(b),c=d(c),i(b-.5,2)+i(c-.5,2)>.25&&(c=e.sqrt(.25-i(b-.5,2))*((c>.5)*2-1)+.5),m=b+n+c);return o}),f=f.split(/\s*\-\s*/);if(l=="linear"){var p=f.shift();p=-d(p);if(isNaN(p))return null}var q=a._parseDots(f);if(!q)return null;b=b.shape||b.node;if(q.length){b.removeChild(g),g.on=!0,g.method="none",g.color=q[0].color,g.color2=q[q.length-1].color;var r=[];for(var s=0,t=q.length;s<t;s++)q[s].offset&&r.push(q[s].offset+n+q[s].color);g.colors=r.length?r.join():"0% "+g.color,l=="radial"?(g.type="gradientTitle",g.focus="100%",g.focussize="0 0",g.focusposition=m,g.angle=0):(g.type="gradient",g.angle=(270-p)%360),b.appendChild(g)}return 1},D=function(b,c){this[0]=this.node=b,b.raphael=!0,this.id=a._oid++,b.raphaelid=this.id,this.X=0,this.Y=0,this.attrs={},this.paper=c,this.matrix=a.matrix(),this._={transform:[],sx:1,sy:1,dx:0,dy:0,deg:0,dirty:1,dirtyT:1},!c.bottom&&(c.bottom=this),this.prev=c.top,c.top&&(c.top.next=this),c.top=this,this.next=null},E=a.el;D.prototype=E,E.constructor=D,E.transform=function(b){if(b==null)return this._.transform;var d=this.paper._viewBoxShift,e=d?"s"+[d.scale,d.scale]+"-1-1t"+[d.dx,d.dy]:o,f;d&&(f=b=c(b).replace(/\.{3}|\u2026/g,this._.transform||o)),a._extractTransform(this,e+b);var g=this.matrix.clone(),h=this.skew,i=this.node,j,k=~c(this.attrs.fill).indexOf("-"),l=!c(this.attrs.fill).indexOf("url(");g.translate(-0.5,-0.5);if(l||k||this.type=="image"){h.matrix="1 0 0 1",h.offset="0 0",j=g.split();if(k&&j.noRotation||!j.isSimple){i.style.filter=g.toFilter();var m=this.getBBox(),p=this.getBBox(1),q=m.x-p.x,r=m.y-p.y;i.coordorigin=q*-u+n+r*-u,z(this,1,1,q,r,0)}else i.style.filter=o,z(this,j.scalex,j.scaley,j.dx,j.dy,j.rotate)}else i.style.filter=o,h.matrix=c(g),h.offset=g.offset();f&&(this._.transform=f);return this},E.rotate=function(a,b,e){if(this.removed)return this;if(a!=null){a=c(a).split(k),a.length-1&&(b=d(a[1]),e=d(a[2])),a=d(a[0]),e==null&&(b=e);if(b==null||e==null){var f=this.getBBox(1);b=f.x+f.width/2,e=f.y+f.height/2}this._.dirtyT=1,this.transform(this._.transform.concat([["r",a,b,e]]));return this}},E.translate=function(a,b){if(this.removed)return this;a=c(a).split(k),a.length-1&&(b=d(a[1])),a=d(a[0])||0,b=+b||0,this._.bbox&&(this._.bbox.x+=a,this._.bbox.y+=b),this.transform(this._.transform.concat([["t",a,b]]));return this},E.scale=function(a,b,e,f){if(this.removed)return this;a=c(a).split(k),a.length-1&&(b=d(a[1]),e=d(a[2]),f=d(a[3]),isNaN(e)&&(e=null),isNaN(f)&&(f=null)),a=d(a[0]),b==null&&(b=a),f==null&&(e=f);if(e==null||f==null)var g=this.getBBox(1);e=e==null?g.x+g.width/2:e,f=f==null?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,b,e,f]])),this._.dirtyT=1;return this},E.hide=function(){!this.removed&&(this.node.style.display="none");return this},E.show=function(){!this.removed&&(this.node.style.display=o);return this},E._getBBox=function(){if(this.removed)return{};return{x:this.X+(this.bbx||0)-this.W/2,y:this.Y-this.H,width:this.W,height:this.H}},E.remove=function(){if(!this.removed){this.paper.__set__&&this.paper.__set__.exclude(this),a.eve.unbind("*.*."+this.id),a._tear(this,this.paper),this.node.parentNode.removeChild(this.node),this.shape&&this.shape.parentNode.removeChild(this.shape);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null;this.removed=!0}},E.attr=function(c,d){if(this.removed)return this;if(c==null){var e={};for(var f in this.attrs)this.attrs[b](f)&&(e[f]=this.attrs[f]);e.gradient&&e.fill=="none"&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform;return e}if(d==null&&a.is(c,"string")){if(c==j&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;var g=c.split(k),h={};for(var i=0,m=g.length;i<m;i++)c=g[i],c in this.attrs?h[c]=this.attrs[c]:a.is(this.paper.customAttributes[c],"function")?h[c]=this.paper.customAttributes[c].def:h[c]=a._availableAttrs[c];return m-1?h:h[g[0]]}if(this.attrs&&d==null&&a.is(c,"array")){h={};for(i=0,m=c.length;i<m;i++)h[c[i]]=this.attr(c[i]);return h}var n;d!=null&&(n={},n[c]=d),d==null&&a.is(c,"object")&&(n=c);for(var o in n)l("attr."+o+"."+this.id,this,n[o]);if(n){for(o in this.paper.customAttributes)if(this.paper.customAttributes[b](o)&&n[b](o)&&a.is(this.paper.customAttributes[o],"function")){var p=this.paper.customAttributes[o].apply(this,[].concat(n[o]));this.attrs[o]=n[o];for(var q in p)p[b](q)&&(n[q]=p[q])}n.text&&this.type=="text"&&(this.textpath.string=n.text),B(this,n)}return this},E.toFront=function(){!this.removed&&this.node.parentNode.appendChild(this.node),this.paper&&this.paper.top!=this&&a._tofront(this,this.paper);return this},E.toBack=function(){if(this.removed)return this;this.node.parentNode.firstChild!=this.node&&(this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild),a._toback(this,this.paper));return this},E.insertAfter=function(b){if(this.removed)return this;b.constructor==a.st.constructor&&(b=b[b.length-1]),b.node.nextSibling?b.node.parentNode.insertBefore(this.node,b.node.nextSibling):b.node.parentNode.appendChild(this.node),a._insertafter(this,b,this.paper);return this},E.insertBefore=function(b){if(this.removed)return this;b.constructor==a.st.constructor&&(b=b[0]),b.node.parentNode.insertBefore(this.node,b.node),a._insertbefore(this,b,this.paper);return this},E.blur=function(b){var c=this.node.runtimeStyle,d=c.filter;d=d.replace(r,o),+b!==0?(this.attrs.blur=b,c.filter=d+n+m+".Blur(pixelradius="+(+b||1.5)+")",c.margin=a.format("-{0}px 0 0 -{0}px",f(+b||1.5))):(c.filter=d,c.margin=0,delete this.attrs.blur)},a._engine.path=function(a,b){var c=F("shape");c.style.cssText=t,c.coordsize=u+n+u,c.coordorigin=b.coordorigin;var d=new D(c,b),e={fill:"none",stroke:"#000"};a&&(e.path=a),d.type="path",d.path=[],d.Path=o,B(d,e),b.canvas.appendChild(c);var f=F("skew");f.on=!0,c.appendChild(f),d.skew=f,d.transform(o);return d},a._engine.rect=function(b,c,d,e,f,g){var h=a._rectPath(c,d,e,f,g),i=b.path(h),j=i.attrs;i.X=j.x=c,i.Y=j.y=d,i.W=j.width=e,i.H=j.height=f,j.r=g,j.path=h,i.type="rect";return i},a._engine.ellipse=function(a,b,c,d,e){var f=a.path(),g=f.attrs;f.X=b-d,f.Y=c-e,f.W=d*2,f.H=e*2,f.type="ellipse",B(f,{cx:b,cy:c,rx:d,ry:e});return f},a._engine.circle=function(a,b,c,d){var e=a.path(),f=e.attrs;e.X=b-d,e.Y=c-d,e.W=e.H=d*2,e.type="circle",B(e,{cx:b,cy:c,r:d});return e},a._engine.image=function(b,c,d,e,f,g){var h=a._rectPath(d,e,f,g),i=b.path(h).attr({stroke:"none"}),k=i.attrs,l=i.node,m=l.getElementsByTagName(j)[0];k.src=c,i.X=k.x=d,i.Y=k.y=e,i.W=k.width=f,i.H=k.height=g,k.path=h,i.type="image",m.parentNode==l&&l.removeChild(m),m.rotate=!0,m.src=c,m.type="tile",i._.fillpos=[d,e],i._.fillsize=[f,g],l.appendChild(m),z(i,1,1,0,0,0);return i},a._engine.text=function(b,d,e,g){var h=F("shape"),i=F("path"),j=F("textpath");d=d||0,e=e||0,g=g||"",i.v=a.format("m{0},{1}l{2},{1}",f(d*u),f(e*u),f(d*u)+1),i.textpathok=!0,j.string=c(g),j.on=!0,h.style.cssText=t,h.coordsize=u+n+u,h.coordorigin="0 0";var k=new D(h,b),l={fill:"#000",stroke:"none",font:a._availableAttrs.font,text:g};k.shape=h,k.path=i,k.textpath=j,k.type="text",k.attrs.text=c(g),k.attrs.x=d,k.attrs.y=e,k.attrs.w=1,k.attrs.h=1,B(k,l),h.appendChild(j),h.appendChild(i),b.canvas.appendChild(h);var m=F("skew");m.on=!0,h.appendChild(m),k.skew=m,k.transform(o);return k},a._engine.setSize=function(b,c){var d=this.canvas.style;this.width=b,this.height=c,b==+b&&(b+="px"),c==+c&&(c+="px"),d.width=b,d.height=c,d.clip="rect(0 "+b+" "+c+" 0)",this._viewBox&&a._engine.setViewBox.apply(this,this._viewBox);return this},a._engine.setViewBox=function(b,c,d,e,f){a.eve("setViewBox",this,this._viewBox,[b,c,d,e,f]);var h=this.width,i=this.height,j=1/g(d/h,e/i),k,l;f&&(k=i/e,l=h/d,d*k<h&&(b-=(h-d*k)/2/k),e*l<i&&(c-=(i-e*l)/2/l)),this._viewBox=[b,c,d,e,!!f],this._viewBoxShift={dx:-b,dy:-c,scale:j},this.forEach(function(a){a.transform("...")});return this};var F;a._engine.initWin=function(a){var b=a.document;b.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");try{!b.namespaces.rvml&&b.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),F=function(a){return b.createElement("<rvml:"+a+' class="rvml">')}}catch(c){F=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},a._engine.initWin(a._g.win),a._engine.create=function(){var b=a._getContainer.apply(0,arguments),c=b.container,d=b.height,e,f=b.width,g=b.x,h=b.y;if(!c)throw new Error("VML container not found.");var i=new a._Paper,j=i.canvas=a._g.doc.createElement("div"),k=j.style;g=g||0,h=h||0,f=f||512,d=d||342,i.width=f,i.height=d,f==+f&&(f+="px"),d==+d&&(d+="px"),i.coordsize=u*1e3+n+u*1e3,i.coordorigin="0 0",i.span=a._g.doc.createElement("span"),i.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",j.appendChild(i.span),k.cssText=a.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",f,d),c==1?(a._g.doc.body.appendChild(j),k.left=g+"px",k.top=h+"px",k.position="absolute"):c.firstChild?c.insertBefore(j,c.firstChild):c.appendChild(j),i.renderfix=function(){};return i},a.prototype.clear=function(){a.eve("clear",this),this.canvas.innerHTML=o,this.span=a._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},a.prototype.remove=function(){a.eve("remove",this),this.canvas.parentNode.removeChild(this.canvas);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null;return!0};var G=a.st;for(var H in E)E[b](H)&&!G[b](H)&&(G[H]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(H))}(window.Raphael)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'erubis' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'erubis', version
23
+ load Gem.bin_path('erubis', 'erubis', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'rack' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'rack', version
23
+ load Gem.bin_path('rack', 'rackup', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'railties' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'railties', version
23
+ load Gem.bin_path('railties', 'rails', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'rake', version
23
+ load Gem.bin_path('rake', 'rake', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'thor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'thor', version
23
+ load Gem.bin_path('thor', 'rake2thor', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'rdoc' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'rdoc', version
23
+ load Gem.bin_path('rdoc', 'rdoc', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'rdoc' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'rdoc', version
23
+ load Gem.bin_path('rdoc', 'ri', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'sprockets' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'sprockets', version
23
+ load Gem.bin_path('sprockets', 'sprockets', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'thor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'thor', version
23
+ load Gem.bin_path('thor', 'thor', version)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by RubyGems.
4
+ #
5
+ # The application 'tilt' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'rubygems'
10
+
11
+ version = ">= 0"
12
+
13
+ if ARGV.first
14
+ str = ARGV.first
15
+ str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16
+ if str =~ /\A_(.*)_\z/
17
+ version = $1
18
+ ARGV.shift
19
+ end
20
+ end
21
+
22
+ gem 'tilt', version
23
+ load Gem.bin_path('tilt', 'tilt', version)
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,447 @@
1
+ ## Rails 3.2.11 ##
2
+
3
+ * Strip nils from collections on JSON and XML posts. [CVE-2013-0155]
4
+
5
+ ## Rails 3.2.10 ##
6
+
7
+ ## Rails 3.2.9 (Nov 12, 2012) ##
8
+
9
+ * Clear url helpers when reloading routes.
10
+
11
+ *Santiago Pastorino*
12
+
13
+ * Revert the shorthand routes scoped with `:module` option fix
14
+ This added a regression since it is changing the URL mapping.
15
+ This makes the stable release backward compatible.
16
+
17
+ *Rafael Mendonça França*
18
+
19
+ * Revert the `assert_template` fix to not pass with ever string that matches the template name.
20
+ This added a regression since people were relying on this buggy behavior.
21
+ This will introduce back #3849 but this stable release will be backward compatible.
22
+ Fixes #8068.
23
+
24
+ *Rafael Mendonça França*
25
+
26
+ * Revert the rename of internal variable on ActionController::TemplateAssertions to prevent
27
+ naming collisions. This added a regression related with shoulda-matchers, since it is
28
+ expecting the [instance variable @layouts](https://github.com/thoughtbot/shoulda-matchers/blob/9e1188eea68c47d9a56ce6280e45027da6187ab1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb#L74).
29
+ This will introduce back #7459 but this stable release will be backward compatible.
30
+ Fixes #8068.
31
+
32
+ *Rafael Mendonça França*
33
+
34
+ * Accept :remote as symbolic option for `link_to` helper. *Riley Lynch*
35
+
36
+ * Warn when the `:locals` option is passed to `assert_template` outside of a view test case
37
+ Fix #3415
38
+
39
+ *Yves Senn*
40
+
41
+ * Rename internal variables on ActionController::TemplateAssertions to prevent
42
+ naming collisions. @partials, @templates and @layouts are now prefixed with an underscore.
43
+ Fix #7459
44
+
45
+ *Yves Senn*
46
+
47
+ * `resource` and `resources` don't modify the passed options hash
48
+ Fix #7777
49
+
50
+ *Yves Senn*
51
+
52
+ * Precompiled assets include aliases from foo.js to foo/index.js and vice versa.
53
+
54
+ # Precompiles phone-<digest>.css and aliases phone/index.css to phone.css.
55
+ config.assets.precompile = [ 'phone.css' ]
56
+
57
+ # Precompiles phone/index-<digest>.css and aliases phone.css to phone/index.css.
58
+ config.assets.precompile = [ 'phone/index.css' ]
59
+
60
+ # Both of these work with either precompile thanks to their aliases.
61
+ <%= stylesheet_link_tag 'phone', media: 'all' %>
62
+ <%= stylesheet_link_tag 'phone/index', media: 'all' %>
63
+
64
+ *Jeremy Kemper*
65
+
66
+ * `assert_template` is no more passing with what ever string that matches
67
+ with the template name.
68
+
69
+ Before when we have a template `/layout/hello.html.erb`, `assert_template`
70
+ was passing with any string that matches. This behavior allowed false
71
+ positive like:
72
+
73
+ assert_template "layout"
74
+ assert_template "out/hello"
75
+
76
+ Now it only passes with:
77
+
78
+ assert_template "layout/hello"
79
+ assert_template "hello"
80
+
81
+ Fixes #3849.
82
+
83
+ *Hugolnx*
84
+
85
+ * Handle `ActionDispatch::Http::UploadedFile` like `Rack::Test::UploadedFile`, don't call to_param on it. Since
86
+ `Rack::Test::UploadedFile` isn't API compatible this is needed to test file uploads that rely on `tempfile`
87
+ being available.
88
+
89
+ *Tim Vandecasteele*
90
+
91
+ * Respect `config.digest = false` for `asset_path`
92
+
93
+ Previously, the `asset_path` internals only respected the `:digest`
94
+ option, but ignored the global config setting. This meant that
95
+ `config.digest = false` could not be used in conjunction with
96
+ `config.compile = false` this corrects the behavior.
97
+
98
+ *Peter Wagenet*
99
+
100
+ * Fix #7646, the log now displays the correct status code when an exception is raised.
101
+
102
+ *Yves Senn*
103
+
104
+ * Fix handling of date selects when using both disabled and discard options.
105
+ Fixes #7431.
106
+
107
+ *Vasiliy Ermolovich*
108
+
109
+ * Fix select_tag when option_tags is nil.
110
+ Fixes #7404.
111
+
112
+ *Sandeep Ravichandran*
113
+
114
+ * `javascript_include_tag :all` will now not include `application.js` if the file does not exists. *Prem Sichanugrist*
115
+
116
+ * Support cookie jar options (e.g., domain :all) for all session stores.
117
+ Fixes GH#3047, GH#2483.
118
+
119
+ *Ravil Bayramgalin*
120
+
121
+ * Performance Improvement to send_file: Avoid having to pass an open file handle as the response body. Rack::Sendfile
122
+ will usually intercept the response and just uses the path directly, so no reason to open the file. This performance
123
+ improvement also resolves an issue with jRuby encodings, and is the reason for the backport, see issue #6844.
124
+
125
+ *Jeremy Kemper & Erich Menge*
126
+
127
+
128
+ ## Rails 3.2.8 (Aug 9, 2012) ##
129
+
130
+ * There is an XSS vulnerability in the strip_tags helper in Ruby on Rails, the
131
+ helper doesn't correctly handle malformed html. As a result an attacker can
132
+ execute arbitrary javascript through the use of specially crafted malformed
133
+ html.
134
+
135
+ *Marek from Nethemba (www.nethemba.com) & Santiago Pastorino*
136
+
137
+ * When a "prompt" value is supplied to the `select_tag` helper, the "prompt" value is not escaped.
138
+ If untrusted data is not escaped, and is supplied as the prompt value, there is a potential for XSS attacks.
139
+ Vulnerable code will look something like this:
140
+ select_tag("name", options, :prompt => UNTRUSTED_INPUT)
141
+
142
+ *Santiago Pastorino*
143
+
144
+ * Reverted the deprecation of `:confirm`. *Rafael Mendonça França*
145
+
146
+ * Reverted the deprecation of `:disable_with`. *Rafael Mendonça França*
147
+
148
+ * Reverted the deprecation of `:mouseover` option to `image_tag`. *Rafael Mendonça França*
149
+
150
+ * Reverted the deprecation of `button_to_function` and `link_to_function` helpers.
151
+
152
+ *Rafael Mendonça França*
153
+
154
+
155
+ ## Rails 3.2.7 (Jul 26, 2012) ##
156
+
157
+ * Do not convert digest auth strings to symbols. CVE-2012-3424
158
+
159
+ * Bump Journey requirements to 1.0.4
160
+
161
+ * Add support for optional root segments containing slashes
162
+
163
+ * Fixed bug creating invalid HTML in select options
164
+
165
+ * Show in log correct wrapped keys
166
+
167
+ * Fix NumberHelper options wrapping to prevent verbatim blocks being rendered instead of line continuations.
168
+
169
+ * ActionController::Metal doesn't have logger method, check it and then delegate
170
+
171
+ * ActionController::Caching depends on RackDelegation and AbstractController::Callbacks
172
+
173
+
174
+ ## Rails 3.2.6 (Jun 12, 2012) ##
175
+
176
+ * nil is removed from array parameter values
177
+
178
+ CVE-2012-2694
179
+
180
+ * Deprecate `:confirm` in favor of `':data => { :confirm => "Text" }'` option for `button_to`, `button_tag`, `image_submit_tag`, `link_to` and `submit_tag` helpers.
181
+
182
+ *Carlos Galdino*
183
+
184
+ * Allow to use mounted_helpers (helpers for accessing mounted engines) in ActionView::TestCase. *Piotr Sarnacki*
185
+
186
+ * Include mounted_helpers (helpers for accessing mounted engines) in ActionDispatch::IntegrationTest by default. *Piotr Sarnacki*
187
+
188
+
189
+ ## Rails 3.2.5 (Jun 1, 2012) ##
190
+
191
+ * No changes.
192
+
193
+
194
+ ## Rails 3.2.4 (May 31, 2012) ##
195
+
196
+ * Deprecate old APIs for highlight, excerpt and word_wrap *Jeremy Walker*
197
+
198
+ * Deprecate `:disable_with` in favor of `'data-disable-with'` option for `button_to`, `button_tag` and `submit_tag` helpers.
199
+
200
+ *Carlos Galdino + Rafael Mendonça França*
201
+
202
+ * Deprecate `:mouseover` option for `image_tag` helper. *Rafael Mendonça França*
203
+
204
+ * Deprecate `button_to_function` and `link_to_function` helpers. *Rafael Mendonça França*
205
+
206
+ * Don't break Haml with textarea newline fix. GH #393, #4000, #5190, #5191
207
+
208
+ * Fix options handling on labels. GH #2492, #5614
209
+
210
+ * Added config.action_view.embed_authenticity_token_in_remote_forms to deal
211
+ with regression from 16ee611fa
212
+
213
+ * Set rendered_format when doing render :inline. GH #5632
214
+
215
+ * Fix the redirect when it receive blocks with arity of 1. Closes #5677
216
+
217
+ * Strip [nil] from parameters hash. Thanks to Ben Murphy for
218
+ reporting this! CVE-2012-2660
219
+
220
+
221
+ ## Rails 3.2.3 (March 30, 2012) ##
222
+
223
+ * Allow to lazy load `default_form_builder` by passing a `String` instead of a constant. *Piotr Sarnacki*
224
+
225
+ * Fix #5632, render :inline set the proper rendered format. *Santiago Pastorino*
226
+
227
+ * Fix textarea rendering when using plugins like HAML. Such plugins encode the first newline character in the content. This issue was introduced in https://github.com/rails/rails/pull/5191 *James Coleman*
228
+
229
+ * Remove the leading \n added by textarea on assert_select. *Santiago Pastorino*
230
+
231
+ * Add `config.action_view.embed_authenticity_token_in_remote_forms` (defaults to true) which allows to set if authenticity token will be included by default in remote forms. If you change it to false, you can still force authenticity token by passing `:authenticity_token => true` in form options *Piotr Sarnacki*
232
+
233
+ * Do not include the authenticity token in forms where remote: true as ajax forms use the meta-tag value *DHH*
234
+
235
+ * Turn off verbose mode of rack-cache, we still have X-Rack-Cache to
236
+ check that info. Closes #5245. *Santiago Pastorino*
237
+
238
+ * Fix #5238, rendered_format is not set when template is not rendered. *Piotr Sarnacki*
239
+
240
+ * Upgrade rack-cache to 1.2. *José Valim*
241
+
242
+ * ActionController::SessionManagement is deprecated. *Santiago Pastorino*
243
+
244
+ * Since the router holds references to many parts of the system like engines, controllers and the application itself, inspecting the route set can actually be really slow, therefore we default alias inspect to to_s. *José Valim*
245
+
246
+ * Add a new line after the textarea opening tag. Closes #393 *Rafael Mendonça França*
247
+
248
+ * Always pass a respond block from to responder. We should let the responder to decide what to do with the given overridden response block, and not short circuit it. *sikachu*
249
+
250
+ * Fixes layout rendering regression from 3.2.2. *José Valim*
251
+
252
+
253
+ ## Rails 3.2.2 (March 1, 2012) ##
254
+
255
+ * Format lookup for partials is derived from the format in which the template is being rendered. Closes #5025 part 2 *Santiago Pastorino*
256
+
257
+ * Use the right format when a partial is missing. Closes #5025. *Santiago Pastorino*
258
+
259
+ * Default responder will now always use your overridden block in `respond_with` to render your response. *Prem Sichanugrist*
260
+
261
+ * check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form.
262
+ This is a behavior change, previously the hidden tag had a value of the disabled checkbox.
263
+ *Tadas Tamosauskas*
264
+
265
+
266
+ ## Rails 3.2.1 (January 26, 2012) ##
267
+
268
+ * Documentation improvements.
269
+
270
+ * Allow `form.select` to accept ranges (regression). *Jeremy Walker*
271
+
272
+ * `datetime_select` works with -/+ infinity dates. *Joe Van Dyk*
273
+
274
+
275
+ ## Rails 3.2.0 (January 20, 2012) ##
276
+
277
+ * Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*
278
+
279
+ * Add `config.action_dispatch.default_charset` to configure default charset for ActionDispatch::Response. *Carlos Antonio da Silva*
280
+
281
+ * Deprecate setting default charset at controller level, use the new `config.action_dispatch.default_charset` instead. *Carlos Antonio da Silva*
282
+
283
+ * Deprecate ActionController::UnknownAction in favour of AbstractController::ActionNotFound. *Carlos Antonio da Silva*
284
+
285
+ * Deprecate ActionController::DoubleRenderError in favour of AbstractController::DoubleRenderError. *Carlos Antonio da Silva*
286
+
287
+ * Deprecate method_missing handling for not found actions, use action_missing instead. *Carlos Antonio da Silva*
288
+
289
+ * Deprecate ActionController#rescue_action, ActionController#initialize_template_class, and ActionController#assign_shortcuts.
290
+ These methods were not being used internally anymore and are going to be removed in Rails 4. *Carlos Antonio da Silva*
291
+
292
+ * Add config.assets.logger to configure Sprockets logger *Rafael França*
293
+
294
+ * Use a BodyProxy instead of including a Module that responds to
295
+ close. Closes #4441 if Active Record is disabled assets are delivered
296
+ correctly *Santiago Pastorino*
297
+
298
+ * Rails initialization with initialize_on_precompile = false should set assets_dir *Santiago Pastorino*
299
+
300
+ * Add font_path helper method *Santiago Pastorino*
301
+
302
+ * Depends on rack ~> 1.4.0 *Santiago Pastorino*
303
+
304
+ * Add :gzip option to `caches_page`. The default option can be configured globally using `page_cache_compression` *Andrey Sitnik*
305
+
306
+ * The ShowExceptions middleware now accepts a exceptions application that is responsible to render an exception when the application fails. The application is invoked with a copy of the exception in `env["action_dispatch.exception"]` and with the PATH_INFO rewritten to the status code. *José Valim*
307
+
308
+ * Add `button_tag` support to ActionView::Helpers::FormBuilder.
309
+
310
+ This support mimics the default behavior of `submit_tag`.
311
+
312
+ Example:
313
+
314
+ <%= form_for @post do |f| %>
315
+ <%= f.button %>
316
+ <% end %>
317
+
318
+ * Date helpers accept a new option, `:use_two_digit_numbers = true`, that renders select boxes for months and days with a leading zero without changing the respective values.
319
+ For example, this is useful for displaying ISO8601-style dates such as '2011-08-01'. *Lennart Fridén and Kim Persson*
320
+
321
+ * Make ActiveSupport::Benchmarkable a default module for ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH*
322
+
323
+ * Deprecated implied layout lookup in controllers whose parent had a explicit layout set:
324
+
325
+ class ApplicationController
326
+ layout "application"
327
+ end
328
+
329
+ class PostsController < ApplicationController
330
+ end
331
+
332
+ In the example above, Posts controller will no longer automatically look up for a posts layout.
333
+
334
+ If you need this functionality you could either remove `layout "application"` from ApplicationController or explicitly set it to nil in PostsController. *José Valim*
335
+
336
+ * Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail. *Prem Sichanugrist*
337
+
338
+ For example, consider this snippet:
339
+
340
+ class CarsController
341
+ layout 'single_car', :only => :show
342
+ end
343
+
344
+ Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.
345
+
346
+ * form_for with +:as+ option uses "#{action}_#{as}" as css class and id:
347
+
348
+ Before:
349
+
350
+ form_for(@user, :as => 'client') # => "<form class="client_new">..."
351
+
352
+ Now:
353
+
354
+ form_for(@user, :as => 'client') # => "<form class="new_client">..."
355
+
356
+ *Vasiliy Ermolovich*
357
+
358
+ * Allow rescue responses to be configured through a railtie as in `config.action_dispatch.rescue_responses`. Please look at ActiveRecord::Railtie for an example *José Valim*
359
+
360
+ * Allow fresh_when/stale? to take a record instead of an options hash *DHH*
361
+
362
+ * Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother*
363
+
364
+ * Log "Filter chain halted as CALLBACKNAME rendered or redirected" every time a before callback halts *José Valim*
365
+
366
+ * You can provide a namespace for your form to ensure uniqueness of id attributes on form elements.
367
+ The namespace attribute will be prefixed with underscore on the generate HTML id. *Vasiliy Ermolovich*
368
+
369
+ Example:
370
+
371
+ <%= form_for(@offer, :namespace => 'namespace') do |f| %>
372
+ <%= f.label :version, 'Version' %>:
373
+ <%= f.text_field :version %>
374
+ <% end %>
375
+
376
+ * Refactor ActionDispatch::ShowExceptions. The controller is responsible for choosing to show exceptions when `consider_all_requests_local` is false.
377
+
378
+ It's possible to override `show_detailed_exceptions?` in controllers to specify which requests should provide debugging information on errors. The default value is now false, meaning local requests in production will no longer show the detailed exceptions page unless `show_detailed_exceptions?` is overridden and set to `request.local?`.
379
+
380
+ * Responders now return 204 No Content for API requests without a response body (as in the new scaffold) *José Valim*
381
+
382
+ * Added ActionDispatch::RequestId middleware that'll make a unique X-Request-Id header available to the response and enables the ActionDispatch::Request#uuid method. This makes it easy to trace requests from end-to-end in the stack and to identify individual requests in mixed logs like Syslog *DHH*
383
+
384
+ * Limit the number of options for select_year to 1000.
385
+
386
+ Pass the :max_years_allowed option to set your own limit.
387
+
388
+ *Libo Cannici*
389
+
390
+ * Passing formats or handlers to render :template and friends is deprecated. For example: *Nick Sutterer & José Valim*
391
+
392
+ render :template => "foo.html.erb"
393
+
394
+ Instead, you can provide :handlers and :formats directly as option:
395
+ render :template => "foo", :formats => [:html, :js], :handlers => :erb
396
+
397
+ * Changed log level of warning for missing CSRF token from :debug to :warn. *Mike Dillon*
398
+
399
+ * content_tag_for and div_for can now take the collection of records. It will also yield the record as the first argument if you set a receiving argument in your block *Prem Sichanugrist*
400
+
401
+ So instead of having to do this:
402
+
403
+ @items.each do |item|
404
+ content_tag_for(:li, item) do
405
+ Title: <%= item.title %>
406
+ end
407
+ end
408
+
409
+ You can now do this:
410
+
411
+ content_tag_for(:li, @items) do |item|
412
+ Title: <%= item.title %>
413
+ end
414
+
415
+ * send_file now guess the mime type *Esad Hajdarevic*
416
+
417
+ * Mime type entries for PDF, ZIP and other formats were added *Esad Hajdarevic*
418
+
419
+ * Generate hidden input before select with :multiple option set to true.
420
+ This is useful when you rely on the fact that when no options is set,
421
+ the state of select will be sent to rails application. Without hidden field
422
+ nothing is sent according to HTML spec *Bogdan Gusiev*
423
+
424
+ * Refactor ActionController::TestCase cookies *Andrew White*
425
+
426
+ Assigning cookies for test cases should now use cookies[], e.g:
427
+
428
+ cookies[:email] = 'user@example.com'
429
+ get :index
430
+ assert_equal 'user@example.com', cookies[:email]
431
+
432
+ To clear the cookies, use clear, e.g:
433
+
434
+ cookies.clear
435
+ get :index
436
+ assert_nil cookies[:email]
437
+
438
+ We now no longer write out HTTP_COOKIE and the cookie jar is
439
+ persistent between requests so if you need to manipulate the environment
440
+ for your test you need to do it before the cookie jar is created.
441
+
442
+ * ActionController::ParamsWrapper on ActiveRecord models now only wrap
443
+ attr_accessible attributes if they were set, if not, only the attributes
444
+ returned by the class method attribute_names will be wrapped. This fixes
445
+ the wrapping of nested attributes by adding them to attr_accessible.
446
+
447
+ Please check [3-1-stable](https://github.com/rails/rails/blob/3-1-stable/actionpack/CHANGELOG.md) for previous changes.