classicCMS 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3779) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +4 -0
  3. data/Guardfile +5 -0
  4. data/Rakefile +1 -0
  5. data/bin/classiccms +4 -0
  6. data/classicCMS.gemspec +25 -0
  7. data/lib/classiccms/application/cms.rb +2 -0
  8. data/lib/classiccms/application.rb +10 -0
  9. data/lib/classiccms/base.rb +9 -0
  10. data/lib/classiccms/version.rb +4 -0
  11. data/lib/classiccms.rb +5 -0
  12. data/spec/config/mongoid.yml +22 -0
  13. data/spec/factories.rb +63 -0
  14. data/spec/models/base_spec.rb +10 -0
  15. data/spec/spec_helper.rb +17 -0
  16. data/vendor/bundle/bin/autospec +19 -0
  17. data/vendor/bundle/bin/b2json +19 -0
  18. data/vendor/bundle/bin/classiccms +19 -0
  19. data/vendor/bundle/bin/guard +19 -0
  20. data/vendor/bundle/bin/haml +19 -0
  21. data/vendor/bundle/bin/html2haml +19 -0
  22. data/vendor/bundle/bin/htmldiff +21 -0
  23. data/vendor/bundle/bin/j2bson +19 -0
  24. data/vendor/bundle/bin/ldiff +21 -0
  25. data/vendor/bundle/bin/mongo_console +19 -0
  26. data/vendor/bundle/bin/rackup +19 -0
  27. data/vendor/bundle/bin/rake2thor +19 -0
  28. data/vendor/bundle/bin/rspec +19 -0
  29. data/vendor/bundle/bin/sass +19 -0
  30. data/vendor/bundle/bin/sass-convert +19 -0
  31. data/vendor/bundle/bin/scss +19 -0
  32. data/vendor/bundle/bin/spork +19 -0
  33. data/vendor/bundle/bin/thor +19 -0
  34. data/vendor/bundle/bin/tilt +19 -0
  35. data/vendor/bundle/gems/activemodel-3.2.3/CHANGELOG.md +130 -0
  36. data/vendor/bundle/gems/activemodel-3.2.3/MIT-LICENSE +21 -0
  37. data/vendor/bundle/gems/activemodel-3.2.3/README.rdoc +211 -0
  38. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/attribute_methods.rb +452 -0
  39. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/callbacks.rb +134 -0
  40. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/conversion.rb +73 -0
  41. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/dirty.rb +167 -0
  42. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/errors.rb +370 -0
  43. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/lint.rb +123 -0
  44. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/locale/en.yml +27 -0
  45. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security/permission_set.rb +40 -0
  46. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security/sanitizer.rb +59 -0
  47. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security.rb +237 -0
  48. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/naming.rb +171 -0
  49. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/observer_array.rb +147 -0
  50. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/observing.rb +252 -0
  51. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/railtie.rb +2 -0
  52. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/secure_password.rb +74 -0
  53. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serialization.rb +139 -0
  54. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serializers/json.rb +108 -0
  55. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serializers/xml.rb +195 -0
  56. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/test_case.rb +16 -0
  57. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/translation.rb +70 -0
  58. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/acceptance.rb +68 -0
  59. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/callbacks.rb +57 -0
  60. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/confirmation.rb +68 -0
  61. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/exclusion.rb +69 -0
  62. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/format.rb +94 -0
  63. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/inclusion.rb +69 -0
  64. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/length.rb +118 -0
  65. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/numericality.rb +130 -0
  66. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/presence.rb +46 -0
  67. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/validates.rb +137 -0
  68. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/with.rb +145 -0
  69. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations.rb +221 -0
  70. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validator.rb +184 -0
  71. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/version.rb +10 -0
  72. data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model.rb +61 -0
  73. data/vendor/bundle/gems/activesupport-3.2.3/CHANGELOG.md +1626 -0
  74. data/vendor/bundle/gems/activesupport-3.2.3/MIT-LICENSE +20 -0
  75. data/vendor/bundle/gems/activesupport-3.2.3/README.rdoc +33 -0
  76. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/all.rb +3 -0
  77. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/backtrace_cleaner.rb +99 -0
  78. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/base64.rb +54 -0
  79. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/basic_object.rb +21 -0
  80. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/benchmarkable.rb +55 -0
  81. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/buffered_logger.rb +125 -0
  82. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/builder.rb +6 -0
  83. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/file_store.rb +178 -0
  84. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/mem_cache_store.rb +206 -0
  85. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/memory_store.rb +159 -0
  86. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/null_store.rb +44 -0
  87. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/strategy/local_cache.rb +169 -0
  88. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache.rb +638 -0
  89. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/callbacks.rb +626 -0
  90. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/concern.rb +131 -0
  91. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/configurable.rb +90 -0
  92. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/access.rb +46 -0
  93. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/conversions.rb +164 -0
  94. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/extract_options.rb +29 -0
  95. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/grouping.rb +100 -0
  96. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
  97. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/random_access.rb +30 -0
  98. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/uniq_by.rb +16 -0
  99. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/wrap.rb +48 -0
  100. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array.rb +8 -0
  101. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/benchmark.rb +7 -0
  102. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal/conversions.rb +45 -0
  103. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal.rb +1 -0
  104. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/attribute.rb +115 -0
  105. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/attribute_accessors.rb +80 -0
  106. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
  107. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/subclasses.rb +36 -0
  108. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class.rb +4 -0
  109. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/acts_like.rb +8 -0
  110. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/calculations.rb +276 -0
  111. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/conversions.rb +106 -0
  112. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/freeze.rb +33 -0
  113. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/zones.rb +14 -0
  114. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  115. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/calculations.rb +132 -0
  116. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  117. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/zones.rb +21 -0
  118. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/enumerable.rb +127 -0
  119. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/exception.rb +3 -0
  120. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file/atomic.rb +42 -0
  121. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file/path.rb +5 -0
  122. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file.rb +2 -0
  123. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/float/rounding.rb +19 -0
  124. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/float.rb +1 -0
  125. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/conversions.rb +157 -0
  126. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/deep_dup.rb +11 -0
  127. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
  128. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb +13 -0
  129. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/except.rb +23 -0
  130. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  131. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/keys.rb +47 -0
  132. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/reverse_merge.rb +23 -0
  133. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/slice.rb +40 -0
  134. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash.rb +9 -0
  135. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/inflections.rb +17 -0
  136. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/multiple.rb +6 -0
  137. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/time.rb +39 -0
  138. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer.rb +3 -0
  139. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/io.rb +15 -0
  140. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  141. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/debugger.rb +10 -0
  142. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/reporting.rb +93 -0
  143. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  144. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel.rb +4 -0
  145. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/load_error.rb +23 -0
  146. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/logger.rb +83 -0
  147. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/aliasing.rb +70 -0
  148. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/anonymous.rb +24 -0
  149. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/attr_internal.rb +39 -0
  150. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/attribute_accessors.rb +64 -0
  151. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/delegation.rb +153 -0
  152. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/deprecation.rb +9 -0
  153. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/introspection.rb +88 -0
  154. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/method_names.rb +14 -0
  155. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/qualified_const.rb +64 -0
  156. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/reachable.rb +8 -0
  157. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/remove_method.rb +16 -0
  158. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/synchronization.rb +45 -0
  159. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module.rb +12 -0
  160. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/name_error.rb +18 -0
  161. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  162. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric/time.rb +79 -0
  163. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric.rb +2 -0
  164. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/acts_like.rb +10 -0
  165. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/blank.rb +121 -0
  166. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/conversions.rb +4 -0
  167. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/duplicable.rb +106 -0
  168. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/inclusion.rb +25 -0
  169. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/instance_variables.rb +33 -0
  170. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_json.rb +19 -0
  171. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_param.rb +55 -0
  172. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_query.rb +27 -0
  173. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/try.rb +53 -0
  174. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/with_options.rb +43 -0
  175. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object.rb +13 -0
  176. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/proc.rb +14 -0
  177. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/process/daemon.rb +23 -0
  178. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/process.rb +1 -0
  179. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/blockless_step.rb +29 -0
  180. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/conversions.rb +21 -0
  181. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/cover.rb +3 -0
  182. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/include_range.rb +21 -0
  183. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/overlaps.rb +8 -0
  184. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range.rb +5 -0
  185. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/regexp.rb +5 -0
  186. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/rexml.rb +46 -0
  187. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/access.rb +99 -0
  188. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/behavior.rb +6 -0
  189. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/conversions.rb +54 -0
  190. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/encoding.rb +11 -0
  191. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/exclude.rb +6 -0
  192. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/filters.rb +49 -0
  193. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/inflections.rb +202 -0
  194. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/inquiry.rb +13 -0
  195. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/interpolation.rb +2 -0
  196. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/multibyte.rb +72 -0
  197. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/output_safety.rb +187 -0
  198. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  199. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/strip.rb +26 -0
  200. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/xchar.rb +18 -0
  201. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string.rb +14 -0
  202. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/acts_like.rb +8 -0
  203. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/calculations.rb +344 -0
  204. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/conversions.rb +85 -0
  205. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/marshal.rb +57 -0
  206. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  207. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/zones.rb +86 -0
  208. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/uri.rb +30 -0
  209. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext.rb +3 -0
  210. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/dependencies/autoload.rb +50 -0
  211. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/dependencies.rb +703 -0
  212. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/behaviors.rb +49 -0
  213. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/method_wrappers.rb +29 -0
  214. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
  215. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/reporting.rb +65 -0
  216. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation.rb +18 -0
  217. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb +45 -0
  218. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/duration.rb +110 -0
  219. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/file_update_checker.rb +121 -0
  220. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/file_watcher.rb +36 -0
  221. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/gzip.rb +30 -0
  222. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/hash_with_indifferent_access.rb +168 -0
  223. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/i18n.rb +9 -0
  224. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/i18n_railtie.rb +102 -0
  225. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflections.rb +61 -0
  226. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/inflections.rb +172 -0
  227. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/methods.rb +320 -0
  228. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/transliterate.rb +98 -0
  229. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector.rb +7 -0
  230. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/decoding.rb +65 -0
  231. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/encoding.rb +284 -0
  232. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/variable.rb +9 -0
  233. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json.rb +2 -0
  234. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/lazy_load_hooks.rb +46 -0
  235. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/locale/en.yml +36 -0
  236. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/log_subscriber/test_helper.rb +101 -0
  237. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/log_subscriber.rb +122 -0
  238. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/memoizable.rb +116 -0
  239. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/message_encryptor.rb +103 -0
  240. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/message_verifier.rb +74 -0
  241. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/chars.rb +476 -0
  242. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/exceptions.rb +8 -0
  243. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/unicode.rb +393 -0
  244. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/utils.rb +60 -0
  245. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte.rb +44 -0
  246. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/fanout.rb +61 -0
  247. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb +53 -0
  248. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications.rb +154 -0
  249. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb +25 -0
  250. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_hash.rb +222 -0
  251. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_options.rb +61 -0
  252. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/railtie.rb +59 -0
  253. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/rescuable.rb +115 -0
  254. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ruby/shim.rb +22 -0
  255. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/string_inquirer.rb +21 -0
  256. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/tagged_logging.rb +70 -0
  257. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/test_case.rb +34 -0
  258. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/assertions.rb +97 -0
  259. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/declarative.rb +40 -0
  260. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/deprecation.rb +55 -0
  261. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/isolation.rb +157 -0
  262. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/mochaing.rb +7 -0
  263. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/pending.rb +52 -0
  264. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/jruby.rb +115 -0
  265. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/rubinius.rb +113 -0
  266. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby/mri.rb +57 -0
  267. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby/yarv.rb +57 -0
  268. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby.rb +152 -0
  269. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance.rb +317 -0
  270. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/setup_and_teardown.rb +111 -0
  271. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time/autoload.rb +5 -0
  272. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time.rb +35 -0
  273. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time_with_zone.rb +354 -0
  274. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/values/time_zone.rb +395 -0
  275. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/values/unicode_tables.dat +0 -0
  276. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/version.rb +10 -0
  277. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/whiny_nil.rb +24 -0
  278. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/jdom.rb +175 -0
  279. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/libxml.rb +80 -0
  280. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/libxmlsax.rb +86 -0
  281. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/nokogiri.rb +84 -0
  282. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/nokogirisax.rb +88 -0
  283. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/rexml.rb +130 -0
  284. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini.rb +168 -0
  285. data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support.rb +82 -0
  286. data/vendor/bundle/gems/bson-1.6.1/LICENSE.txt +190 -0
  287. data/vendor/bundle/gems/bson-1.6.1/bin/b2json +65 -0
  288. data/vendor/bundle/gems/bson-1.6.1/bin/j2bson +72 -0
  289. data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_c.rb +41 -0
  290. data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_java.rb +30 -0
  291. data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_ruby.rb +641 -0
  292. data/vendor/bundle/gems/bson-1.6.1/lib/bson/byte_buffer.rb +280 -0
  293. data/vendor/bundle/gems/bson-1.6.1/lib/bson/exceptions.rb +41 -0
  294. data/vendor/bundle/gems/bson-1.6.1/lib/bson/ordered_hash.rb +187 -0
  295. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/binary.rb +56 -0
  296. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/code.rb +59 -0
  297. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/dbref.rb +46 -0
  298. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/min_max_keys.rb +60 -0
  299. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/object_id.rb +226 -0
  300. data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/timestamp.rb +76 -0
  301. data/vendor/bundle/gems/bson-1.6.1/lib/bson/version.rb +3 -0
  302. data/vendor/bundle/gems/bson-1.6.1/lib/bson.rb +101 -0
  303. data/vendor/bundle/gems/bson-1.6.1/test/bson/binary_test.rb +13 -0
  304. data/vendor/bundle/gems/bson-1.6.1/test/bson/bson_test.rb +658 -0
  305. data/vendor/bundle/gems/bson-1.6.1/test/bson/byte_buffer_test.rb +208 -0
  306. data/vendor/bundle/gems/bson-1.6.1/test/bson/hash_with_indifferent_access_test.rb +38 -0
  307. data/vendor/bundle/gems/bson-1.6.1/test/bson/json_test.rb +17 -0
  308. data/vendor/bundle/gems/bson-1.6.1/test/bson/object_id_test.rb +138 -0
  309. data/vendor/bundle/gems/bson-1.6.1/test/bson/ordered_hash_test.rb +247 -0
  310. data/vendor/bundle/gems/bson-1.6.1/test/bson/test_helper.rb +30 -0
  311. data/vendor/bundle/gems/bson-1.6.1/test/bson/timestamp_test.rb +46 -0
  312. data/vendor/bundle/gems/bson-1.6.1/test/support/hash_with_indifferent_access.rb +186 -0
  313. data/vendor/bundle/gems/bson_ext-1.6.1/Rakefile +317 -0
  314. data/vendor/bundle/gems/bson_ext-1.6.1/bson_ext.gemspec +26 -0
  315. data/vendor/bundle/gems/bson_ext-1.6.1/ext/bson_ext/cbson.bundle +0 -0
  316. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/Makefile +213 -0
  317. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.c +151 -0
  318. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.h +59 -0
  319. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.o +0 -0
  320. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.bundle +0 -0
  321. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.c +1007 -0
  322. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.o +0 -0
  323. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.c +118 -0
  324. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.h +29 -0
  325. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.o +0 -0
  326. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/extconf.rb +10 -0
  327. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/mkmf.log +58 -0
  328. data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/version.h +17 -0
  329. data/vendor/bundle/gems/builder-3.0.0/CHANGES +89 -0
  330. data/vendor/bundle/gems/builder-3.0.0/README +229 -0
  331. data/vendor/bundle/gems/builder-3.0.0/README.rdoc +232 -0
  332. data/vendor/bundle/gems/builder-3.0.0/Rakefile +296 -0
  333. data/vendor/bundle/gems/builder-3.0.0/TAGS +55364 -0
  334. data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-1.2.4.rdoc +31 -0
  335. data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-2.0.0.rdoc +46 -0
  336. data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-2.1.1.rdoc +58 -0
  337. data/vendor/bundle/gems/builder-3.0.0/lib/blankslate.rb +109 -0
  338. data/vendor/bundle/gems/builder-3.0.0/lib/builder/blankslate.rb +23 -0
  339. data/vendor/bundle/gems/builder-3.0.0/lib/builder/xchar.rb +197 -0
  340. data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlbase.rb +160 -0
  341. data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlevents.rb +63 -0
  342. data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlmarkup.rb +334 -0
  343. data/vendor/bundle/gems/builder-3.0.0/lib/builder.rb +13 -0
  344. data/vendor/bundle/gems/builder-3.0.0/test/performance.rb +40 -0
  345. data/vendor/bundle/gems/builder-3.0.0/test/preload.rb +39 -0
  346. data/vendor/bundle/gems/builder-3.0.0/test/test_blankslate.rb +225 -0
  347. data/vendor/bundle/gems/builder-3.0.0/test/test_cssbuilder.rb +125 -0
  348. data/vendor/bundle/gems/builder-3.0.0/test/test_eventbuilder.rb +150 -0
  349. data/vendor/bundle/gems/builder-3.0.0/test/test_markupbuilder.rb +546 -0
  350. data/vendor/bundle/gems/builder-3.0.0/test/test_namecollision.rb +39 -0
  351. data/vendor/bundle/gems/builder-3.0.0/test/test_xchar.rb +77 -0
  352. data/vendor/bundle/gems/coffee-script-2.2.0/LICENSE +22 -0
  353. data/vendor/bundle/gems/coffee-script-2.2.0/README.md +43 -0
  354. data/vendor/bundle/gems/coffee-script-2.2.0/lib/coffee-script.rb +1 -0
  355. data/vendor/bundle/gems/coffee-script-2.2.0/lib/coffee_script.rb +60 -0
  356. data/vendor/bundle/gems/coffee-script-source-1.2.0/lib/coffee_script/coffee-script.js +8 -0
  357. data/vendor/bundle/gems/coffee-script-source-1.2.0/lib/coffee_script/source.rb +7 -0
  358. data/vendor/bundle/gems/diff-lcs-1.1.3/.gemtest +0 -0
  359. data/vendor/bundle/gems/diff-lcs-1.1.3/History.rdoc +54 -0
  360. data/vendor/bundle/gems/diff-lcs-1.1.3/License.rdoc +38 -0
  361. data/vendor/bundle/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
  362. data/vendor/bundle/gems/diff-lcs-1.1.3/README.rdoc +72 -0
  363. data/vendor/bundle/gems/diff-lcs-1.1.3/Rakefile +26 -0
  364. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
  365. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
  366. data/vendor/bundle/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
  367. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
  368. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
  369. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
  370. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
  371. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
  372. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
  373. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
  374. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
  375. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
  376. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
  377. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
  378. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
  379. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
  380. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
  381. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
  382. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
  383. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
  384. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
  385. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
  386. data/vendor/bundle/gems/execjs-1.3.0/LICENSE +21 -0
  387. data/vendor/bundle/gems/execjs-1.3.0/README.md +47 -0
  388. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/disabled_runtime.rb +23 -0
  389. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/external_runtime.rb +213 -0
  390. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/johnson_runtime.rb +112 -0
  391. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/module.rb +38 -0
  392. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb +84 -0
  393. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/ruby_racer_runtime.rb +117 -0
  394. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/ruby_rhino_runtime.rb +101 -0
  395. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/runtimes.rb +93 -0
  396. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/jsc_runner.js +19 -0
  397. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/jscript_runner.js +22 -0
  398. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/json2.js +481 -0
  399. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/node_runner.js +20 -0
  400. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/spidermonkey_runner.js +19 -0
  401. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/version.rb +3 -0
  402. data/vendor/bundle/gems/execjs-1.3.0/lib/execjs.rb +6 -0
  403. data/vendor/bundle/gems/factory_girl-3.0.0/.autotest +9 -0
  404. data/vendor/bundle/gems/factory_girl-3.0.0/.gitignore +9 -0
  405. data/vendor/bundle/gems/factory_girl-3.0.0/.travis.yml +13 -0
  406. data/vendor/bundle/gems/factory_girl-3.0.0/.yardopts +5 -0
  407. data/vendor/bundle/gems/factory_girl-3.0.0/Appraisals +11 -0
  408. data/vendor/bundle/gems/factory_girl-3.0.0/CONTRIBUTION_GUIDELINES.md +10 -0
  409. data/vendor/bundle/gems/factory_girl-3.0.0/Changelog +168 -0
  410. data/vendor/bundle/gems/factory_girl-3.0.0/GETTING_STARTED.md +735 -0
  411. data/vendor/bundle/gems/factory_girl-3.0.0/Gemfile +5 -0
  412. data/vendor/bundle/gems/factory_girl-3.0.0/LICENSE +19 -0
  413. data/vendor/bundle/gems/factory_girl-3.0.0/README.md +70 -0
  414. data/vendor/bundle/gems/factory_girl-3.0.0/Rakefile +38 -0
  415. data/vendor/bundle/gems/factory_girl-3.0.0/cucumber.yml +1 -0
  416. data/vendor/bundle/gems/factory_girl-3.0.0/factory_girl.gemspec +38 -0
  417. data/vendor/bundle/gems/factory_girl-3.0.0/features/factory_girl_steps.feature +237 -0
  418. data/vendor/bundle/gems/factory_girl-3.0.0/features/find_definitions.feature +75 -0
  419. data/vendor/bundle/gems/factory_girl-3.0.0/features/step_definitions/database_steps.rb +42 -0
  420. data/vendor/bundle/gems/factory_girl-3.0.0/features/step_definitions/factory_girl_steps.rb +43 -0
  421. data/vendor/bundle/gems/factory_girl-3.0.0/features/support/env.rb +11 -0
  422. data/vendor/bundle/gems/factory_girl-3.0.0/features/support/factories.rb +119 -0
  423. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/2.3.gemfile +7 -0
  424. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.0.gemfile +7 -0
  425. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.0.gemfile.lock +86 -0
  426. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.1.gemfile +7 -0
  427. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.1.gemfile.lock +95 -0
  428. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.2.gemfile +7 -0
  429. data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.2.gemfile.lock +93 -0
  430. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/aliases.rb +19 -0
  431. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/association.rb +23 -0
  432. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/dynamic.rb +20 -0
  433. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/sequence.rb +17 -0
  434. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/static.rb +15 -0
  435. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute.rb +40 -0
  436. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute_assigner.rb +73 -0
  437. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute_list.rb +54 -0
  438. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/callback.rb +33 -0
  439. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/association.rb +25 -0
  440. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/dynamic.rb +25 -0
  441. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/implicit.rb +32 -0
  442. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/static.rb +25 -0
  443. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration.rb +22 -0
  444. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration_list.rb +48 -0
  445. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/definition.rb +76 -0
  446. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/definition_proxy.rb +159 -0
  447. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/errors.rb +19 -0
  448. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/evaluator.rb +76 -0
  449. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/evaluator_class_definer.rb +34 -0
  450. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/factory.rb +145 -0
  451. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/factory_runner.rb +24 -0
  452. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/find_definitions.rb +25 -0
  453. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/null_factory.rb +15 -0
  454. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/null_object.rb +7 -0
  455. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/registry.rb +46 -0
  456. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/reload.rb +8 -0
  457. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/sequence.rb +24 -0
  458. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/step_definitions.rb +130 -0
  459. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/attributes_for.rb +12 -0
  460. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/build.rb +15 -0
  461. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/create.rb +17 -0
  462. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/stub.rb +61 -0
  463. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy.rb +32 -0
  464. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy_calculator.rb +29 -0
  465. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/blueprint.rb +42 -0
  466. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/default.rb +56 -0
  467. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/generate.rb +70 -0
  468. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/make.rb +45 -0
  469. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/methods.rb +136 -0
  470. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/sham.rb +45 -0
  471. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/vintage.rb +130 -0
  472. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax.rb +16 -0
  473. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/trait.rb +29 -0
  474. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/version.rb +4 -0
  475. data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl.rb +69 -0
  476. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/aliases_spec.rb +19 -0
  477. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attribute_aliases_spec.rb +45 -0
  478. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attribute_existing_on_object_spec.rb +68 -0
  479. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_for_spec.rb +89 -0
  480. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_from_instance_spec.rb +53 -0
  481. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_ordered_spec.rb +51 -0
  482. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_list_spec.rb +41 -0
  483. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_spec.rb +89 -0
  484. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_stubbed_spec.rb +104 -0
  485. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/callbacks_spec.rb +47 -0
  486. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/create_list_spec.rb +82 -0
  487. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/create_spec.rb +117 -0
  488. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/define_child_before_parent_spec.rb +21 -0
  489. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/definition_spec.rb +26 -0
  490. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/definition_without_block_spec.rb +15 -0
  491. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/initialize_with_spec.rb +147 -0
  492. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/modify_factories_spec.rb +184 -0
  493. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/modify_inherited_spec.rb +52 -0
  494. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/nested_attributes_spec.rb +32 -0
  495. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/overrides_spec.rb +61 -0
  496. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/parent_spec.rb +90 -0
  497. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/sequence_spec.rb +33 -0
  498. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/stub_spec.rb +62 -0
  499. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/blueprint_spec.rb +34 -0
  500. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/generate_spec.rb +59 -0
  501. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/make_spec.rb +52 -0
  502. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/sham_spec.rb +43 -0
  503. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/vintage_spec.rb +217 -0
  504. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/traits_spec.rb +421 -0
  505. data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/transient_attributes_spec.rb +124 -0
  506. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/aliases_spec.rb +31 -0
  507. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/association_spec.rb +28 -0
  508. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/dynamic_spec.rb +52 -0
  509. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/sequence_spec.rb +16 -0
  510. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/static_spec.rb +19 -0
  511. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute_list_spec.rb +78 -0
  512. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute_spec.rb +16 -0
  513. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/callback_spec.rb +41 -0
  514. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/declaration/implicit_spec.rb +25 -0
  515. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/declaration_list_spec.rb +71 -0
  516. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/definition_proxy_spec.rb +197 -0
  517. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/definition_spec.rb +104 -0
  518. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/evaluator_class_definer_spec.rb +54 -0
  519. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/factory_spec.rb +279 -0
  520. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/find_definitions_spec.rb +110 -0
  521. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/null_factory_spec.rb +13 -0
  522. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/null_object_spec.rb +8 -0
  523. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/registry_spec.rb +81 -0
  524. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/sequence_spec.rb +47 -0
  525. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/attributes_for_spec.rb +18 -0
  526. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/build_spec.rb +7 -0
  527. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/create_spec.rb +13 -0
  528. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/stub_spec.rb +40 -0
  529. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy_calculator_spec.rb +33 -0
  530. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy_spec.rb +21 -0
  531. data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl_spec.rb +22 -0
  532. data/vendor/bundle/gems/factory_girl-3.0.0/spec/spec_helper.rb +26 -0
  533. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/macros/define_constant.rb +86 -0
  534. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/callback.rb +9 -0
  535. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/declaration.rb +71 -0
  536. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/delegate.rb +44 -0
  537. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/trait.rb +9 -0
  538. data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/shared_examples/strategy.rb +104 -0
  539. data/vendor/bundle/gems/ffi-1.0.11/History.txt +112 -0
  540. data/vendor/bundle/gems/ffi-1.0.11/LICENSE +14 -0
  541. data/vendor/bundle/gems/ffi-1.0.11/README.rdoc +70 -0
  542. data/vendor/bundle/gems/ffi-1.0.11/Rakefile +191 -0
  543. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.c +1004 -0
  544. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.h +159 -0
  545. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.o +0 -0
  546. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.c +149 -0
  547. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.h +50 -0
  548. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.o +0 -0
  549. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Buffer.c +348 -0
  550. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Buffer.o +0 -0
  551. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.c +441 -0
  552. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.h +83 -0
  553. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.o +0 -0
  554. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.c +263 -0
  555. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.h +48 -0
  556. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.o +0 -0
  557. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DataConverter.c +91 -0
  558. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DataConverter.o +0 -0
  559. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.c +309 -0
  560. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.h +40 -0
  561. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.o +0 -0
  562. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.c +950 -0
  563. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.h +73 -0
  564. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.o +0 -0
  565. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/FunctionInfo.c +228 -0
  566. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/FunctionInfo.o +0 -0
  567. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.c +168 -0
  568. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.h +38 -0
  569. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.o +0 -0
  570. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Makefile +215 -0
  571. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.c +161 -0
  572. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.h +50 -0
  573. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.o +0 -0
  574. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.c +158 -0
  575. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.h +40 -0
  576. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.o +0 -0
  577. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.c +341 -0
  578. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.h +46 -0
  579. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.o +0 -0
  580. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.c +104 -0
  581. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.h +36 -0
  582. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.o +0 -0
  583. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.c +473 -0
  584. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.h +50 -0
  585. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.o +0 -0
  586. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.c +702 -0
  587. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.h +97 -0
  588. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.o +0 -0
  589. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.c +150 -0
  590. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.h +50 -0
  591. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.o +0 -0
  592. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.c +134 -0
  593. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.h +46 -0
  594. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.o +0 -0
  595. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructLayout.c +514 -0
  596. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructLayout.o +0 -0
  597. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.c +319 -0
  598. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.h +73 -0
  599. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.o +0 -0
  600. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.c +381 -0
  601. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.h +47 -0
  602. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.o +0 -0
  603. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.c +123 -0
  604. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h +79 -0
  605. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.o +0 -0
  606. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Variadic.c +256 -0
  607. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Variadic.o +0 -0
  608. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/compat.h +74 -0
  609. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/endian.h +47 -0
  610. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/extconf.h +8 -0
  611. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/extconf.rb +57 -0
  612. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi.c +86 -0
  613. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi.o +0 -0
  614. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi_c.bundle +0 -0
  615. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib +0 -0
  616. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib.dSYM/Contents/Info.plist +20 -0
  617. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib.dSYM/Contents/Resources/DWARF/libffi.5.dylib +0 -0
  618. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.dylib +0 -0
  619. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.la +41 -0
  620. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.lai +41 -0
  621. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi_convenience.a +0 -0
  622. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi_convenience.la +41 -0
  623. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog +4059 -0
  624. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.libffi +658 -0
  625. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  626. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  627. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/LICENSE +21 -0
  628. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile +1791 -0
  629. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile.am +187 -0
  630. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile.in +1791 -0
  631. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/README +306 -0
  632. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/acinclude.m4 +92 -0
  633. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/aclocal.m4 +8998 -0
  634. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/compile +142 -0
  635. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.guess +1498 -0
  636. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.log +841 -0
  637. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.status +2176 -0
  638. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.sub +1702 -0
  639. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure +17281 -0
  640. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure.ac +404 -0
  641. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure.host +11 -0
  642. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/depcomp +584 -0
  643. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/libffi.info +533 -0
  644. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/libffi.texi +541 -0
  645. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  646. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/version.texi +4 -0
  647. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/fficonfig.h +182 -0
  648. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/fficonfig.h.in +181 -0
  649. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile +469 -0
  650. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile.am +9 -0
  651. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile.in +469 -0
  652. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi.h +399 -0
  653. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi.h.in +399 -0
  654. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi_common.h +122 -0
  655. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffitarget.h +120 -0
  656. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/install-sh +323 -0
  657. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.la +41 -0
  658. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.pc +10 -0
  659. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.pc.in +10 -0
  660. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi_convenience.la +41 -0
  661. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libtool +8890 -0
  662. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libtool-version +29 -0
  663. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ltmain.sh +8406 -0
  664. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/libtool.m4 +7360 -0
  665. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltoptions.m4 +368 -0
  666. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
  667. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
  668. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/lt~obsolete.m4 +92 -0
  669. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile +448 -0
  670. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile.am +8 -0
  671. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile.in +448 -0
  672. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi.3 +31 -0
  673. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  674. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  675. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/mdate-sh +201 -0
  676. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/missing +360 -0
  677. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.deps/.dirstamp +0 -0
  678. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.dirstamp +0 -0
  679. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/closures.o +0 -0
  680. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/debug.o +0 -0
  681. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/java_raw_api.o +0 -0
  682. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/prep_cif.o +0 -0
  683. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/raw_api.o +0 -0
  684. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/types.o +0 -0
  685. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  686. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  687. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/osf.S +366 -0
  688. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
  689. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
  690. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/sysv.S +306 -0
  691. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/ffi.c +421 -0
  692. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
  693. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
  694. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/closures.c +633 -0
  695. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/closures.lo +12 -0
  696. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  697. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  698. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  699. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/debug.c +59 -0
  700. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/debug.lo +12 -0
  701. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/dlmalloc.c +5099 -0
  702. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  703. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  704. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/ffitarget.h +61 -0
  705. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ffi.c +580 -0
  706. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  707. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  708. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  709. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
  710. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/java_raw_api.lo +12 -0
  711. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  712. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  713. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  714. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/ffi.c +278 -0
  715. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  716. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
  717. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/ffi.c +1029 -0
  718. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/ffitarget.h +235 -0
  719. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/n32.S +591 -0
  720. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  721. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/ffi.c +716 -0
  722. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -0
  723. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  724. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  725. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/aix.S +324 -0
  726. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/aix_closure.S +443 -0
  727. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  728. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
  729. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
  730. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffi.c +1442 -0
  731. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +928 -0
  732. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffitarget.h +126 -0
  733. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  734. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  735. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  736. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
  737. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/prep_cif.c +174 -0
  738. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/prep_cif.lo +12 -0
  739. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/raw_api.c +254 -0
  740. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/raw_api.lo +12 -0
  741. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  742. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/ffitarget.h +60 -0
  743. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  744. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  745. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  746. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  747. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
  748. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  749. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
  750. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/ffi.c +625 -0
  751. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
  752. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
  753. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  754. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/types.c +77 -0
  755. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/types.lo +12 -0
  756. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.deps/.dirstamp +0 -0
  757. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.dirstamp +0 -0
  758. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/darwin.o +0 -0
  759. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/darwin64.o +0 -0
  760. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/ffi.o +0 -0
  761. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/ffi64.o +0 -0
  762. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
  763. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin.lo +12 -0
  764. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  765. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin64.lo +12 -0
  766. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi.c +682 -0
  767. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi.lo +12 -0
  768. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi64.c +626 -0
  769. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi64.lo +12 -0
  770. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffitarget.h +120 -0
  771. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  772. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/sysv.S +454 -0
  773. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/unix64.S +422 -0
  774. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/win32.S +877 -0
  775. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/win64.S +460 -0
  776. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/stamp-h1 +1 -0
  777. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile +482 -0
  778. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
  779. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile.in +482 -0
  780. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  781. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
  782. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  783. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  784. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +36 -0
  785. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
  786. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
  787. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
  788. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
  789. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
  790. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
  791. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
  792. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
  793. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
  794. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
  795. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
  796. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
  797. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
  798. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
  799. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
  800. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
  801. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
  802. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
  803. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
  804. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
  805. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
  806. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
  807. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
  808. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
  809. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
  810. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
  811. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
  812. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
  813. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
  814. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
  815. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
  816. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
  817. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
  818. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
  819. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
  820. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
  821. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
  822. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
  823. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
  824. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
  825. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
  826. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +91 -0
  827. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
  828. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
  829. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +92 -0
  830. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
  831. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
  832. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +57 -0
  833. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
  834. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
  835. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +57 -0
  836. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
  837. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
  838. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
  839. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
  840. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
  841. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
  842. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
  843. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
  844. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
  845. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
  846. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
  847. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
  848. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
  849. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +46 -0
  850. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
  851. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +37 -0
  852. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +25 -0
  853. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +117 -0
  854. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  855. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  856. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
  857. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  858. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  859. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
  860. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  861. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  862. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  863. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
  864. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
  865. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
  866. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
  867. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
  868. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
  869. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
  870. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
  871. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
  872. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
  873. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
  874. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
  875. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  876. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  877. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  878. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  879. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  880. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  881. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  882. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  883. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  884. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  885. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  886. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +42 -0
  887. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  888. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  889. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  890. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  891. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
  892. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
  893. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
  894. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +124 -0
  895. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  896. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  897. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  898. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  899. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  900. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  901. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  902. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  903. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  904. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  905. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  906. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
  907. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
  908. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +37 -0
  909. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
  910. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  911. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/texinfo.tex +7210 -0
  912. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.bsd.mk +34 -0
  913. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.darwin.mk +75 -0
  914. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.gnu.mk +29 -0
  915. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.mk +13 -0
  916. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/mkmf.log +102 -0
  917. data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/rbffi.h +47 -0
  918. data/vendor/bundle/gems/ffi-1.0.11/gen/Rakefile +14 -0
  919. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/autopointer.rb +183 -0
  920. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/buffer.rb +4 -0
  921. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/callback.rb +4 -0
  922. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/enum.rb +161 -0
  923. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/errno.rb +33 -0
  924. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/ffi.rb +33 -0
  925. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/io.rb +52 -0
  926. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/library.rb +485 -0
  927. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/managedstruct.rb +55 -0
  928. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/memorypointer.rb +1 -0
  929. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-darwin/types.conf +100 -0
  930. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  931. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-linux/types.conf +100 -0
  932. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  933. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-openbsd/types.conf +126 -0
  934. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-solaris/types.conf +122 -0
  935. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-windows/types.conf +105 -0
  936. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  937. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  938. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  939. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  940. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
  941. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-freebsd/types.conf +126 -0
  942. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-linux/types.conf +100 -0
  943. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
  944. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-openbsd/types.conf +126 -0
  945. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  946. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform.rb +125 -0
  947. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/pointer.rb +122 -0
  948. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/struct.rb +282 -0
  949. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/struct_layout_builder.rb +159 -0
  950. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/const_generator.rb +229 -0
  951. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/generator.rb +58 -0
  952. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/generator_task.rb +35 -0
  953. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/struct_generator.rb +194 -0
  954. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/types_generator.rb +123 -0
  955. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/types.rb +174 -0
  956. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/union.rb +32 -0
  957. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/variadic.rb +65 -0
  958. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi.rb +15 -0
  959. data/vendor/bundle/gems/ffi-1.0.11/lib/ffi_c.bundle +0 -0
  960. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/async_callback_spec.rb +46 -0
  961. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/bool_spec.rb +40 -0
  962. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/buffer_spec.rb +215 -0
  963. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/callback_spec.rb +668 -0
  964. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/custom_param_type.rb +47 -0
  965. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/custom_type_spec.rb +85 -0
  966. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/dup_spec.rb +65 -0
  967. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/enum_spec.rb +227 -0
  968. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/errno_spec.rb +29 -0
  969. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/ffi_spec.rb +40 -0
  970. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/function_spec.rb +87 -0
  971. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/library_spec.rb +208 -0
  972. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/managed_struct_spec.rb +72 -0
  973. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/number_spec.rb +247 -0
  974. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/pointer_spec.rb +211 -0
  975. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/attach_function_spec.rb +28 -0
  976. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/memory_pointer_spec.rb +111 -0
  977. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/spec_helper.rb +1 -0
  978. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/struct_spec.rb +13 -0
  979. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/spec_helper.rb +35 -0
  980. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/string_spec.rb +119 -0
  981. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/strptr_spec.rb +61 -0
  982. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_callback_spec.rb +80 -0
  983. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_initialize_spec.rb +46 -0
  984. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_packed_spec.rb +62 -0
  985. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_spec.rb +682 -0
  986. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/typedef_spec.rb +89 -0
  987. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/union_spec.rb +76 -0
  988. data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/variadic_spec.rb +103 -0
  989. data/vendor/bundle/gems/ffi-1.0.11/spec/spec.opts +4 -0
  990. data/vendor/bundle/gems/ffi-1.0.11/tasks/ann.rake +80 -0
  991. data/vendor/bundle/gems/ffi-1.0.11/tasks/extension.rake +32 -0
  992. data/vendor/bundle/gems/ffi-1.0.11/tasks/gem.rake +199 -0
  993. data/vendor/bundle/gems/ffi-1.0.11/tasks/git.rake +41 -0
  994. data/vendor/bundle/gems/ffi-1.0.11/tasks/notes.rake +27 -0
  995. data/vendor/bundle/gems/ffi-1.0.11/tasks/post_load.rake +34 -0
  996. data/vendor/bundle/gems/ffi-1.0.11/tasks/rdoc.rake +50 -0
  997. data/vendor/bundle/gems/ffi-1.0.11/tasks/rubyforge.rake +55 -0
  998. data/vendor/bundle/gems/ffi-1.0.11/tasks/setup.rb +301 -0
  999. data/vendor/bundle/gems/ffi-1.0.11/tasks/spec.rake +54 -0
  1000. data/vendor/bundle/gems/ffi-1.0.11/tasks/svn.rake +47 -0
  1001. data/vendor/bundle/gems/ffi-1.0.11/tasks/test.rake +40 -0
  1002. data/vendor/bundle/gems/ffi-1.0.11/tasks/yard.rake +11 -0
  1003. data/vendor/bundle/gems/guard-1.0.1/CHANGELOG.md +465 -0
  1004. data/vendor/bundle/gems/guard-1.0.1/LICENSE +20 -0
  1005. data/vendor/bundle/gems/guard-1.0.1/README.md +889 -0
  1006. data/vendor/bundle/gems/guard-1.0.1/bin/fsevent_watch_guard +0 -0
  1007. data/vendor/bundle/gems/guard-1.0.1/bin/fsevent_watch_guard_guard +0 -0
  1008. data/vendor/bundle/gems/guard-1.0.1/bin/guard +6 -0
  1009. data/vendor/bundle/gems/guard-1.0.1/images/failed.png +0 -0
  1010. data/vendor/bundle/gems/guard-1.0.1/images/pending.png +0 -0
  1011. data/vendor/bundle/gems/guard-1.0.1/images/success.png +0 -0
  1012. data/vendor/bundle/gems/guard-1.0.1/lib/guard/cli.rb +159 -0
  1013. data/vendor/bundle/gems/guard-1.0.1/lib/guard/dsl.rb +439 -0
  1014. data/vendor/bundle/gems/guard-1.0.1/lib/guard/dsl_describer.rb +151 -0
  1015. data/vendor/bundle/gems/guard-1.0.1/lib/guard/group.rb +37 -0
  1016. data/vendor/bundle/gems/guard-1.0.1/lib/guard/guard.rb +129 -0
  1017. data/vendor/bundle/gems/guard-1.0.1/lib/guard/hook.rb +118 -0
  1018. data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactor.rb +250 -0
  1019. data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactors/readline.rb +110 -0
  1020. data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactors/simple.rb +17 -0
  1021. data/vendor/bundle/gems/guard-1.0.1/lib/guard/listener.rb +376 -0
  1022. data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/darwin.rb +62 -0
  1023. data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/linux.rb +93 -0
  1024. data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/polling.rb +55 -0
  1025. data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/windows.rb +63 -0
  1026. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifier.rb +213 -0
  1027. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/gntp.rb +114 -0
  1028. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/growl.rb +98 -0
  1029. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/growl_notify.rb +91 -0
  1030. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/libnotify.rb +96 -0
  1031. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/notifysend.rb +81 -0
  1032. data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/rb_notifu.rb +101 -0
  1033. data/vendor/bundle/gems/guard-1.0.1/lib/guard/templates/Guardfile +2 -0
  1034. data/vendor/bundle/gems/guard-1.0.1/lib/guard/ui.rb +205 -0
  1035. data/vendor/bundle/gems/guard-1.0.1/lib/guard/version.rb +6 -0
  1036. data/vendor/bundle/gems/guard-1.0.1/lib/guard/version.rbc +180 -0
  1037. data/vendor/bundle/gems/guard-1.0.1/lib/guard/watcher.rb +128 -0
  1038. data/vendor/bundle/gems/guard-1.0.1/lib/guard.rb +541 -0
  1039. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Gemfile +6 -0
  1040. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Guardfile +8 -0
  1041. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/LICENSE +20 -0
  1042. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/README.rdoc +255 -0
  1043. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Rakefile +21 -0
  1044. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/bin/fsevent_watch +0 -0
  1045. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/Info.plist +38 -0
  1046. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/LICENSE +21 -0
  1047. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/TSICTString.c +394 -0
  1048. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/TSICTString.h +74 -0
  1049. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/cli.c +160 -0
  1050. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/cli.h +45 -0
  1051. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/common.h +34 -0
  1052. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/compat.c +20 -0
  1053. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/compat.h +40 -0
  1054. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/main.c +509 -0
  1055. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch.xcodeproj/project.pbxproj +254 -0
  1056. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Common.xcconfig +82 -0
  1057. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Debug.xcconfig +19 -0
  1058. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Release.xcconfig +23 -0
  1059. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/fsevent_watch.xcconfig +17 -0
  1060. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/rakefile.rb +47 -0
  1061. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/rb-fsevent.xcconfig +33 -0
  1062. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent/fsevent.rb +105 -0
  1063. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent/version.rb +3 -0
  1064. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent.rb +2 -0
  1065. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/rb-fsevent.gemspec +25 -0
  1066. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/fixtures/folder1/file1.txt +0 -0
  1067. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/fixtures/folder1/folder2/file2.txt +0 -0
  1068. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/rb-fsevent/fsevent_spec.rb +75 -0
  1069. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/spec_helper.rb +23 -0
  1070. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/MIT-LICENSE +20 -0
  1071. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/README.md +66 -0
  1072. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/Rakefile +54 -0
  1073. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/VERSION +1 -0
  1074. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/event.rb +139 -0
  1075. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/native/flags.rb +89 -0
  1076. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/native.rb +31 -0
  1077. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/notifier.rb +308 -0
  1078. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/watcher.rb +83 -0
  1079. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify.rb +17 -0
  1080. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/rb-inotify.gemspec +53 -0
  1081. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/Gemfile +4 -0
  1082. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/README.md +34 -0
  1083. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/Rakefile +18 -0
  1084. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/event.rb +29 -0
  1085. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/native/flags.rb +78 -0
  1086. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/native.rb +45 -0
  1087. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/notifier.rb +149 -0
  1088. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/version.rb +3 -0
  1089. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/watcher.rb +99 -0
  1090. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange.rb +14 -0
  1091. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/rb-fchange.gemspec +34 -0
  1092. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/fixtures/folder1/file1.txt +0 -0
  1093. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/fixtures/folder1/folder2/file2.txt +0 -0
  1094. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/rb-fchange/fchange_spec.rb +119 -0
  1095. data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/spec_helper.rb +21 -0
  1096. data/vendor/bundle/gems/guard-1.0.1/man/guard.1 +96 -0
  1097. data/vendor/bundle/gems/guard-1.0.1/man/guard.1.html +181 -0
  1098. data/vendor/bundle/gems/guard-rspec-0.7.0/LICENSE +20 -0
  1099. data/vendor/bundle/gems/guard-rspec-0.7.0/README.md +194 -0
  1100. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatter.rb +49 -0
  1101. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatters/notification_rspec.rb +13 -0
  1102. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatters/notification_spec.rb +13 -0
  1103. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/inspector.rb +72 -0
  1104. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/runner.rb +204 -0
  1105. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/templates/Guardfile +16 -0
  1106. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/version.rb +5 -0
  1107. data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec.rb +77 -0
  1108. data/vendor/bundle/gems/haml-3.1.4/.yardopts +11 -0
  1109. data/vendor/bundle/gems/haml-3.1.4/CONTRIBUTING +3 -0
  1110. data/vendor/bundle/gems/haml-3.1.4/MIT-LICENSE +20 -0
  1111. data/vendor/bundle/gems/haml-3.1.4/README.md +133 -0
  1112. data/vendor/bundle/gems/haml-3.1.4/REVISION +1 -0
  1113. data/vendor/bundle/gems/haml-3.1.4/Rakefile +419 -0
  1114. data/vendor/bundle/gems/haml-3.1.4/VERSION +1 -0
  1115. data/vendor/bundle/gems/haml-3.1.4/VERSION_NAME +1 -0
  1116. data/vendor/bundle/gems/haml-3.1.4/bin/haml +9 -0
  1117. data/vendor/bundle/gems/haml-3.1.4/bin/html2haml +7 -0
  1118. data/vendor/bundle/gems/haml-3.1.4/extra/update_watch.rb +13 -0
  1119. data/vendor/bundle/gems/haml-3.1.4/init.rb +18 -0
  1120. data/vendor/bundle/gems/haml-3.1.4/lib/haml/buffer.rb +297 -0
  1121. data/vendor/bundle/gems/haml-3.1.4/lib/haml/compiler.rb +452 -0
  1122. data/vendor/bundle/gems/haml-3.1.4/lib/haml/engine.rb +312 -0
  1123. data/vendor/bundle/gems/haml-3.1.4/lib/haml/error.rb +22 -0
  1124. data/vendor/bundle/gems/haml-3.1.4/lib/haml/exec.rb +362 -0
  1125. data/vendor/bundle/gems/haml-3.1.4/lib/haml/filters.rb +385 -0
  1126. data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/action_view_extensions.rb +57 -0
  1127. data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb +258 -0
  1128. data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/xss_mods.rb +165 -0
  1129. data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers.rb +608 -0
  1130. data/vendor/bundle/gems/haml-3.1.4/lib/haml/html/erb.rb +141 -0
  1131. data/vendor/bundle/gems/haml-3.1.4/lib/haml/html.rb +412 -0
  1132. data/vendor/bundle/gems/haml-3.1.4/lib/haml/parser.rb +711 -0
  1133. data/vendor/bundle/gems/haml-3.1.4/lib/haml/railtie.rb +19 -0
  1134. data/vendor/bundle/gems/haml-3.1.4/lib/haml/root.rb +7 -0
  1135. data/vendor/bundle/gems/haml-3.1.4/lib/haml/shared.rb +78 -0
  1136. data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/options.rb +16 -0
  1137. data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/patch.rb +58 -0
  1138. data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/plugin.rb +123 -0
  1139. data/vendor/bundle/gems/haml-3.1.4/lib/haml/template.rb +99 -0
  1140. data/vendor/bundle/gems/haml-3.1.4/lib/haml/util.rb +842 -0
  1141. data/vendor/bundle/gems/haml-3.1.4/lib/haml/version.rb +109 -0
  1142. data/vendor/bundle/gems/haml-3.1.4/lib/haml.rb +47 -0
  1143. data/vendor/bundle/gems/haml-3.1.4/lib/sass/plugin.rb +10 -0
  1144. data/vendor/bundle/gems/haml-3.1.4/lib/sass/rails2_shim.rb +9 -0
  1145. data/vendor/bundle/gems/haml-3.1.4/lib/sass/rails3_shim.rb +16 -0
  1146. data/vendor/bundle/gems/haml-3.1.4/lib/sass.rb +8 -0
  1147. data/vendor/bundle/gems/haml-3.1.4/rails/init.rb +1 -0
  1148. data/vendor/bundle/gems/haml-3.1.4/test/benchmark.rb +91 -0
  1149. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.0.x +8 -0
  1150. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.0.x.lock +38 -0
  1151. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.1.x +8 -0
  1152. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.1.x.lock +38 -0
  1153. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.2.x +8 -0
  1154. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.2.x.lock +38 -0
  1155. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.3.x +8 -0
  1156. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.3.x.lock +40 -0
  1157. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.0.x +8 -0
  1158. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.0.x.lock +85 -0
  1159. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.1.x +8 -0
  1160. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.1.x.lock +98 -0
  1161. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-xss-2.3.x +9 -0
  1162. data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-xss-2.3.x.lock +42 -0
  1163. data/vendor/bundle/gems/haml-3.1.4/test/haml/engine_test.rb +1944 -0
  1164. data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/_av_partial_1.erb +12 -0
  1165. data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/_av_partial_2.erb +8 -0
  1166. data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/action_view.erb +62 -0
  1167. data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/standard.erb +55 -0
  1168. data/vendor/bundle/gems/haml-3.1.4/test/haml/helper_test.rb +454 -0
  1169. data/vendor/bundle/gems/haml-3.1.4/test/haml/html2haml/erb_tests.rb +440 -0
  1170. data/vendor/bundle/gems/haml-3.1.4/test/haml/html2haml_test.rb +336 -0
  1171. data/vendor/bundle/gems/haml-3.1.4/test/haml/markaby/standard.mab +52 -0
  1172. data/vendor/bundle/gems/haml-3.1.4/test/haml/mocks/article.rb +6 -0
  1173. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/content_for_layout.xhtml +12 -0
  1174. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/eval_suppressed.xhtml +9 -0
  1175. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/filters.xhtml +62 -0
  1176. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/helpers.xhtml +70 -0
  1177. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/helpful.xhtml +10 -0
  1178. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/just_stuff.xhtml +70 -0
  1179. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/list.xhtml +12 -0
  1180. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
  1181. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
  1182. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/original_engine.xhtml +20 -0
  1183. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/partial_layout.xhtml +5 -0
  1184. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/partials.xhtml +21 -0
  1185. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/render_layout.xhtml +3 -0
  1186. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/silent_script.xhtml +74 -0
  1187. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/standard.xhtml +162 -0
  1188. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/tag_parsing.xhtml +23 -0
  1189. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/very_basic.xhtml +5 -0
  1190. data/vendor/bundle/gems/haml-3.1.4/test/haml/results/whitespace_handling.xhtml +89 -0
  1191. data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/README.md +97 -0
  1192. data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/lua_haml_spec.lua +30 -0
  1193. data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/ruby_haml_test.rb +19 -0
  1194. data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/tests.json +534 -0
  1195. data/vendor/bundle/gems/haml-3.1.4/test/haml/spec_test.rb +44 -0
  1196. data/vendor/bundle/gems/haml-3.1.4/test/haml/template_test.rb +435 -0
  1197. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_1.haml +9 -0
  1198. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_1_ugly.haml +9 -0
  1199. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_2.haml +5 -0
  1200. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_2_ugly.haml +5 -0
  1201. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_layout.erb +3 -0
  1202. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_layout_for_partial.haml +3 -0
  1203. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_partial.haml +8 -0
  1204. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_text_area.haml +3 -0
  1205. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/action_view.haml +47 -0
  1206. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/action_view_ugly.haml +47 -0
  1207. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/breakage.haml +8 -0
  1208. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/content_for_layout.haml +8 -0
  1209. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/eval_suppressed.haml +11 -0
  1210. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/filters.haml +66 -0
  1211. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/helpers.haml +55 -0
  1212. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/helpful.haml +11 -0
  1213. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/just_stuff.haml +85 -0
  1214. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/list.haml +12 -0
  1215. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/nuke_inner_whitespace.haml +32 -0
  1216. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/nuke_outer_whitespace.haml +144 -0
  1217. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/original_engine.haml +17 -0
  1218. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partial_layout.haml +10 -0
  1219. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partialize.haml +1 -0
  1220. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partials.haml +12 -0
  1221. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/render_layout.haml +2 -0
  1222. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/silent_script.haml +40 -0
  1223. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/standard.haml +43 -0
  1224. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/standard_ugly.haml +43 -0
  1225. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/tag_parsing.haml +21 -0
  1226. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/very_basic.haml +4 -0
  1227. data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/whitespace_handling.haml +87 -0
  1228. data/vendor/bundle/gems/haml-3.1.4/test/haml/util_test.rb +300 -0
  1229. data/vendor/bundle/gems/haml-3.1.4/test/linked_rails.rb +42 -0
  1230. data/vendor/bundle/gems/haml-3.1.4/test/test_helper.rb +75 -0
  1231. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/CONTRIBUTING +3 -0
  1232. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/MIT-LICENSE +20 -0
  1233. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/README.md +201 -0
  1234. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/Rakefile +339 -0
  1235. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/TODO +39 -0
  1236. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/VERSION +1 -0
  1237. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/VERSION_NAME +1 -0
  1238. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/sass +8 -0
  1239. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/sass-convert +7 -0
  1240. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/scss +8 -0
  1241. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/FAQ.md +35 -0
  1242. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/INDENTED_SYNTAX.md +210 -0
  1243. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SASS_CHANGELOG.md +2327 -0
  1244. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SASS_REFERENCE.md +1965 -0
  1245. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SCSS_FOR_SASS_USERS.md +155 -0
  1246. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/ext/extconf.rb +10 -0
  1247. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/extra/update_watch.rb +13 -0
  1248. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/init.rb +18 -0
  1249. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/base.rb +86 -0
  1250. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/chain.rb +33 -0
  1251. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/filesystem.rb +60 -0
  1252. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/memory.rb +47 -0
  1253. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/null.rb +25 -0
  1254. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores.rb +15 -0
  1255. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/callbacks.rb +66 -0
  1256. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/css.rb +295 -0
  1257. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/engine.rb +878 -0
  1258. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/environment.rb +166 -0
  1259. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/error.rb +201 -0
  1260. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/exec.rb +672 -0
  1261. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers/base.rb +139 -0
  1262. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers/filesystem.rb +149 -0
  1263. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers.rb +22 -0
  1264. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/less.rb +382 -0
  1265. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger/base.rb +32 -0
  1266. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger/log_level.rb +49 -0
  1267. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger.rb +15 -0
  1268. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/compiler.rb +383 -0
  1269. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/configuration.rb +123 -0
  1270. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/generic.rb +15 -0
  1271. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/merb.rb +48 -0
  1272. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/rack.rb +60 -0
  1273. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/rails.rb +47 -0
  1274. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/staleness_checker.rb +173 -0
  1275. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin.rb +132 -0
  1276. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/railtie.rb +9 -0
  1277. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/repl.rb +58 -0
  1278. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/root.rb +7 -0
  1279. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/bool.rb +18 -0
  1280. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/color.rb +480 -0
  1281. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/css_lexer.rb +29 -0
  1282. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/css_parser.rb +31 -0
  1283. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/funcall.rb +175 -0
  1284. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/functions.rb +1386 -0
  1285. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/interpolation.rb +79 -0
  1286. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/lexer.rb +339 -0
  1287. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/list.rb +83 -0
  1288. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/literal.rb +250 -0
  1289. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/node.rb +99 -0
  1290. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/number.rb +452 -0
  1291. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/operation.rb +99 -0
  1292. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/parser.rb +474 -0
  1293. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/string.rb +51 -0
  1294. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/string_interpolation.rb +103 -0
  1295. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/unary_operation.rb +64 -0
  1296. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/variable.rb +59 -0
  1297. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script.rb +40 -0
  1298. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/css_parser.rb +46 -0
  1299. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/parser.rb +960 -0
  1300. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/rx.rb +128 -0
  1301. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/sass_parser.rb +11 -0
  1302. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/script_lexer.rb +15 -0
  1303. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/script_parser.rb +25 -0
  1304. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/static_parser.rb +40 -0
  1305. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss.rb +17 -0
  1306. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/abstract_sequence.rb +62 -0
  1307. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/comma_sequence.rb +81 -0
  1308. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/sequence.rb +233 -0
  1309. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/simple.rb +113 -0
  1310. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/simple_sequence.rb +134 -0
  1311. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector.rb +361 -0
  1312. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/shared.rb +78 -0
  1313. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/charset_node.rb +22 -0
  1314. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/comment_node.rb +90 -0
  1315. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/debug_node.rb +18 -0
  1316. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/directive_node.rb +23 -0
  1317. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/each_node.rb +24 -0
  1318. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/extend_node.rb +29 -0
  1319. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/for_node.rb +36 -0
  1320. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/function_node.rb +27 -0
  1321. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/if_node.rb +52 -0
  1322. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/import_node.rb +68 -0
  1323. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/media_node.rb +32 -0
  1324. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/mixin_def_node.rb +27 -0
  1325. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/mixin_node.rb +32 -0
  1326. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/node.rb +201 -0
  1327. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/prop_node.rb +148 -0
  1328. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/return_node.rb +18 -0
  1329. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/root_node.rb +28 -0
  1330. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/rule_node.rb +136 -0
  1331. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/variable_node.rb +30 -0
  1332. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/base.rb +75 -0
  1333. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/check_nesting.rb +133 -0
  1334. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/convert.rb +260 -0
  1335. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/cssize.rb +175 -0
  1336. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/deep_copy.rb +87 -0
  1337. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/perform.rb +332 -0
  1338. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/set_options.rb +97 -0
  1339. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/to_css.rb +210 -0
  1340. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/warn_node.rb +18 -0
  1341. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/while_node.rb +18 -0
  1342. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/util/subset_map.rb +101 -0
  1343. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/util.rb +721 -0
  1344. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/version.rb +112 -0
  1345. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass.rb +73 -0
  1346. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/rails/init.rb +1 -0
  1347. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/sass.gemspec +33 -0
  1348. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/Gemfile +4 -0
  1349. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/cache_test.rb +89 -0
  1350. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/callbacks_test.rb +61 -0
  1351. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/conversion_test.rb +1199 -0
  1352. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/css2sass_test.rb +373 -0
  1353. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/data/hsl-rgb.txt +319 -0
  1354. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/engine_test.rb +2567 -0
  1355. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/extend_test.rb +1348 -0
  1356. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
  1357. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
  1358. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/functions_test.rb +1038 -0
  1359. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/importer_test.rb +192 -0
  1360. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/less_conversion_test.rb +653 -0
  1361. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/logger_test.rb +58 -0
  1362. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/mock_importer.rb +49 -0
  1363. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more1.css +9 -0
  1364. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more1_with_line_comments.css +26 -0
  1365. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more_import.css +29 -0
  1366. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/_more_partial.sass +2 -0
  1367. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/more1.sass +23 -0
  1368. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/more_import.sass +11 -0
  1369. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/plugin_test.rb +472 -0
  1370. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/alt.css +4 -0
  1371. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/basic.css +9 -0
  1372. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/compact.css +5 -0
  1373. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/complex.css +86 -0
  1374. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/compressed.css +1 -0
  1375. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/expanded.css +19 -0
  1376. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/if.css +3 -0
  1377. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import.css +31 -0
  1378. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset.css +4 -0
  1379. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset_1_8.css +4 -0
  1380. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset_ibm866.css +4 -0
  1381. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/line_numbers.css +49 -0
  1382. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/mixins.css +95 -0
  1383. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/multiline.css +24 -0
  1384. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/nested.css +22 -0
  1385. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/options.css +1 -0
  1386. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/parent_ref.css +13 -0
  1387. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/script.css +16 -0
  1388. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/scss_import.css +31 -0
  1389. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/scss_importee.css +2 -0
  1390. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
  1391. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/subdir/subdir.css +3 -0
  1392. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/units.css +11 -0
  1393. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/warn.css +0 -0
  1394. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/warn_imported.css +0 -0
  1395. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/script_conversion_test.rb +285 -0
  1396. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/script_test.rb +514 -0
  1397. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/css_test.rb +922 -0
  1398. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/rx_test.rb +156 -0
  1399. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/scss_test.rb +1273 -0
  1400. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/test_helper.rb +37 -0
  1401. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_imported_charset_ibm866.sass +4 -0
  1402. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_imported_charset_utf8.sass +4 -0
  1403. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_partial.sass +2 -0
  1404. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/alt.sass +16 -0
  1405. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/basic.sass +23 -0
  1406. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork1.sass +2 -0
  1407. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork2.sass +2 -0
  1408. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork3.sass +2 -0
  1409. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork4.sass +2 -0
  1410. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork5.sass +3 -0
  1411. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/compact.sass +17 -0
  1412. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/complex.sass +305 -0
  1413. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/compressed.sass +15 -0
  1414. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/expanded.sass +17 -0
  1415. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/if.sass +11 -0
  1416. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import.sass +12 -0
  1417. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset.sass +7 -0
  1418. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset_1_8.sass +4 -0
  1419. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset_ibm866.sass +9 -0
  1420. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/importee.less +2 -0
  1421. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/importee.sass +19 -0
  1422. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/line_numbers.sass +13 -0
  1423. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/mixin_bork.sass +5 -0
  1424. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/mixins.sass +76 -0
  1425. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/multiline.sass +20 -0
  1426. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested.sass +25 -0
  1427. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork1.sass +2 -0
  1428. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork2.sass +2 -0
  1429. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork3.sass +2 -0
  1430. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork4.sass +2 -0
  1431. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork5.sass +2 -0
  1432. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_import.sass +2 -0
  1433. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_mixin_bork.sass +6 -0
  1434. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/options.sass +2 -0
  1435. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/parent_ref.sass +25 -0
  1436. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/script.sass +101 -0
  1437. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/scss_import.scss +11 -0
  1438. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/scss_importee.scss +1 -0
  1439. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
  1440. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
  1441. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/subdir.sass +6 -0
  1442. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/units.sass +11 -0
  1443. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/warn.sass +3 -0
  1444. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/warn_imported.sass +4 -0
  1445. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/test_helper.rb +8 -0
  1446. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/util/subset_map_test.rb +91 -0
  1447. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/util_test.rb +266 -0
  1448. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/test_helper.rb +69 -0
  1449. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/Gemfile +3 -0
  1450. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/LICENSE +20 -0
  1451. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/README.markdown +83 -0
  1452. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/Rakefile +11 -0
  1453. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/example.rb +12 -0
  1454. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/fssm.gemspec +24 -0
  1455. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
  1456. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
  1457. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
  1458. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/rbfsevent.rb +42 -0
  1459. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
  1460. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/monitor.rb +36 -0
  1461. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/path.rb +94 -0
  1462. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/pathname.rb +36 -0
  1463. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/state/directory.rb +75 -0
  1464. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/state/file.rb +24 -0
  1465. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/support.rb +92 -0
  1466. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/tree.rb +176 -0
  1467. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/version.rb +3 -0
  1468. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm.rb +37 -0
  1469. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-cache.rb +40 -0
  1470. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
  1471. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-pathname-rubinius.rb +35 -0
  1472. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-pathname.rb +68 -0
  1473. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-plain-pathname.html +988 -0
  1474. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof.html +2379 -0
  1475. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/count_down_latch.rb +151 -0
  1476. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/monitor_spec.rb +202 -0
  1477. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/path_spec.rb +96 -0
  1478. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/duck/quack.txt +0 -0
  1479. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.css +0 -0
  1480. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.rb +0 -0
  1481. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.yml +0 -0
  1482. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/moo/cow.txt +0 -0
  1483. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/spec_helper.rb +14 -0
  1484. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/callbacks.rb +29 -0
  1485. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/default/fulldoc/html/css/common.sass +26 -0
  1486. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/default/layout/html/footer.erb +12 -0
  1487. data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/inherited_hash.rb +41 -0
  1488. data/vendor/bundle/gems/i18n-0.6.0/CHANGELOG.textile +152 -0
  1489. data/vendor/bundle/gems/i18n-0.6.0/MIT-LICENSE +20 -0
  1490. data/vendor/bundle/gems/i18n-0.6.0/README.textile +103 -0
  1491. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.no-rails +5 -0
  1492. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.no-rails.lock +14 -0
  1493. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x +9 -0
  1494. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x.lock +23 -0
  1495. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-3.x +9 -0
  1496. data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-3.x.lock +23 -0
  1497. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/base.rb +175 -0
  1498. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/cache.rb +96 -0
  1499. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/cascade.rb +53 -0
  1500. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/chain.rb +78 -0
  1501. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/fallbacks.rb +68 -0
  1502. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/flatten.rb +113 -0
  1503. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/gettext.rb +71 -0
  1504. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/interpolation_compiler.rb +121 -0
  1505. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/key_value.rb +101 -0
  1506. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/memoize.rb +46 -0
  1507. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/metadata.rb +65 -0
  1508. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/pluralization.rb +55 -0
  1509. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/simple.rb +87 -0
  1510. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/transliterator.rb +98 -0
  1511. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend.rb +18 -0
  1512. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/config.rb +86 -0
  1513. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb +29 -0
  1514. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
  1515. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/string/interpolate.rb +105 -0
  1516. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/exceptions.rb +106 -0
  1517. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext/helpers.rb +64 -0
  1518. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext/po_parser.rb +329 -0
  1519. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext.rb +25 -0
  1520. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/interpolate/ruby.rb +31 -0
  1521. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/fallbacks.rb +96 -0
  1522. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/parents.rb +22 -0
  1523. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
  1524. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/simple.rb +39 -0
  1525. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag.rb +28 -0
  1526. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale.rb +6 -0
  1527. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/basics.rb +54 -0
  1528. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/defaults.rb +40 -0
  1529. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/interpolation.rb +133 -0
  1530. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/link.rb +56 -0
  1531. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/date.rb +84 -0
  1532. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/date_time.rb +77 -0
  1533. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/procs.rb +116 -0
  1534. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/time.rb +76 -0
  1535. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization.rb +19 -0
  1536. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/lookup.rb +74 -0
  1537. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/pluralization.rb +35 -0
  1538. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/procs.rb +55 -0
  1539. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests.rb +12 -0
  1540. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/version.rb +3 -0
  1541. data/vendor/bundle/gems/i18n-0.6.0/lib/i18n.rb +331 -0
  1542. data/vendor/bundle/gems/i18n-0.6.0/test/all.rb +8 -0
  1543. data/vendor/bundle/gems/i18n-0.6.0/test/api/all_features_test.rb +58 -0
  1544. data/vendor/bundle/gems/i18n-0.6.0/test/api/cascade_test.rb +28 -0
  1545. data/vendor/bundle/gems/i18n-0.6.0/test/api/chain_test.rb +24 -0
  1546. data/vendor/bundle/gems/i18n-0.6.0/test/api/fallbacks_test.rb +30 -0
  1547. data/vendor/bundle/gems/i18n-0.6.0/test/api/key_value_test.rb +28 -0
  1548. data/vendor/bundle/gems/i18n-0.6.0/test/api/memoize_test.rb +60 -0
  1549. data/vendor/bundle/gems/i18n-0.6.0/test/api/pluralization_test.rb +30 -0
  1550. data/vendor/bundle/gems/i18n-0.6.0/test/api/simple_test.rb +28 -0
  1551. data/vendor/bundle/gems/i18n-0.6.0/test/backend/cache_test.rb +85 -0
  1552. data/vendor/bundle/gems/i18n-0.6.0/test/backend/cascade_test.rb +85 -0
  1553. data/vendor/bundle/gems/i18n-0.6.0/test/backend/chain_test.rb +72 -0
  1554. data/vendor/bundle/gems/i18n-0.6.0/test/backend/exceptions_test.rb +30 -0
  1555. data/vendor/bundle/gems/i18n-0.6.0/test/backend/fallbacks_test.rb +120 -0
  1556. data/vendor/bundle/gems/i18n-0.6.0/test/backend/interpolation_compiler_test.rb +102 -0
  1557. data/vendor/bundle/gems/i18n-0.6.0/test/backend/key_value_test.rb +46 -0
  1558. data/vendor/bundle/gems/i18n-0.6.0/test/backend/memoize_test.rb +47 -0
  1559. data/vendor/bundle/gems/i18n-0.6.0/test/backend/metadata_test.rb +67 -0
  1560. data/vendor/bundle/gems/i18n-0.6.0/test/backend/pluralization_test.rb +44 -0
  1561. data/vendor/bundle/gems/i18n-0.6.0/test/backend/simple_test.rb +83 -0
  1562. data/vendor/bundle/gems/i18n-0.6.0/test/backend/transliterator_test.rb +81 -0
  1563. data/vendor/bundle/gems/i18n-0.6.0/test/core_ext/hash_test.rb +30 -0
  1564. data/vendor/bundle/gems/i18n-0.6.0/test/core_ext/string/interpolate_test.rb +99 -0
  1565. data/vendor/bundle/gems/i18n-0.6.0/test/gettext/api_test.rb +206 -0
  1566. data/vendor/bundle/gems/i18n-0.6.0/test/gettext/backend_test.rb +93 -0
  1567. data/vendor/bundle/gems/i18n-0.6.0/test/i18n/exceptions_test.rb +116 -0
  1568. data/vendor/bundle/gems/i18n-0.6.0/test/i18n/interpolate_test.rb +61 -0
  1569. data/vendor/bundle/gems/i18n-0.6.0/test/i18n/load_path_test.rb +26 -0
  1570. data/vendor/bundle/gems/i18n-0.6.0/test/i18n_test.rb +236 -0
  1571. data/vendor/bundle/gems/i18n-0.6.0/test/locale/fallbacks_test.rb +124 -0
  1572. data/vendor/bundle/gems/i18n-0.6.0/test/locale/tag/rfc4646_test.rb +142 -0
  1573. data/vendor/bundle/gems/i18n-0.6.0/test/locale/tag/simple_test.rb +32 -0
  1574. data/vendor/bundle/gems/i18n-0.6.0/test/run_all.rb +21 -0
  1575. data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/de.po +72 -0
  1576. data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/en.rb +3 -0
  1577. data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/en.yml +3 -0
  1578. data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/invalid/empty.yml +1 -0
  1579. data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/plurals.rb +113 -0
  1580. data/vendor/bundle/gems/i18n-0.6.0/test/test_helper.rb +56 -0
  1581. data/vendor/bundle/gems/mongo-1.6.1/LICENSE.txt +190 -0
  1582. data/vendor/bundle/gems/mongo-1.6.1/README.md +333 -0
  1583. data/vendor/bundle/gems/mongo-1.6.1/Rakefile +317 -0
  1584. data/vendor/bundle/gems/mongo-1.6.1/bin/mongo_console +21 -0
  1585. data/vendor/bundle/gems/mongo-1.6.1/docs/CREDITS.md +123 -0
  1586. data/vendor/bundle/gems/mongo-1.6.1/docs/FAQ.md +116 -0
  1587. data/vendor/bundle/gems/mongo-1.6.1/docs/GridFS.md +158 -0
  1588. data/vendor/bundle/gems/mongo-1.6.1/docs/HISTORY.md +352 -0
  1589. data/vendor/bundle/gems/mongo-1.6.1/docs/READ_PREFERENCE.md +39 -0
  1590. data/vendor/bundle/gems/mongo-1.6.1/docs/RELEASES.md +47 -0
  1591. data/vendor/bundle/gems/mongo-1.6.1/docs/REPLICA_SETS.md +113 -0
  1592. data/vendor/bundle/gems/mongo-1.6.1/docs/TAILABLE_CURSORS.md +51 -0
  1593. data/vendor/bundle/gems/mongo-1.6.1/docs/TUTORIAL.md +247 -0
  1594. data/vendor/bundle/gems/mongo-1.6.1/docs/WRITE_CONCERN.md +31 -0
  1595. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/collection.rb +1002 -0
  1596. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/connection.rb +639 -0
  1597. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/cursor.rb +650 -0
  1598. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/db.rb +642 -0
  1599. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/exceptions.rb +84 -0
  1600. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid.rb +109 -0
  1601. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_ext.rb +57 -0
  1602. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_file_system.rb +156 -0
  1603. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_io.rb +485 -0
  1604. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_io_fix.rb +38 -0
  1605. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/networking.rb +364 -0
  1606. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/repl_set_connection.rb +543 -0
  1607. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/conversions.rb +89 -0
  1608. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/core_ext.rb +105 -0
  1609. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/logging.rb +58 -0
  1610. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/node.rb +201 -0
  1611. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/pool.rb +321 -0
  1612. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/pool_manager.rb +305 -0
  1613. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/server_version.rb +71 -0
  1614. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/ssl_socket.rb +39 -0
  1615. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/support.rb +90 -0
  1616. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/tcp_socket.rb +6 -0
  1617. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/uri_parser.rb +231 -0
  1618. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/version.rb +3 -0
  1619. data/vendor/bundle/gems/mongo-1.6.1/lib/mongo.rb +83 -0
  1620. data/vendor/bundle/gems/mongo-1.6.1/mongo.gemspec +34 -0
  1621. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/1.4_features.rb +166 -0
  1622. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/authentication_test.rb +76 -0
  1623. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/autoreconnect_test.rb +41 -0
  1624. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/fork_test.rb +30 -0
  1625. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/repl_set_auth_test.rb +57 -0
  1626. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/slave_connection_test.rb +36 -0
  1627. data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/threaded_authentication_test.rb +101 -0
  1628. data/vendor/bundle/gems/mongo-1.6.1/test/bson/binary_test.rb +13 -0
  1629. data/vendor/bundle/gems/mongo-1.6.1/test/bson/bson_test.rb +658 -0
  1630. data/vendor/bundle/gems/mongo-1.6.1/test/bson/byte_buffer_test.rb +208 -0
  1631. data/vendor/bundle/gems/mongo-1.6.1/test/bson/hash_with_indifferent_access_test.rb +38 -0
  1632. data/vendor/bundle/gems/mongo-1.6.1/test/bson/json_test.rb +17 -0
  1633. data/vendor/bundle/gems/mongo-1.6.1/test/bson/object_id_test.rb +138 -0
  1634. data/vendor/bundle/gems/mongo-1.6.1/test/bson/ordered_hash_test.rb +247 -0
  1635. data/vendor/bundle/gems/mongo-1.6.1/test/bson/test_helper.rb +30 -0
  1636. data/vendor/bundle/gems/mongo-1.6.1/test/bson/timestamp_test.rb +46 -0
  1637. data/vendor/bundle/gems/mongo-1.6.1/test/collection_test.rb +1097 -0
  1638. data/vendor/bundle/gems/mongo-1.6.1/test/connection_test.rb +369 -0
  1639. data/vendor/bundle/gems/mongo-1.6.1/test/conversions_test.rb +119 -0
  1640. data/vendor/bundle/gems/mongo-1.6.1/test/cursor_fail_test.rb +75 -0
  1641. data/vendor/bundle/gems/mongo-1.6.1/test/cursor_message_test.rb +43 -0
  1642. data/vendor/bundle/gems/mongo-1.6.1/test/cursor_test.rb +544 -0
  1643. data/vendor/bundle/gems/mongo-1.6.1/test/db_api_test.rb +738 -0
  1644. data/vendor/bundle/gems/mongo-1.6.1/test/db_connection_test.rb +15 -0
  1645. data/vendor/bundle/gems/mongo-1.6.1/test/db_test.rb +332 -0
  1646. data/vendor/bundle/gems/mongo-1.6.1/test/grid_file_system_test.rb +271 -0
  1647. data/vendor/bundle/gems/mongo-1.6.1/test/grid_io_test.rb +209 -0
  1648. data/vendor/bundle/gems/mongo-1.6.1/test/grid_test.rb +258 -0
  1649. data/vendor/bundle/gems/mongo-1.6.1/test/load/thin/load.rb +21 -0
  1650. data/vendor/bundle/gems/mongo-1.6.1/test/load/unicorn/load.rb +23 -0
  1651. data/vendor/bundle/gems/mongo-1.6.1/test/pool_test.rb +57 -0
  1652. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/basic_test.rb +112 -0
  1653. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/complex_connect_test.rb +44 -0
  1654. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/connect_test.rb +123 -0
  1655. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/count_test.rb +43 -0
  1656. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/insert_test.rb +52 -0
  1657. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/pooled_insert_test.rb +57 -0
  1658. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/query_test.rb +50 -0
  1659. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/read_preference_test.rb +181 -0
  1660. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/refresh_test.rb +154 -0
  1661. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/refresh_with_threads_test.rb +64 -0
  1662. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/replication_ack_test.rb +68 -0
  1663. data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/rs_test_helper.rb +39 -0
  1664. data/vendor/bundle/gems/mongo-1.6.1/test/safe_test.rb +68 -0
  1665. data/vendor/bundle/gems/mongo-1.6.1/test/support/hash_with_indifferent_access.rb +186 -0
  1666. data/vendor/bundle/gems/mongo-1.6.1/test/support/keys.rb +45 -0
  1667. data/vendor/bundle/gems/mongo-1.6.1/test/support_test.rb +18 -0
  1668. data/vendor/bundle/gems/mongo-1.6.1/test/test_helper.rb +110 -0
  1669. data/vendor/bundle/gems/mongo-1.6.1/test/threading/threading_with_large_pool_test.rb +90 -0
  1670. data/vendor/bundle/gems/mongo-1.6.1/test/threading_test.rb +95 -0
  1671. data/vendor/bundle/gems/mongo-1.6.1/test/tools/auth_repl_set_manager.rb +14 -0
  1672. data/vendor/bundle/gems/mongo-1.6.1/test/tools/repl_set_manager.rb +416 -0
  1673. data/vendor/bundle/gems/mongo-1.6.1/test/unit/collection_test.rb +140 -0
  1674. data/vendor/bundle/gems/mongo-1.6.1/test/unit/connection_test.rb +135 -0
  1675. data/vendor/bundle/gems/mongo-1.6.1/test/unit/cursor_test.rb +130 -0
  1676. data/vendor/bundle/gems/mongo-1.6.1/test/unit/db_test.rb +96 -0
  1677. data/vendor/bundle/gems/mongo-1.6.1/test/unit/grid_test.rb +53 -0
  1678. data/vendor/bundle/gems/mongo-1.6.1/test/unit/node_test.rb +73 -0
  1679. data/vendor/bundle/gems/mongo-1.6.1/test/unit/pool_manager_test.rb +49 -0
  1680. data/vendor/bundle/gems/mongo-1.6.1/test/unit/pool_test.rb +9 -0
  1681. data/vendor/bundle/gems/mongo-1.6.1/test/unit/read_test.rb +115 -0
  1682. data/vendor/bundle/gems/mongo-1.6.1/test/unit/safe_test.rb +125 -0
  1683. data/vendor/bundle/gems/mongo-1.6.1/test/uri_test.rb +111 -0
  1684. data/vendor/bundle/gems/mongoid-2.4.7/CHANGELOG.md +999 -0
  1685. data/vendor/bundle/gems/mongoid-2.4.7/LICENSE +20 -0
  1686. data/vendor/bundle/gems/mongoid-2.4.7/README.md +62 -0
  1687. data/vendor/bundle/gems/mongoid-2.4.7/Rakefile +49 -0
  1688. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/bg.yml +61 -0
  1689. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/de.yml +61 -0
  1690. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/en-GB.yml +64 -0
  1691. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/en.yml +64 -0
  1692. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/es.yml +59 -0
  1693. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/fr.yml +62 -0
  1694. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/hi.yml +53 -0
  1695. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/hu.yml +64 -0
  1696. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/id.yml +62 -0
  1697. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/it.yml +59 -0
  1698. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ja.yml +57 -0
  1699. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/kr.yml +54 -0
  1700. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/nl.yml +61 -0
  1701. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pl.yml +59 -0
  1702. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pt-BR.yml +60 -0
  1703. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pt.yml +60 -0
  1704. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ro.yml +66 -0
  1705. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ru.yml +61 -0
  1706. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/sv.yml +60 -0
  1707. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/vi.yml +62 -0
  1708. data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/zh-CN.yml +53 -0
  1709. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/modifiers.rb +275 -0
  1710. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
  1711. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
  1712. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded.rb +43 -0
  1713. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/root.rb +40 -0
  1714. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths.rb +3 -0
  1715. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic.rb +279 -0
  1716. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/attributes/processing.rb +146 -0
  1717. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/attributes.rb +220 -0
  1718. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/callbacks.rb +136 -0
  1719. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collection.rb +153 -0
  1720. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/master.rb +45 -0
  1721. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/operations.rb +44 -0
  1722. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/retry.rb +58 -0
  1723. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections.rb +120 -0
  1724. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/components.rb +99 -0
  1725. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/database.rb +181 -0
  1726. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/environment.rb +41 -0
  1727. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/options.rb +74 -0
  1728. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/replset_database.rb +80 -0
  1729. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config.rb +308 -0
  1730. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/enumerable/sort.rb +43 -0
  1731. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/enumerable.rb +313 -0
  1732. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/mongo.rb +485 -0
  1733. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts.rb +25 -0
  1734. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/copyable.rb +47 -0
  1735. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criteria.rb +421 -0
  1736. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/builder.rb +34 -0
  1737. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/complex.rb +84 -0
  1738. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/creational.rb +34 -0
  1739. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/exclusion.rb +108 -0
  1740. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/inclusion.rb +290 -0
  1741. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/inspection.rb +22 -0
  1742. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/optional.rb +259 -0
  1743. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/scoping.rb +83 -0
  1744. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/selector.rb +177 -0
  1745. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/cursor.rb +88 -0
  1746. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/default_scope.rb +36 -0
  1747. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/dirty.rb +287 -0
  1748. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/document.rb +335 -0
  1749. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/callback.rb +26 -0
  1750. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/document_not_found.rb +28 -0
  1751. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/eager_load.rb +25 -0
  1752. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_collection.rb +18 -0
  1753. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_database.rb +19 -0
  1754. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_field.rb +18 -0
  1755. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_find.rb +19 -0
  1756. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_options.rb +28 -0
  1757. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_time.rb +25 -0
  1758. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_type.rb +25 -0
  1759. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/mixed_relations.rb +37 -0
  1760. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/mongoid_error.rb +26 -0
  1761. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/no_environment.rb +19 -0
  1762. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/scope_overwrite.rb +21 -0
  1763. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
  1764. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/unsaved_document.rb +23 -0
  1765. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/unsupported_version.rb +20 -0
  1766. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/validations.rb +23 -0
  1767. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors.rb +19 -0
  1768. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/array/deep_copy.rb +25 -0
  1769. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/array/deletion.rb +29 -0
  1770. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/false_class/equality.rb +26 -0
  1771. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/criteria_helpers.rb +46 -0
  1772. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/deep_copy.rb +25 -0
  1773. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/scoping.rb +25 -0
  1774. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/integer/checks.rb +23 -0
  1775. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/nil/collectionization.rb +23 -0
  1776. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/checks.rb +29 -0
  1777. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/deep_copy.rb +21 -0
  1778. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/reflections.rb +48 -0
  1779. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/substitutable.rb +15 -0
  1780. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/yoda.rb +44 -0
  1781. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object_id/conversions.rb +60 -0
  1782. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/proc/scoping.rb +25 -0
  1783. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/checks.rb +36 -0
  1784. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/conversions.rb +22 -0
  1785. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/inflections.rb +118 -0
  1786. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/symbol/checks.rb +23 -0
  1787. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/symbol/inflections.rb +67 -0
  1788. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/true_class/equality.rb +26 -0
  1789. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions.rb +88 -0
  1790. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extras.rb +31 -0
  1791. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/factory.rb +46 -0
  1792. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/array.rb +76 -0
  1793. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/big_decimal.rb +57 -0
  1794. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/bignum.rb +10 -0
  1795. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/binary.rb +11 -0
  1796. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/boolean.rb +58 -0
  1797. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/date.rb +51 -0
  1798. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/date_time.rb +28 -0
  1799. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/false_class.rb +10 -0
  1800. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/fixnum.rb +10 -0
  1801. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/float.rb +47 -0
  1802. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/foreign_keys/array.rb +88 -0
  1803. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/foreign_keys/object.rb +56 -0
  1804. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/hash.rb +11 -0
  1805. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/integer.rb +59 -0
  1806. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/localized.rb +62 -0
  1807. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/nil_class.rb +53 -0
  1808. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/object.rb +11 -0
  1809. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/object_id.rb +46 -0
  1810. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/range.rb +61 -0
  1811. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/set.rb +57 -0
  1812. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/string.rb +42 -0
  1813. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/symbol.rb +43 -0
  1814. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/time.rb +23 -0
  1815. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/time_with_zone.rb +23 -0
  1816. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/timekeeping.rb +122 -0
  1817. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/true_class.rb +10 -0
  1818. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/mappings.rb +42 -0
  1819. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/serializable.rb +270 -0
  1820. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields.rb +525 -0
  1821. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/finders.rb +152 -0
  1822. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/hierarchy.rb +122 -0
  1823. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/identity.rb +92 -0
  1824. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/identity_map.rb +120 -0
  1825. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/indexes.rb +54 -0
  1826. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/inspection.rb +54 -0
  1827. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/javascript/functions.yml +63 -0
  1828. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/javascript.rb +20 -0
  1829. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/json.rb +16 -0
  1830. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/keys.rb +144 -0
  1831. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/logger.rb +45 -0
  1832. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/all.rb +28 -0
  1833. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/and.rb +30 -0
  1834. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/default.rb +70 -0
  1835. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/exists.rb +23 -0
  1836. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/gt.rb +21 -0
  1837. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/gte.rb +21 -0
  1838. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/in.rb +28 -0
  1839. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/lt.rb +21 -0
  1840. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/lte.rb +21 -0
  1841. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/ne.rb +21 -0
  1842. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/nin.rb +21 -0
  1843. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/or.rb +33 -0
  1844. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/size.rb +21 -0
  1845. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/strategies.rb +97 -0
  1846. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers.rb +32 -0
  1847. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/multi_database.rb +31 -0
  1848. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/multi_parameter_attributes.rb +106 -0
  1849. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/named_scope.rb +165 -0
  1850. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/nested_attributes.rb +54 -0
  1851. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/observer.rb +181 -0
  1852. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/paranoia.rb +159 -0
  1853. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/add_to_set.rb +51 -0
  1854. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/bit.rb +37 -0
  1855. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/inc.rb +31 -0
  1856. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/operation.rb +85 -0
  1857. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pop.rb +34 -0
  1858. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pull.rb +34 -0
  1859. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pull_all.rb +34 -0
  1860. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/push.rb +31 -0
  1861. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/push_all.rb +31 -0
  1862. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/rename.rb +31 -0
  1863. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/sets.rb +30 -0
  1864. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/unset.rb +28 -0
  1865. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic.rb +226 -0
  1866. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/deletion.rb +32 -0
  1867. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/insertion.rb +42 -0
  1868. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/modification.rb +37 -0
  1869. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/embedded/insert.rb +42 -0
  1870. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/embedded/remove.rb +40 -0
  1871. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/insert.rb +34 -0
  1872. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/remove.rb +33 -0
  1873. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/update.rb +55 -0
  1874. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations.rb +211 -0
  1875. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence.rb +271 -0
  1876. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railtie.rb +144 -0
  1877. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railties/database.rake +182 -0
  1878. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railties/document.rb +12 -0
  1879. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/accessors.rb +138 -0
  1880. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/auto_save.rb +38 -0
  1881. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/binding.rb +26 -0
  1882. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/in.rb +69 -0
  1883. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/many.rb +93 -0
  1884. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/one.rb +61 -0
  1885. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/in.rb +96 -0
  1886. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/many.rb +54 -0
  1887. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/many_to_many.rb +51 -0
  1888. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/one.rb +58 -0
  1889. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings.rb +9 -0
  1890. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builder.rb +57 -0
  1891. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/in.rb +29 -0
  1892. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/many.rb +36 -0
  1893. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/one.rb +30 -0
  1894. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/nested_attributes/many.rb +112 -0
  1895. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/nested_attributes/one.rb +135 -0
  1896. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/in.rb +26 -0
  1897. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/many.rb +27 -0
  1898. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/many_to_many.rb +38 -0
  1899. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/one.rb +26 -0
  1900. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders.rb +101 -0
  1901. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/delete.rb +36 -0
  1902. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/destroy.rb +43 -0
  1903. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/nullify.rb +35 -0
  1904. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb +55 -0
  1905. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/constraint.rb +42 -0
  1906. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/conversions.rb +35 -0
  1907. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cyclic.rb +107 -0
  1908. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/operation.rb +63 -0
  1909. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/pull.rb +65 -0
  1910. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/push_all.rb +59 -0
  1911. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/set.rb +61 -0
  1912. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/unset.rb +41 -0
  1913. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic.rb +89 -0
  1914. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/in.rb +220 -0
  1915. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/many.rb +655 -0
  1916. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/one.rb +206 -0
  1917. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/macros.rb +312 -0
  1918. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/many.rb +148 -0
  1919. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/metadata.rb +932 -0
  1920. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/nested_builder.rb +76 -0
  1921. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/one.rb +36 -0
  1922. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/options.rb +47 -0
  1923. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/polymorphic.rb +40 -0
  1924. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/proxy.rb +146 -0
  1925. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/batch/insert.rb +57 -0
  1926. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/batch.rb +73 -0
  1927. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/in.rb +262 -0
  1928. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/many.rb +700 -0
  1929. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/many_to_many.rb +385 -0
  1930. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/one.rb +276 -0
  1931. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/reflections.rb +62 -0
  1932. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/synchronization.rb +170 -0
  1933. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/targets/enumerable.rb +378 -0
  1934. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/targets.rb +2 -0
  1935. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations.rb +144 -0
  1936. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/reloading.rb +91 -0
  1937. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/safety.rb +105 -0
  1938. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/scope.rb +31 -0
  1939. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/serialization.rb +144 -0
  1940. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/sharding.rb +61 -0
  1941. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/state.rb +97 -0
  1942. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/threaded/lifecycle.rb +192 -0
  1943. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/threaded.rb +318 -0
  1944. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/created.rb +24 -0
  1945. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/timeless.rb +50 -0
  1946. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/updated.rb +36 -0
  1947. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps.rb +15 -0
  1948. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/associated.rb +46 -0
  1949. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/format.rb +40 -0
  1950. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/presence.rb +40 -0
  1951. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/uniqueness.rb +207 -0
  1952. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations.rb +177 -0
  1953. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/version.rb +4 -0
  1954. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/versioning.rb +198 -0
  1955. data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid.rb +148 -0
  1956. data/vendor/bundle/gems/mongoid-2.4.7/lib/rack/mongoid/middleware/identity_map.rb +38 -0
  1957. data/vendor/bundle/gems/mongoid-2.4.7/lib/rack/mongoid.rb +2 -0
  1958. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
  1959. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/config/templates/mongoid.yml +20 -0
  1960. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/model/model_generator.rb +24 -0
  1961. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
  1962. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/observer/observer_generator.rb +17 -0
  1963. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/observer/templates/observer.rb.tt +4 -0
  1964. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid_generator.rb +70 -0
  1965. data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/mongoid.rb +103 -0
  1966. data/vendor/bundle/gems/multi_json-1.2.0/.document +5 -0
  1967. data/vendor/bundle/gems/multi_json-1.2.0/.travis.yml +9 -0
  1968. data/vendor/bundle/gems/multi_json-1.2.0/Gemfile +7 -0
  1969. data/vendor/bundle/gems/multi_json-1.2.0/LICENSE.md +20 -0
  1970. data/vendor/bundle/gems/multi_json-1.2.0/README.md +117 -0
  1971. data/vendor/bundle/gems/multi_json-1.2.0/Rakefile +25 -0
  1972. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_common.rb +27 -0
  1973. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_gem.rb +12 -0
  1974. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_pure.rb +12 -0
  1975. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/nsjsonserialization.rb +34 -0
  1976. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/oj.rb +22 -0
  1977. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/ok_json.rb +48 -0
  1978. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/yajl.rb +18 -0
  1979. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/vendor/ok_json.rb +587 -0
  1980. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/version.rb +3 -0
  1981. data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json.rb +90 -0
  1982. data/vendor/bundle/gems/multi_json-1.2.0/multi_json.gemspec +22 -0
  1983. data/vendor/bundle/gems/multi_json-1.2.0/spec/engine_shared_example.rb +115 -0
  1984. data/vendor/bundle/gems/multi_json-1.2.0/spec/helper.rb +30 -0
  1985. data/vendor/bundle/gems/multi_json-1.2.0/spec/multi_json_spec.rb +72 -0
  1986. data/vendor/bundle/gems/rack-1.4.1/COPYING +18 -0
  1987. data/vendor/bundle/gems/rack-1.4.1/KNOWN-ISSUES +21 -0
  1988. data/vendor/bundle/gems/rack-1.4.1/README.rdoc +498 -0
  1989. data/vendor/bundle/gems/rack-1.4.1/Rakefile +115 -0
  1990. data/vendor/bundle/gems/rack-1.4.1/SPEC +171 -0
  1991. data/vendor/bundle/gems/rack-1.4.1/bin/rackup +4 -0
  1992. data/vendor/bundle/gems/rack-1.4.1/contrib/rack_logo.svg +111 -0
  1993. data/vendor/bundle/gems/rack-1.4.1/example/lobster.ru +4 -0
  1994. data/vendor/bundle/gems/rack-1.4.1/example/protectedlobster.rb +14 -0
  1995. data/vendor/bundle/gems/rack-1.4.1/example/protectedlobster.ru +8 -0
  1996. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/abstract/handler.rb +37 -0
  1997. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/abstract/request.rb +43 -0
  1998. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/basic.rb +58 -0
  1999. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/md5.rb +129 -0
  2000. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/nonce.rb +51 -0
  2001. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/params.rb +53 -0
  2002. data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/request.rb +41 -0
  2003. data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_18.rb +70 -0
  2004. data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_192.rb +55 -0
  2005. data/vendor/bundle/gems/rack-1.4.1/lib/rack/body_proxy.rb +29 -0
  2006. data/vendor/bundle/gems/rack-1.4.1/lib/rack/builder.rb +145 -0
  2007. data/vendor/bundle/gems/rack-1.4.1/lib/rack/cascade.rb +41 -0
  2008. data/vendor/bundle/gems/rack-1.4.1/lib/rack/chunked.rb +58 -0
  2009. data/vendor/bundle/gems/rack-1.4.1/lib/rack/commonlogger.rb +51 -0
  2010. data/vendor/bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb +67 -0
  2011. data/vendor/bundle/gems/rack-1.4.1/lib/rack/config.rb +15 -0
  2012. data/vendor/bundle/gems/rack-1.4.1/lib/rack/content_length.rb +33 -0
  2013. data/vendor/bundle/gems/rack-1.4.1/lib/rack/content_type.rb +29 -0
  2014. data/vendor/bundle/gems/rack-1.4.1/lib/rack/deflater.rb +99 -0
  2015. data/vendor/bundle/gems/rack-1.4.1/lib/rack/directory.rb +161 -0
  2016. data/vendor/bundle/gems/rack-1.4.1/lib/rack/etag.rb +61 -0
  2017. data/vendor/bundle/gems/rack-1.4.1/lib/rack/file.rb +142 -0
  2018. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/cgi.rb +61 -0
  2019. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/evented_mongrel.rb +8 -0
  2020. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/fastcgi.rb +98 -0
  2021. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/lsws.rb +61 -0
  2022. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/mongrel.rb +100 -0
  2023. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/scgi.rb +67 -0
  2024. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/swiftiplied_mongrel.rb +8 -0
  2025. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/thin.rb +24 -0
  2026. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb +80 -0
  2027. data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler.rb +94 -0
  2028. data/vendor/bundle/gems/rack-1.4.1/lib/rack/head.rb +19 -0
  2029. data/vendor/bundle/gems/rack-1.4.1/lib/rack/lint.rb +567 -0
  2030. data/vendor/bundle/gems/rack-1.4.1/lib/rack/lobster.rb +65 -0
  2031. data/vendor/bundle/gems/rack-1.4.1/lib/rack/lock.rb +25 -0
  2032. data/vendor/bundle/gems/rack-1.4.1/lib/rack/logger.rb +18 -0
  2033. data/vendor/bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb +33 -0
  2034. data/vendor/bundle/gems/rack-1.4.1/lib/rack/mime.rb +648 -0
  2035. data/vendor/bundle/gems/rack-1.4.1/lib/rack/mock.rb +189 -0
  2036. data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/generator.rb +93 -0
  2037. data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/parser.rb +167 -0
  2038. data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/uploaded_file.rb +34 -0
  2039. data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart.rb +34 -0
  2040. data/vendor/bundle/gems/rack-1.4.1/lib/rack/nulllogger.rb +18 -0
  2041. data/vendor/bundle/gems/rack-1.4.1/lib/rack/recursive.rb +61 -0
  2042. data/vendor/bundle/gems/rack-1.4.1/lib/rack/reloader.rb +109 -0
  2043. data/vendor/bundle/gems/rack-1.4.1/lib/rack/request.rb +341 -0
  2044. data/vendor/bundle/gems/rack-1.4.1/lib/rack/response.rb +155 -0
  2045. data/vendor/bundle/gems/rack-1.4.1/lib/rack/rewindable_input.rb +104 -0
  2046. data/vendor/bundle/gems/rack-1.4.1/lib/rack/runtime.rb +27 -0
  2047. data/vendor/bundle/gems/rack-1.4.1/lib/rack/sendfile.rb +141 -0
  2048. data/vendor/bundle/gems/rack-1.4.1/lib/rack/server.rb +323 -0
  2049. data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb +372 -0
  2050. data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/cookie.rb +161 -0
  2051. data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/memcache.rb +93 -0
  2052. data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/pool.rb +79 -0
  2053. data/vendor/bundle/gems/rack-1.4.1/lib/rack/showexceptions.rb +378 -0
  2054. data/vendor/bundle/gems/rack-1.4.1/lib/rack/showstatus.rb +113 -0
  2055. data/vendor/bundle/gems/rack-1.4.1/lib/rack/static.rb +71 -0
  2056. data/vendor/bundle/gems/rack-1.4.1/lib/rack/urlmap.rb +75 -0
  2057. data/vendor/bundle/gems/rack-1.4.1/lib/rack/utils.rb +547 -0
  2058. data/vendor/bundle/gems/rack-1.4.1/lib/rack.rb +83 -0
  2059. data/vendor/bundle/gems/rack-1.4.1/rack.gemspec +37 -0
  2060. data/vendor/bundle/gems/rack-1.4.1/test/builder/anything.rb +5 -0
  2061. data/vendor/bundle/gems/rack-1.4.1/test/builder/comment.ru +4 -0
  2062. data/vendor/bundle/gems/rack-1.4.1/test/builder/end.ru +5 -0
  2063. data/vendor/bundle/gems/rack-1.4.1/test/builder/options.ru +2 -0
  2064. data/vendor/bundle/gems/rack-1.4.1/test/cgi/lighttpd.conf +26 -0
  2065. data/vendor/bundle/gems/rack-1.4.1/test/cgi/rackup_stub.rb +6 -0
  2066. data/vendor/bundle/gems/rack-1.4.1/test/cgi/sample_rackup.ru +5 -0
  2067. data/vendor/bundle/gems/rack-1.4.1/test/cgi/test +9 -0
  2068. data/vendor/bundle/gems/rack-1.4.1/test/cgi/test+directory/test+file +1 -0
  2069. data/vendor/bundle/gems/rack-1.4.1/test/cgi/test.fcgi +8 -0
  2070. data/vendor/bundle/gems/rack-1.4.1/test/cgi/test.ru +5 -0
  2071. data/vendor/bundle/gems/rack-1.4.1/test/gemloader.rb +10 -0
  2072. data/vendor/bundle/gems/rack-1.4.1/test/multipart/bad_robots +259 -0
  2073. data/vendor/bundle/gems/rack-1.4.1/test/multipart/binary +0 -0
  2074. data/vendor/bundle/gems/rack-1.4.1/test/multipart/content_type_and_no_filename +6 -0
  2075. data/vendor/bundle/gems/rack-1.4.1/test/multipart/empty +10 -0
  2076. data/vendor/bundle/gems/rack-1.4.1/test/multipart/fail_16384_nofile +814 -0
  2077. data/vendor/bundle/gems/rack-1.4.1/test/multipart/file1.txt +1 -0
  2078. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_and_modification_param +7 -0
  2079. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_escaped_quotes +6 -0
  2080. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_escaped_quotes_and_modification_param +7 -0
  2081. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_percent_escaped_quotes +6 -0
  2082. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages +6 -0
  2083. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages2 +6 -0
  2084. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages3 +6 -0
  2085. data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_quotes +6 -0
  2086. data/vendor/bundle/gems/rack-1.4.1/test/multipart/ie +6 -0
  2087. data/vendor/bundle/gems/rack-1.4.1/test/multipart/mixed_files +21 -0
  2088. data/vendor/bundle/gems/rack-1.4.1/test/multipart/nested +10 -0
  2089. data/vendor/bundle/gems/rack-1.4.1/test/multipart/none +9 -0
  2090. data/vendor/bundle/gems/rack-1.4.1/test/multipart/semicolon +6 -0
  2091. data/vendor/bundle/gems/rack-1.4.1/test/multipart/text +15 -0
  2092. data/vendor/bundle/gems/rack-1.4.1/test/multipart/webkit +32 -0
  2093. data/vendor/bundle/gems/rack-1.4.1/test/rackup/config.ru +31 -0
  2094. data/vendor/bundle/gems/rack-1.4.1/test/registering_handler/rack/handler/registering_myself.rb +8 -0
  2095. data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_basic.rb +73 -0
  2096. data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_digest.rb +245 -0
  2097. data/vendor/bundle/gems/rack-1.4.1/test/spec_body_proxy.rb +65 -0
  2098. data/vendor/bundle/gems/rack-1.4.1/test/spec_builder.rb +201 -0
  2099. data/vendor/bundle/gems/rack-1.4.1/test/spec_cascade.rb +53 -0
  2100. data/vendor/bundle/gems/rack-1.4.1/test/spec_cgi.rb +102 -0
  2101. data/vendor/bundle/gems/rack-1.4.1/test/spec_chunked.rb +87 -0
  2102. data/vendor/bundle/gems/rack-1.4.1/test/spec_commonlogger.rb +57 -0
  2103. data/vendor/bundle/gems/rack-1.4.1/test/spec_conditionalget.rb +102 -0
  2104. data/vendor/bundle/gems/rack-1.4.1/test/spec_config.rb +23 -0
  2105. data/vendor/bundle/gems/rack-1.4.1/test/spec_content_length.rb +73 -0
  2106. data/vendor/bundle/gems/rack-1.4.1/test/spec_content_type.rb +35 -0
  2107. data/vendor/bundle/gems/rack-1.4.1/test/spec_deflater.rb +169 -0
  2108. data/vendor/bundle/gems/rack-1.4.1/test/spec_directory.rb +69 -0
  2109. data/vendor/bundle/gems/rack-1.4.1/test/spec_etag.rb +82 -0
  2110. data/vendor/bundle/gems/rack-1.4.1/test/spec_fastcgi.rb +107 -0
  2111. data/vendor/bundle/gems/rack-1.4.1/test/spec_file.rb +183 -0
  2112. data/vendor/bundle/gems/rack-1.4.1/test/spec_handler.rb +59 -0
  2113. data/vendor/bundle/gems/rack-1.4.1/test/spec_head.rb +30 -0
  2114. data/vendor/bundle/gems/rack-1.4.1/test/spec_lint.rb +515 -0
  2115. data/vendor/bundle/gems/rack-1.4.1/test/spec_lobster.rb +43 -0
  2116. data/vendor/bundle/gems/rack-1.4.1/test/spec_lock.rb +142 -0
  2117. data/vendor/bundle/gems/rack-1.4.1/test/spec_logger.rb +28 -0
  2118. data/vendor/bundle/gems/rack-1.4.1/test/spec_methodoverride.rb +73 -0
  2119. data/vendor/bundle/gems/rack-1.4.1/test/spec_mock.rb +264 -0
  2120. data/vendor/bundle/gems/rack-1.4.1/test/spec_mongrel.rb +182 -0
  2121. data/vendor/bundle/gems/rack-1.4.1/test/spec_multipart.rb +363 -0
  2122. data/vendor/bundle/gems/rack-1.4.1/test/spec_nulllogger.rb +12 -0
  2123. data/vendor/bundle/gems/rack-1.4.1/test/spec_recursive.rb +69 -0
  2124. data/vendor/bundle/gems/rack-1.4.1/test/spec_request.rb +938 -0
  2125. data/vendor/bundle/gems/rack-1.4.1/test/spec_response.rb +283 -0
  2126. data/vendor/bundle/gems/rack-1.4.1/test/spec_rewindable_input.rb +118 -0
  2127. data/vendor/bundle/gems/rack-1.4.1/test/spec_runtime.rb +39 -0
  2128. data/vendor/bundle/gems/rack-1.4.1/test/spec_sendfile.rb +86 -0
  2129. data/vendor/bundle/gems/rack-1.4.1/test/spec_server.rb +74 -0
  2130. data/vendor/bundle/gems/rack-1.4.1/test/spec_session_abstract_id.rb +43 -0
  2131. data/vendor/bundle/gems/rack-1.4.1/test/spec_session_cookie.rb +294 -0
  2132. data/vendor/bundle/gems/rack-1.4.1/test/spec_session_memcache.rb +319 -0
  2133. data/vendor/bundle/gems/rack-1.4.1/test/spec_session_pool.rb +206 -0
  2134. data/vendor/bundle/gems/rack-1.4.1/test/spec_showexceptions.rb +87 -0
  2135. data/vendor/bundle/gems/rack-1.4.1/test/spec_showstatus.rb +79 -0
  2136. data/vendor/bundle/gems/rack-1.4.1/test/spec_static.rb +69 -0
  2137. data/vendor/bundle/gems/rack-1.4.1/test/spec_thin.rb +86 -0
  2138. data/vendor/bundle/gems/rack-1.4.1/test/spec_urlmap.rb +213 -0
  2139. data/vendor/bundle/gems/rack-1.4.1/test/spec_utils.rb +524 -0
  2140. data/vendor/bundle/gems/rack-1.4.1/test/spec_webrick.rb +143 -0
  2141. data/vendor/bundle/gems/rack-1.4.1/test/static/index.html +1 -0
  2142. data/vendor/bundle/gems/rack-1.4.1/test/testrequest.rb +78 -0
  2143. data/vendor/bundle/gems/rack-1.4.1/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
  2144. data/vendor/bundle/gems/rack-1.4.1/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
  2145. data/vendor/bundle/gems/rack-protection-1.2.0/License +20 -0
  2146. data/vendor/bundle/gems/rack-protection-1.2.0/README.md +102 -0
  2147. data/vendor/bundle/gems/rack-protection-1.2.0/Rakefile +37 -0
  2148. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/authenticity_token.rb +24 -0
  2149. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/base.rb +97 -0
  2150. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/escaped_params.rb +87 -0
  2151. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/form_token.rb +23 -0
  2152. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/frame_options.rb +26 -0
  2153. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/ip_spoofing.rb +23 -0
  2154. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/json_csrf.rb +28 -0
  2155. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/path_traversal.rb +36 -0
  2156. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/remote_referrer.rb +23 -0
  2157. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/remote_token.rb +22 -0
  2158. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/session_hijacking.rb +35 -0
  2159. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/version.rb +16 -0
  2160. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb +27 -0
  2161. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection.rb +34 -0
  2162. data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack-protection.rb +1 -0
  2163. data/vendor/bundle/gems/rack-protection-1.2.0/rack-protection.gemspec +70 -0
  2164. data/vendor/bundle/gems/rack-protection-1.2.0/spec/authenticity_token_spec.rb +33 -0
  2165. data/vendor/bundle/gems/rack-protection-1.2.0/spec/escaped_params_spec.rb +34 -0
  2166. data/vendor/bundle/gems/rack-protection-1.2.0/spec/form_token_spec.rb +33 -0
  2167. data/vendor/bundle/gems/rack-protection-1.2.0/spec/frame_options_spec.rb +24 -0
  2168. data/vendor/bundle/gems/rack-protection-1.2.0/spec/ip_spoofing_spec.rb +35 -0
  2169. data/vendor/bundle/gems/rack-protection-1.2.0/spec/json_csrf_spec.rb +32 -0
  2170. data/vendor/bundle/gems/rack-protection-1.2.0/spec/path_traversal_spec.rb +28 -0
  2171. data/vendor/bundle/gems/rack-protection-1.2.0/spec/protection_spec.rb +20 -0
  2172. data/vendor/bundle/gems/rack-protection-1.2.0/spec/remote_referrer_spec.rb +31 -0
  2173. data/vendor/bundle/gems/rack-protection-1.2.0/spec/remote_token_spec.rb +42 -0
  2174. data/vendor/bundle/gems/rack-protection-1.2.0/spec/session_hijacking_spec.rb +40 -0
  2175. data/vendor/bundle/gems/rack-protection-1.2.0/spec/spec_helper.rb +157 -0
  2176. data/vendor/bundle/gems/rack-protection-1.2.0/spec/xss_header_spec.rb +24 -0
  2177. data/vendor/bundle/gems/rspec-2.9.0/License.txt +24 -0
  2178. data/vendor/bundle/gems/rspec-2.9.0/README.markdown +47 -0
  2179. data/vendor/bundle/gems/rspec-2.9.0/lib/rspec/version.rb +5 -0
  2180. data/vendor/bundle/gems/rspec-2.9.0/lib/rspec.rb +4 -0
  2181. data/vendor/bundle/gems/rspec-core-2.9.0/.document +5 -0
  2182. data/vendor/bundle/gems/rspec-core-2.9.0/.yardopts +3 -0
  2183. data/vendor/bundle/gems/rspec-core-2.9.0/Changelog.md +493 -0
  2184. data/vendor/bundle/gems/rspec-core-2.9.0/License.txt +24 -0
  2185. data/vendor/bundle/gems/rspec-core-2.9.0/README.md +228 -0
  2186. data/vendor/bundle/gems/rspec-core-2.9.0/exe/autospec +13 -0
  2187. data/vendor/bundle/gems/rspec-core-2.9.0/exe/rspec +25 -0
  2188. data/vendor/bundle/gems/rspec-core-2.9.0/features/Autotest.md +38 -0
  2189. data/vendor/bundle/gems/rspec-core-2.9.0/features/README.md +17 -0
  2190. data/vendor/bundle/gems/rspec-core-2.9.0/features/Upgrade.md +364 -0
  2191. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/README.md +28 -0
  2192. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/example_name_option.feature +86 -0
  2193. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/exit_status.feature +83 -0
  2194. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/format_option.feature +81 -0
  2195. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/init.feature +18 -0
  2196. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/line_number_appended_to_path.feature +140 -0
  2197. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/line_number_option.feature +58 -0
  2198. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/order.feature +29 -0
  2199. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/pattern_option.feature +31 -0
  2200. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/rake_task.feature +68 -0
  2201. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/ruby.feature +22 -0
  2202. data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/tag.feature +91 -0
  2203. data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/alias_example_to.feature +48 -0
  2204. data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/custom_settings.feature +84 -0
  2205. data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/default_path.feature +38 -0
  2206. data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/fail_fast.feature +77 -0
  2207. data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/read_options_from_file.feature +87 -0
  2208. data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/basic_structure.feature +55 -0
  2209. data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/shared_context.feature +74 -0
  2210. data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/shared_examples.feature +204 -0
  2211. data/vendor/bundle/gems/rspec-core-2.9.0/features/expectation_framework_integration/configure_expectation_framework.feature +73 -0
  2212. data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/exclusion_filters.feature +139 -0
  2213. data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/if_and_unless.feature +168 -0
  2214. data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/inclusion_filters.feature +105 -0
  2215. data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/run_all_when_everything_filtered.feature +46 -0
  2216. data/vendor/bundle/gems/rspec-core-2.9.0/features/formatters/custom_formatter.feature +36 -0
  2217. data/vendor/bundle/gems/rspec-core-2.9.0/features/formatters/text_formatter.feature +46 -0
  2218. data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/arbitrary_methods.feature +40 -0
  2219. data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/let.feature +50 -0
  2220. data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/modules.feature +149 -0
  2221. data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/around_hooks.feature +343 -0
  2222. data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/before_and_after_hooks.feature +423 -0
  2223. data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/filtering.feature +234 -0
  2224. data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/current_example.feature +17 -0
  2225. data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/described_class.feature +17 -0
  2226. data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/user_defined.feature +113 -0
  2227. data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_any_framework.feature +106 -0
  2228. data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_flexmock.feature +96 -0
  2229. data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_mocha.feature +97 -0
  2230. data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_rr.feature +98 -0
  2231. data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_rspec.feature +97 -0
  2232. data/vendor/bundle/gems/rspec-core-2.9.0/features/pending/pending_examples.feature +229 -0
  2233. data/vendor/bundle/gems/rspec-core-2.9.0/features/spec_files/arbitrary_file_suffix.feature +13 -0
  2234. data/vendor/bundle/gems/rspec-core-2.9.0/features/step_definitions/additional_cli_steps.rb +30 -0
  2235. data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/attribute_of_subject.feature +124 -0
  2236. data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/explicit_subject.feature +82 -0
  2237. data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/implicit_receiver.feature +29 -0
  2238. data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/implicit_subject.feature +63 -0
  2239. data/vendor/bundle/gems/rspec-core-2.9.0/features/support/env.rb +12 -0
  2240. data/vendor/bundle/gems/rspec-core-2.9.0/lib/autotest/discover.rb +1 -0
  2241. data/vendor/bundle/gems/rspec-core-2.9.0/lib/autotest/rspec2.rb +73 -0
  2242. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/autorun.rb +2 -0
  2243. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/backward_compatibility.rb +65 -0
  2244. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/command_line.rb +36 -0
  2245. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/configuration.rb +909 -0
  2246. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/configuration_options.rb +124 -0
  2247. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/deprecation.rb +51 -0
  2248. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/drb_command_line.rb +23 -0
  2249. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/drb_options.rb +85 -0
  2250. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/dsl.rb +24 -0
  2251. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/example.rb +247 -0
  2252. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/example_group.rb +443 -0
  2253. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
  2254. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/kernel.rb +9 -0
  2255. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
  2256. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/ordered.rb +21 -0
  2257. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions.rb +4 -0
  2258. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/filter_manager.rb +203 -0
  2259. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/base_formatter.rb +174 -0
  2260. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/base_text_formatter.rb +194 -0
  2261. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
  2262. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/helpers.rb +39 -0
  2263. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/html_formatter.rb +464 -0
  2264. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  2265. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
  2266. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  2267. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/hooks.rb +417 -0
  2268. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/let.rb +103 -0
  2269. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/load_path.rb +3 -0
  2270. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/metadata.rb +268 -0
  2271. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/metadata_hash_builder.rb +97 -0
  2272. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  2273. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  2274. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_mocha.rb +23 -0
  2275. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_rr.rb +27 -0
  2276. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_rspec.rb +23 -0
  2277. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/option_parser.rb +180 -0
  2278. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/pending.rb +101 -0
  2279. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/project_initializer.rb +81 -0
  2280. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/rake_task.rb +179 -0
  2281. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/reporter.rb +102 -0
  2282. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/ruby_project.rb +44 -0
  2283. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/runner.rb +76 -0
  2284. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/shared_context.rb +49 -0
  2285. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/shared_example_group.rb +72 -0
  2286. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/subject.rb +183 -0
  2287. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/version.rb +7 -0
  2288. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/world.rb +132 -0
  2289. data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core.rb +107 -0
  2290. data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/discover_spec.rb +19 -0
  2291. data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/failed_results_re_spec.rb +45 -0
  2292. data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/rspec_spec.rb +123 -0
  2293. data/vendor/bundle/gems/rspec-core-2.9.0/spec/command_line/order_spec.rb +137 -0
  2294. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/command_line_spec.rb +166 -0
  2295. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/command_line_spec_output.txt +0 -0
  2296. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/configuration_options_spec.rb +355 -0
  2297. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/configuration_spec.rb +1156 -0
  2298. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/deprecations_spec.rb +66 -0
  2299. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/drb_command_line_spec.rb +107 -0
  2300. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/drb_options_spec.rb +179 -0
  2301. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/example_group_spec.rb +1090 -0
  2302. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/example_spec.rb +302 -0
  2303. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/filter_manager_spec.rb +256 -0
  2304. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
  2305. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/base_text_formatter_spec.rb +344 -0
  2306. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
  2307. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/helpers_spec.rb +66 -0
  2308. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +410 -0
  2309. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.8.7.html +409 -0
  2310. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.9.2.html +416 -0
  2311. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.9.3.html +416 -0
  2312. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatter_spec.rb +82 -0
  2313. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  2314. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
  2315. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +410 -0
  2316. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +409 -0
  2317. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +416 -0
  2318. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +416 -0
  2319. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatter_spec.rb +83 -0
  2320. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  2321. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/hooks_spec.rb +143 -0
  2322. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  2323. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/let_spec.rb +55 -0
  2324. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/metadata_spec.rb +437 -0
  2325. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/option_parser_spec.rb +165 -0
  2326. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/pending_example_spec.rb +219 -0
  2327. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/project_initializer_spec.rb +130 -0
  2328. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/rake_task_spec.rb +138 -0
  2329. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/reporter_spec.rb +103 -0
  2330. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_bar.rb +0 -0
  2331. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_foo.rb +0 -0
  2332. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_spec.rb +1 -0
  2333. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  2334. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/formatter_specs.rb +60 -0
  2335. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  2336. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  2337. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/ruby_project_spec.rb +24 -0
  2338. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/runner_spec.rb +82 -0
  2339. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/shared_context_spec.rb +67 -0
  2340. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/shared_example_group_spec.rb +84 -0
  2341. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/subject_spec.rb +228 -0
  2342. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/world_spec.rb +144 -0
  2343. data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core_spec.rb +25 -0
  2344. data/vendor/bundle/gems/rspec-core-2.9.0/spec/spec_helper.rb +98 -0
  2345. data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/config_options_helper.rb +27 -0
  2346. data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/matchers.rb +65 -0
  2347. data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/shared_example_groups.rb +41 -0
  2348. data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/spec_files.rb +44 -0
  2349. data/vendor/bundle/gems/rspec-expectations-2.9.0/.document +5 -0
  2350. data/vendor/bundle/gems/rspec-expectations-2.9.0/.yardopts +3 -0
  2351. data/vendor/bundle/gems/rspec-expectations-2.9.0/Changelog.md +176 -0
  2352. data/vendor/bundle/gems/rspec-expectations-2.9.0/License.txt +23 -0
  2353. data/vendor/bundle/gems/rspec-expectations-2.9.0/README.md +147 -0
  2354. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/README.markdown +49 -0
  2355. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/Upgrade.md +53 -0
  2356. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/README.md +90 -0
  2357. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/be.feature +135 -0
  2358. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/be_within.feature +43 -0
  2359. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/cover.feature +45 -0
  2360. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/equality.feature +145 -0
  2361. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/exist.feature +43 -0
  2362. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/expect_change.feature +59 -0
  2363. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/expect_error.feature +138 -0
  2364. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/have.feature +103 -0
  2365. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/include.feature +121 -0
  2366. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/match.feature +50 -0
  2367. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/operators.feature +221 -0
  2368. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/predicates.feature +128 -0
  2369. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/respond_to.feature +78 -0
  2370. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/satisfy.feature +31 -0
  2371. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/throw_symbol.feature +85 -0
  2372. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/types.feature +114 -0
  2373. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/access_running_example.feature +53 -0
  2374. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_diffable_matcher.feature +27 -0
  2375. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher.feature +340 -0
  2376. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  2377. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  2378. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/customized_message.feature +22 -0
  2379. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/diffing.feature +85 -0
  2380. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/implicit_docstrings.feature +52 -0
  2381. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/step_definitions/additional_cli_steps.rb +22 -0
  2382. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/support/env.rb +5 -0
  2383. data/vendor/bundle/gems/rspec-expectations-2.9.0/features/test_frameworks/test_unit.feature +46 -0
  2384. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/deprecation.rb +38 -0
  2385. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/differ.rb +76 -0
  2386. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/errors.rb +9 -0
  2387. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/array.rb +9 -0
  2388. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/kernel.rb +26 -0
  2389. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/object.rb +39 -0
  2390. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions.rb +3 -0
  2391. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb +54 -0
  2392. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/handler.rb +48 -0
  2393. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/version.rb +8 -0
  2394. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations.rb +45 -0
  2395. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/be_close.rb +9 -0
  2396. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/block_aliases.rb +20 -0
  2397. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/base_matcher.rb +58 -0
  2398. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be.rb +183 -0
  2399. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +13 -0
  2400. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +13 -0
  2401. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_within.rb +39 -0
  2402. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/change.rb +132 -0
  2403. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/cover.rb +22 -0
  2404. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/eq.rb +26 -0
  2405. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/eql.rb +25 -0
  2406. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/equal.rb +48 -0
  2407. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/exist.rb +28 -0
  2408. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/has.rb +47 -0
  2409. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/have.rb +107 -0
  2410. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/include.rb +52 -0
  2411. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/match.rb +13 -0
  2412. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/match_array.rb +52 -0
  2413. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/raise_error.rb +96 -0
  2414. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/respond_to.rb +73 -0
  2415. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/satisfy.rb +29 -0
  2416. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +93 -0
  2417. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in.rb +33 -0
  2418. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/compatibility.rb +14 -0
  2419. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/dsl.rb +23 -0
  2420. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  2421. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
  2422. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/matcher.rb +298 -0
  2423. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/method_missing.rb +12 -0
  2424. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/operator_matcher.rb +84 -0
  2425. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/pretty.rb +60 -0
  2426. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers.rb +572 -0
  2427. data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec-expectations.rb +1 -0
  2428. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/differ_spec.rb +144 -0
  2429. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
  2430. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
  2431. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/handler_spec.rb +206 -0
  2432. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/base_matcher_spec.rb +52 -0
  2433. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_close_spec.rb +22 -0
  2434. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
  2435. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
  2436. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_spec.rb +452 -0
  2437. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_within_spec.rb +64 -0
  2438. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/change_spec.rb +522 -0
  2439. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
  2440. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/cover_spec.rb +65 -0
  2441. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/description_generation_spec.rb +176 -0
  2442. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/dsl_spec.rb +41 -0
  2443. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/eq_spec.rb +38 -0
  2444. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/eql_spec.rb +37 -0
  2445. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/equal_spec.rb +57 -0
  2446. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/exist_spec.rb +104 -0
  2447. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/has_spec.rb +113 -0
  2448. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/have_spec.rb +458 -0
  2449. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/include_spec.rb +351 -0
  2450. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/match_array_spec.rb +108 -0
  2451. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/match_spec.rb +57 -0
  2452. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/matcher_spec.rb +434 -0
  2453. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/matchers_spec.rb +31 -0
  2454. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/method_missing_spec.rb +24 -0
  2455. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
  2456. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
  2457. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
  2458. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
  2459. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/throw_symbol_spec.rb +111 -0
  2460. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/spec_helper.rb +27 -0
  2461. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/classes.rb +56 -0
  2462. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/matchers.rb +22 -0
  2463. data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/ruby_version.rb +10 -0
  2464. data/vendor/bundle/gems/rspec-mocks-2.9.0/.document +5 -0
  2465. data/vendor/bundle/gems/rspec-mocks-2.9.0/.yardopts +7 -0
  2466. data/vendor/bundle/gems/rspec-mocks-2.9.0/Changelog.md +147 -0
  2467. data/vendor/bundle/gems/rspec-mocks-2.9.0/License.txt +23 -0
  2468. data/vendor/bundle/gems/rspec-mocks-2.9.0/README.md +257 -0
  2469. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/README.markdown +67 -0
  2470. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/Scope.md +17 -0
  2471. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/Upgrade.md +22 -0
  2472. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/README.md +27 -0
  2473. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/explicit.feature +60 -0
  2474. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/general_matchers.feature +85 -0
  2475. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/type_matchers.feature +25 -0
  2476. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/README.md +58 -0
  2477. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/any_instance.feature +21 -0
  2478. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
  2479. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/expect_message.feature +94 -0
  2480. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/receive_counts.feature +209 -0
  2481. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  2482. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/README.md +43 -0
  2483. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/any_instance.feature +133 -0
  2484. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/as_null_object.feature +35 -0
  2485. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/simple_return_value.feature +64 -0
  2486. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/stub_chain.feature +51 -0
  2487. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/stub_implementation.feature +26 -0
  2488. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/to_ary.feature +47 -0
  2489. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/outside_rspec/configuration.feature +82 -0
  2490. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/outside_rspec/standalone.feature +32 -0
  2491. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/step_definitions/additional_cli_steps.rb +4 -0
  2492. data/vendor/bundle/gems/rspec-mocks-2.9.0/features/support/env.rb +6 -0
  2493. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/chain.rb +158 -0
  2494. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
  2495. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/recorder.rb +192 -0
  2496. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance.rb +45 -0
  2497. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/argument_expectation.rb +52 -0
  2498. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/argument_matchers.rb +230 -0
  2499. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/error_generator.rb +107 -0
  2500. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/errors.rb +12 -0
  2501. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/example_methods.rb +54 -0
  2502. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
  2503. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/marshal.rb +23 -0
  2504. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/psych.rb +23 -0
  2505. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/framework.rb +18 -0
  2506. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/message_expectation.rb +506 -0
  2507. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/method_double.rb +190 -0
  2508. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/methods.rb +151 -0
  2509. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/mock.rb +81 -0
  2510. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/order_group.rb +40 -0
  2511. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/proxy.rb +179 -0
  2512. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/serialization.rb +34 -0
  2513. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/space.rb +34 -0
  2514. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/standalone.rb +3 -0
  2515. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/version.rb +7 -0
  2516. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks.rb +39 -0
  2517. data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/spec/mocks.rb +2 -0
  2518. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
  2519. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  2520. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_instance_spec.rb +785 -0
  2521. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
  2522. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/argument_expectation_spec.rb +34 -0
  2523. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/at_least_spec.rb +103 -0
  2524. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/at_most_spec.rb +99 -0
  2525. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
  2526. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  2527. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
  2528. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  2529. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  2530. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  2531. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  2532. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  2533. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  2534. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  2535. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/double_spec.rb +12 -0
  2536. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
  2537. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
  2538. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  2539. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
  2540. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_space_spec.rb +58 -0
  2541. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_spec.rb +715 -0
  2542. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/multiple_return_value_spec.rb +188 -0
  2543. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
  2544. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/null_object_mock_spec.rb +78 -0
  2545. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
  2546. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
  2547. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/partial_mock_spec.rb +156 -0
  2548. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  2549. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  2550. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/precise_counts_spec.rb +58 -0
  2551. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
  2552. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/serialization_spec.rb +110 -0
  2553. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stash_spec.rb +27 -0
  2554. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_chain_spec.rb +149 -0
  2555. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
  2556. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_spec.rb +238 -0
  2557. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +47 -0
  2558. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/to_ary_spec.rb +40 -0
  2559. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
  2560. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks_spec.rb +51 -0
  2561. data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/spec_helper.rb +53 -0
  2562. data/vendor/bundle/gems/sass-3.1.15/.yardopts +11 -0
  2563. data/vendor/bundle/gems/sass-3.1.15/CONTRIBUTING +3 -0
  2564. data/vendor/bundle/gems/sass-3.1.15/MIT-LICENSE +20 -0
  2565. data/vendor/bundle/gems/sass-3.1.15/README.md +201 -0
  2566. data/vendor/bundle/gems/sass-3.1.15/REVISION +1 -0
  2567. data/vendor/bundle/gems/sass-3.1.15/Rakefile +339 -0
  2568. data/vendor/bundle/gems/sass-3.1.15/VERSION +1 -0
  2569. data/vendor/bundle/gems/sass-3.1.15/VERSION_NAME +1 -0
  2570. data/vendor/bundle/gems/sass-3.1.15/bin/sass +8 -0
  2571. data/vendor/bundle/gems/sass-3.1.15/bin/sass-convert +7 -0
  2572. data/vendor/bundle/gems/sass-3.1.15/bin/scss +8 -0
  2573. data/vendor/bundle/gems/sass-3.1.15/extra/update_watch.rb +13 -0
  2574. data/vendor/bundle/gems/sass-3.1.15/init.rb +18 -0
  2575. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/base.rb +86 -0
  2576. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/chain.rb +33 -0
  2577. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/filesystem.rb +61 -0
  2578. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/memory.rb +47 -0
  2579. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/null.rb +25 -0
  2580. data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores.rb +15 -0
  2581. data/vendor/bundle/gems/sass-3.1.15/lib/sass/callbacks.rb +66 -0
  2582. data/vendor/bundle/gems/sass-3.1.15/lib/sass/css.rb +294 -0
  2583. data/vendor/bundle/gems/sass-3.1.15/lib/sass/engine.rb +877 -0
  2584. data/vendor/bundle/gems/sass-3.1.15/lib/sass/environment.rb +180 -0
  2585. data/vendor/bundle/gems/sass-3.1.15/lib/sass/error.rb +201 -0
  2586. data/vendor/bundle/gems/sass-3.1.15/lib/sass/exec.rb +682 -0
  2587. data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers/base.rb +139 -0
  2588. data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers/filesystem.rb +149 -0
  2589. data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers.rb +22 -0
  2590. data/vendor/bundle/gems/sass-3.1.15/lib/sass/less.rb +382 -0
  2591. data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger/base.rb +32 -0
  2592. data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger/log_level.rb +49 -0
  2593. data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger.rb +15 -0
  2594. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/compiler.rb +383 -0
  2595. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/configuration.rb +123 -0
  2596. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/generic.rb +15 -0
  2597. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/merb.rb +48 -0
  2598. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/rack.rb +60 -0
  2599. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/rails.rb +47 -0
  2600. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/staleness_checker.rb +183 -0
  2601. data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin.rb +132 -0
  2602. data/vendor/bundle/gems/sass-3.1.15/lib/sass/railtie.rb +9 -0
  2603. data/vendor/bundle/gems/sass-3.1.15/lib/sass/repl.rb +57 -0
  2604. data/vendor/bundle/gems/sass-3.1.15/lib/sass/root.rb +7 -0
  2605. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/bool.rb +18 -0
  2606. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/color.rb +480 -0
  2607. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/css_lexer.rb +29 -0
  2608. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/css_parser.rb +31 -0
  2609. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/funcall.rb +175 -0
  2610. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/functions.rb +1395 -0
  2611. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/interpolation.rb +79 -0
  2612. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/lexer.rb +337 -0
  2613. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/list.rb +83 -0
  2614. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/literal.rb +230 -0
  2615. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/node.rb +99 -0
  2616. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/number.rb +452 -0
  2617. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/operation.rb +107 -0
  2618. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/parser.rb +474 -0
  2619. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/string.rb +51 -0
  2620. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/string_interpolation.rb +103 -0
  2621. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/unary_operation.rb +64 -0
  2622. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/variable.rb +58 -0
  2623. data/vendor/bundle/gems/sass-3.1.15/lib/sass/script.rb +39 -0
  2624. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/css_parser.rb +46 -0
  2625. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/parser.rb +973 -0
  2626. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/rx.rb +132 -0
  2627. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/sass_parser.rb +11 -0
  2628. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/script_lexer.rb +15 -0
  2629. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/script_parser.rb +25 -0
  2630. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/static_parser.rb +40 -0
  2631. data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss.rb +17 -0
  2632. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/abstract_sequence.rb +62 -0
  2633. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/comma_sequence.rb +81 -0
  2634. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/sequence.rb +293 -0
  2635. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/simple.rb +113 -0
  2636. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/simple_sequence.rb +134 -0
  2637. data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector.rb +373 -0
  2638. data/vendor/bundle/gems/sass-3.1.15/lib/sass/shared.rb +76 -0
  2639. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/charset_node.rb +22 -0
  2640. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/comment_node.rb +90 -0
  2641. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/debug_node.rb +18 -0
  2642. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/directive_node.rb +23 -0
  2643. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/each_node.rb +24 -0
  2644. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/extend_node.rb +29 -0
  2645. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/for_node.rb +36 -0
  2646. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/function_node.rb +27 -0
  2647. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/if_node.rb +52 -0
  2648. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/import_node.rb +68 -0
  2649. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/media_node.rb +32 -0
  2650. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/mixin_def_node.rb +27 -0
  2651. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/mixin_node.rb +32 -0
  2652. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/node.rb +201 -0
  2653. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/prop_node.rb +148 -0
  2654. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/return_node.rb +18 -0
  2655. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/root_node.rb +28 -0
  2656. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/rule_node.rb +136 -0
  2657. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/variable_node.rb +30 -0
  2658. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/base.rb +75 -0
  2659. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/check_nesting.rb +133 -0
  2660. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/convert.rb +261 -0
  2661. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/cssize.rb +191 -0
  2662. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/deep_copy.rb +87 -0
  2663. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/perform.rb +357 -0
  2664. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/set_options.rb +97 -0
  2665. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/to_css.rb +218 -0
  2666. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/warn_node.rb +18 -0
  2667. data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/while_node.rb +18 -0
  2668. data/vendor/bundle/gems/sass-3.1.15/lib/sass/util/multibyte_string_scanner.rb +134 -0
  2669. data/vendor/bundle/gems/sass-3.1.15/lib/sass/util/subset_map.rb +101 -0
  2670. data/vendor/bundle/gems/sass-3.1.15/lib/sass/util.rb +754 -0
  2671. data/vendor/bundle/gems/sass-3.1.15/lib/sass/version.rb +112 -0
  2672. data/vendor/bundle/gems/sass-3.1.15/lib/sass.rb +73 -0
  2673. data/vendor/bundle/gems/sass-3.1.15/rails/init.rb +1 -0
  2674. data/vendor/bundle/gems/sass-3.1.15/test/Gemfile +4 -0
  2675. data/vendor/bundle/gems/sass-3.1.15/test/sass/cache_test.rb +89 -0
  2676. data/vendor/bundle/gems/sass-3.1.15/test/sass/callbacks_test.rb +61 -0
  2677. data/vendor/bundle/gems/sass-3.1.15/test/sass/conversion_test.rb +1209 -0
  2678. data/vendor/bundle/gems/sass-3.1.15/test/sass/css2sass_test.rb +373 -0
  2679. data/vendor/bundle/gems/sass-3.1.15/test/sass/data/hsl-rgb.txt +319 -0
  2680. data/vendor/bundle/gems/sass-3.1.15/test/sass/engine_test.rb +2711 -0
  2681. data/vendor/bundle/gems/sass-3.1.15/test/sass/extend_test.rb +1450 -0
  2682. data/vendor/bundle/gems/sass-3.1.15/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
  2683. data/vendor/bundle/gems/sass-3.1.15/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
  2684. data/vendor/bundle/gems/sass-3.1.15/test/sass/functions_test.rb +1041 -0
  2685. data/vendor/bundle/gems/sass-3.1.15/test/sass/importer_test.rb +192 -0
  2686. data/vendor/bundle/gems/sass-3.1.15/test/sass/less_conversion_test.rb +653 -0
  2687. data/vendor/bundle/gems/sass-3.1.15/test/sass/logger_test.rb +58 -0
  2688. data/vendor/bundle/gems/sass-3.1.15/test/sass/mock_importer.rb +49 -0
  2689. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more1.css +9 -0
  2690. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more1_with_line_comments.css +26 -0
  2691. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more_import.css +29 -0
  2692. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/_more_partial.sass +2 -0
  2693. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/more1.sass +23 -0
  2694. data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/more_import.sass +11 -0
  2695. data/vendor/bundle/gems/sass-3.1.15/test/sass/plugin_test.rb +496 -0
  2696. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/alt.css +4 -0
  2697. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/basic.css +9 -0
  2698. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/compact.css +5 -0
  2699. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/complex.css +86 -0
  2700. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/compressed.css +1 -0
  2701. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/expanded.css +19 -0
  2702. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/if.css +3 -0
  2703. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import.css +31 -0
  2704. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset.css +5 -0
  2705. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset_1_8.css +5 -0
  2706. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset_ibm866.css +5 -0
  2707. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/line_numbers.css +49 -0
  2708. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/mixins.css +95 -0
  2709. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/multiline.css +24 -0
  2710. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/nested.css +22 -0
  2711. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/options.css +1 -0
  2712. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/parent_ref.css +13 -0
  2713. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/script.css +16 -0
  2714. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/scss_import.css +31 -0
  2715. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/scss_importee.css +2 -0
  2716. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
  2717. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/subdir/subdir.css +3 -0
  2718. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/units.css +11 -0
  2719. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/warn.css +0 -0
  2720. data/vendor/bundle/gems/sass-3.1.15/test/sass/results/warn_imported.css +0 -0
  2721. data/vendor/bundle/gems/sass-3.1.15/test/sass/script_conversion_test.rb +285 -0
  2722. data/vendor/bundle/gems/sass-3.1.15/test/sass/script_test.rb +519 -0
  2723. data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/css_test.rb +922 -0
  2724. data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/rx_test.rb +156 -0
  2725. data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/scss_test.rb +1298 -0
  2726. data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/test_helper.rb +37 -0
  2727. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_double_import_loop2.sass +1 -0
  2728. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_imported_charset_ibm866.sass +4 -0
  2729. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_imported_charset_utf8.sass +4 -0
  2730. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_partial.sass +2 -0
  2731. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/alt.sass +16 -0
  2732. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/basic.sass +23 -0
  2733. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork1.sass +2 -0
  2734. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork2.sass +2 -0
  2735. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork3.sass +2 -0
  2736. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork4.sass +2 -0
  2737. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork5.sass +3 -0
  2738. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/compact.sass +17 -0
  2739. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/complex.sass +305 -0
  2740. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/compressed.sass +15 -0
  2741. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/double_import_loop1.sass +1 -0
  2742. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/expanded.sass +17 -0
  2743. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/if.sass +11 -0
  2744. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import.sass +12 -0
  2745. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset.sass +9 -0
  2746. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset_1_8.sass +6 -0
  2747. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset_ibm866.sass +11 -0
  2748. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/importee.less +2 -0
  2749. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/importee.sass +19 -0
  2750. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/line_numbers.sass +13 -0
  2751. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/mixin_bork.sass +5 -0
  2752. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/mixins.sass +76 -0
  2753. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/multiline.sass +20 -0
  2754. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested.sass +25 -0
  2755. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork1.sass +2 -0
  2756. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork2.sass +2 -0
  2757. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork3.sass +2 -0
  2758. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork4.sass +2 -0
  2759. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork5.sass +2 -0
  2760. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_import.sass +2 -0
  2761. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_mixin_bork.sass +6 -0
  2762. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/options.sass +2 -0
  2763. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/parent_ref.sass +25 -0
  2764. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/script.sass +101 -0
  2765. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/scss_import.scss +11 -0
  2766. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/scss_importee.scss +1 -0
  2767. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/single_import_loop.sass +1 -0
  2768. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
  2769. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
  2770. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/subdir.sass +6 -0
  2771. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/units.sass +11 -0
  2772. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/warn.sass +3 -0
  2773. data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/warn_imported.sass +4 -0
  2774. data/vendor/bundle/gems/sass-3.1.15/test/sass/test_helper.rb +8 -0
  2775. data/vendor/bundle/gems/sass-3.1.15/test/sass/util/multibyte_string_scanner_test.rb +147 -0
  2776. data/vendor/bundle/gems/sass-3.1.15/test/sass/util/subset_map_test.rb +91 -0
  2777. data/vendor/bundle/gems/sass-3.1.15/test/sass/util_test.rb +272 -0
  2778. data/vendor/bundle/gems/sass-3.1.15/test/test_helper.rb +70 -0
  2779. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/Gemfile +3 -0
  2780. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/LICENSE +20 -0
  2781. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/README.markdown +83 -0
  2782. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/Rakefile +11 -0
  2783. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/example.rb +12 -0
  2784. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/ext/rakefile.rb +14 -0
  2785. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/fssm.gemspec +27 -0
  2786. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
  2787. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
  2788. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
  2789. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/rbfsevent.rb +42 -0
  2790. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
  2791. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/monitor.rb +36 -0
  2792. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/path.rb +94 -0
  2793. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/pathname.rb +36 -0
  2794. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/state/directory.rb +75 -0
  2795. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/state/file.rb +24 -0
  2796. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/support.rb +87 -0
  2797. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/tree.rb +176 -0
  2798. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/version.rb +3 -0
  2799. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm.rb +74 -0
  2800. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-cache.rb +40 -0
  2801. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
  2802. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-pathname-rubinius.rb +35 -0
  2803. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-pathname.rb +68 -0
  2804. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-plain-pathname.html +988 -0
  2805. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof.html +2379 -0
  2806. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/count_down_latch.rb +151 -0
  2807. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/monitor_spec.rb +202 -0
  2808. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/path_spec.rb +96 -0
  2809. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/duck/quack.txt +0 -0
  2810. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.css +0 -0
  2811. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.rb +0 -0
  2812. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.yml +0 -0
  2813. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/moo/cow.txt +0 -0
  2814. data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/spec_helper.rb +14 -0
  2815. data/vendor/bundle/gems/sinatra-1.3.2/.yardopts +4 -0
  2816. data/vendor/bundle/gems/sinatra-1.3.2/AUTHORS +58 -0
  2817. data/vendor/bundle/gems/sinatra-1.3.2/CHANGES +1010 -0
  2818. data/vendor/bundle/gems/sinatra-1.3.2/Gemfile +77 -0
  2819. data/vendor/bundle/gems/sinatra-1.3.2/LICENSE +22 -0
  2820. data/vendor/bundle/gems/sinatra-1.3.2/README.de.rdoc +1961 -0
  2821. data/vendor/bundle/gems/sinatra-1.3.2/README.es.rdoc +2043 -0
  2822. data/vendor/bundle/gems/sinatra-1.3.2/README.fr.rdoc +1983 -0
  2823. data/vendor/bundle/gems/sinatra-1.3.2/README.hu.rdoc +607 -0
  2824. data/vendor/bundle/gems/sinatra-1.3.2/README.jp.rdoc +1043 -0
  2825. data/vendor/bundle/gems/sinatra-1.3.2/README.pt-br.rdoc +647 -0
  2826. data/vendor/bundle/gems/sinatra-1.3.2/README.pt-pt.rdoc +646 -0
  2827. data/vendor/bundle/gems/sinatra-1.3.2/README.rdoc +1979 -0
  2828. data/vendor/bundle/gems/sinatra-1.3.2/README.ru.rdoc +1785 -0
  2829. data/vendor/bundle/gems/sinatra-1.3.2/README.zh.rdoc +1816 -0
  2830. data/vendor/bundle/gems/sinatra-1.3.2/Rakefile +181 -0
  2831. data/vendor/bundle/gems/sinatra-1.3.2/examples/chat.rb +61 -0
  2832. data/vendor/bundle/gems/sinatra-1.3.2/examples/simple.rb +3 -0
  2833. data/vendor/bundle/gems/sinatra-1.3.2/examples/stream.ru +26 -0
  2834. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/base.rb +1642 -0
  2835. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/images/404.png +0 -0
  2836. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/images/500.png +0 -0
  2837. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/main.rb +28 -0
  2838. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb +340 -0
  2839. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/version.rb +3 -0
  2840. data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra.rb +7 -0
  2841. data/vendor/bundle/gems/sinatra-1.3.2/sinatra.gemspec +18 -0
  2842. data/vendor/bundle/gems/sinatra-1.3.2/test/base_test.rb +160 -0
  2843. data/vendor/bundle/gems/sinatra-1.3.2/test/builder_test.rb +95 -0
  2844. data/vendor/bundle/gems/sinatra-1.3.2/test/coffee_test.rb +92 -0
  2845. data/vendor/bundle/gems/sinatra-1.3.2/test/contest.rb +98 -0
  2846. data/vendor/bundle/gems/sinatra-1.3.2/test/creole_test.rb +65 -0
  2847. data/vendor/bundle/gems/sinatra-1.3.2/test/delegator_test.rb +162 -0
  2848. data/vendor/bundle/gems/sinatra-1.3.2/test/encoding_test.rb +20 -0
  2849. data/vendor/bundle/gems/sinatra-1.3.2/test/erb_test.rb +104 -0
  2850. data/vendor/bundle/gems/sinatra-1.3.2/test/extensions_test.rb +100 -0
  2851. data/vendor/bundle/gems/sinatra-1.3.2/test/filter_test.rb +428 -0
  2852. data/vendor/bundle/gems/sinatra-1.3.2/test/haml_test.rb +101 -0
  2853. data/vendor/bundle/gems/sinatra-1.3.2/test/helper.rb +123 -0
  2854. data/vendor/bundle/gems/sinatra-1.3.2/test/helpers_test.rb +1783 -0
  2855. data/vendor/bundle/gems/sinatra-1.3.2/test/integration/app.rb +6 -0
  2856. data/vendor/bundle/gems/sinatra-1.3.2/test/integration_test.rb +65 -0
  2857. data/vendor/bundle/gems/sinatra-1.3.2/test/less_test.rb +67 -0
  2858. data/vendor/bundle/gems/sinatra-1.3.2/test/liquid_test.rb +59 -0
  2859. data/vendor/bundle/gems/sinatra-1.3.2/test/mapped_error_test.rb +259 -0
  2860. data/vendor/bundle/gems/sinatra-1.3.2/test/markaby_test.rb +80 -0
  2861. data/vendor/bundle/gems/sinatra-1.3.2/test/markdown_test.rb +81 -0
  2862. data/vendor/bundle/gems/sinatra-1.3.2/test/middleware_test.rb +68 -0
  2863. data/vendor/bundle/gems/sinatra-1.3.2/test/nokogiri_test.rb +69 -0
  2864. data/vendor/bundle/gems/sinatra-1.3.2/test/public/favicon.ico +0 -0
  2865. data/vendor/bundle/gems/sinatra-1.3.2/test/rack_test.rb +45 -0
  2866. data/vendor/bundle/gems/sinatra-1.3.2/test/radius_test.rb +59 -0
  2867. data/vendor/bundle/gems/sinatra-1.3.2/test/rdoc_test.rb +66 -0
  2868. data/vendor/bundle/gems/sinatra-1.3.2/test/readme_test.rb +136 -0
  2869. data/vendor/bundle/gems/sinatra-1.3.2/test/request_test.rb +45 -0
  2870. data/vendor/bundle/gems/sinatra-1.3.2/test/response_test.rb +61 -0
  2871. data/vendor/bundle/gems/sinatra-1.3.2/test/result_test.rb +98 -0
  2872. data/vendor/bundle/gems/sinatra-1.3.2/test/route_added_hook_test.rb +59 -0
  2873. data/vendor/bundle/gems/sinatra-1.3.2/test/routing_test.rb +1098 -0
  2874. data/vendor/bundle/gems/sinatra-1.3.2/test/sass_test.rb +115 -0
  2875. data/vendor/bundle/gems/sinatra-1.3.2/test/scss_test.rb +88 -0
  2876. data/vendor/bundle/gems/sinatra-1.3.2/test/server_test.rb +48 -0
  2877. data/vendor/bundle/gems/sinatra-1.3.2/test/settings_test.rb +538 -0
  2878. data/vendor/bundle/gems/sinatra-1.3.2/test/sinatra_test.rb +17 -0
  2879. data/vendor/bundle/gems/sinatra-1.3.2/test/slim_test.rb +88 -0
  2880. data/vendor/bundle/gems/sinatra-1.3.2/test/static_test.rb +177 -0
  2881. data/vendor/bundle/gems/sinatra-1.3.2/test/streaming_test.rb +123 -0
  2882. data/vendor/bundle/gems/sinatra-1.3.2/test/templates_test.rb +298 -0
  2883. data/vendor/bundle/gems/sinatra-1.3.2/test/textile_test.rb +65 -0
  2884. data/vendor/bundle/gems/sinatra-1.3.2/test/views/a/in_a.str +1 -0
  2885. data/vendor/bundle/gems/sinatra-1.3.2/test/views/ascii.erb +2 -0
  2886. data/vendor/bundle/gems/sinatra-1.3.2/test/views/b/in_b.str +1 -0
  2887. data/vendor/bundle/gems/sinatra-1.3.2/test/views/calc.html.erb +1 -0
  2888. data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.builder +3 -0
  2889. data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.erb +3 -0
  2890. data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.haml +3 -0
  2891. data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.sass +2 -0
  2892. data/vendor/bundle/gems/sinatra-1.3.2/test/views/explicitly_nested.str +1 -0
  2893. data/vendor/bundle/gems/sinatra-1.3.2/test/views/foo/hello.test +1 -0
  2894. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.builder +1 -0
  2895. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.coffee +1 -0
  2896. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.creole +1 -0
  2897. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.erb +1 -0
  2898. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.haml +1 -0
  2899. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.less +5 -0
  2900. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.liquid +1 -0
  2901. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.mab +1 -0
  2902. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.md +1 -0
  2903. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.nokogiri +1 -0
  2904. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.radius +1 -0
  2905. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.rdoc +1 -0
  2906. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.sass +2 -0
  2907. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.scss +3 -0
  2908. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.slim +1 -0
  2909. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.str +1 -0
  2910. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.test +1 -0
  2911. data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.textile +1 -0
  2912. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.builder +3 -0
  2913. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.erb +2 -0
  2914. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.haml +2 -0
  2915. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.liquid +2 -0
  2916. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.mab +2 -0
  2917. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.nokogiri +3 -0
  2918. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.radius +2 -0
  2919. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.slim +3 -0
  2920. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.str +2 -0
  2921. data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.test +1 -0
  2922. data/vendor/bundle/gems/sinatra-1.3.2/test/views/nested.str +1 -0
  2923. data/vendor/bundle/gems/sinatra-1.3.2/test/views/utf8.erb +2 -0
  2924. data/vendor/bundle/gems/spork-0.9.0/Gemfile +10 -0
  2925. data/vendor/bundle/gems/spork-0.9.0/MIT-LICENSE +20 -0
  2926. data/vendor/bundle/gems/spork-0.9.0/README.rdoc +134 -0
  2927. data/vendor/bundle/gems/spork-0.9.0/assets/bootstrap.rb +49 -0
  2928. data/vendor/bundle/gems/spork-0.9.0/bin/spork +20 -0
  2929. data/vendor/bundle/gems/spork-0.9.0/features/at_exit_during_each_run.feature +36 -0
  2930. data/vendor/bundle/gems/spork-0.9.0/features/cucumber_rails_integration.feature +107 -0
  2931. data/vendor/bundle/gems/spork-0.9.0/features/diagnostic_mode.feature +41 -0
  2932. data/vendor/bundle/gems/spork-0.9.0/features/gemfiles/rails3.0/Gemfile +14 -0
  2933. data/vendor/bundle/gems/spork-0.9.0/features/rails_delayed_loading_workarounds.feature +177 -0
  2934. data/vendor/bundle/gems/spork-0.9.0/features/rspec_rails_integration.feature +92 -0
  2935. data/vendor/bundle/gems/spork-0.9.0/features/spork_debugger.feature +108 -0
  2936. data/vendor/bundle/gems/spork-0.9.0/features/steps/general_steps.rb +3 -0
  2937. data/vendor/bundle/gems/spork-0.9.0/features/steps/rails_steps.rb +67 -0
  2938. data/vendor/bundle/gems/spork-0.9.0/features/steps/sandbox_steps.rb +115 -0
  2939. data/vendor/bundle/gems/spork-0.9.0/features/support/background_job.rb +63 -0
  2940. data/vendor/bundle/gems/spork-0.9.0/features/support/bundler_helpers.rb +41 -0
  2941. data/vendor/bundle/gems/spork-0.9.0/features/support/env.rb +105 -0
  2942. data/vendor/bundle/gems/spork-0.9.0/features/unknown_app_framework.feature +42 -0
  2943. data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/padrino.rb +22 -0
  2944. data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/rails.rb +82 -0
  2945. data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/unknown.rb +6 -0
  2946. data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework.rb +80 -0
  2947. data/vendor/bundle/gems/spork-0.9.0/lib/spork/custom_io_streams.rb +25 -0
  2948. data/vendor/bundle/gems/spork-0.9.0/lib/spork/diagnoser.rb +105 -0
  2949. data/vendor/bundle/gems/spork-0.9.0/lib/spork/ext/rails-reloader.rb +14 -0
  2950. data/vendor/bundle/gems/spork-0.9.0/lib/spork/ext/ruby-debug.rb +150 -0
  2951. data/vendor/bundle/gems/spork-0.9.0/lib/spork/forker.rb +71 -0
  2952. data/vendor/bundle/gems/spork-0.9.0/lib/spork/gem_helpers.rb +38 -0
  2953. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/forking.rb +35 -0
  2954. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/magazine_slave.rb +30 -0
  2955. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/magazine_slave_provider.rb +30 -0
  2956. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/ring_server.rb +10 -0
  2957. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine.rb +155 -0
  2958. data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy.rb +48 -0
  2959. data/vendor/bundle/gems/spork-0.9.0/lib/spork/runner.rb +90 -0
  2960. data/vendor/bundle/gems/spork-0.9.0/lib/spork/server.rb +77 -0
  2961. data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework/cucumber.rb +38 -0
  2962. data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework/rspec.rb +18 -0
  2963. data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework.rb +167 -0
  2964. data/vendor/bundle/gems/spork-0.9.0/lib/spork.rb +155 -0
  2965. data/vendor/bundle/gems/spork-0.9.0/spec/spec_helper.rb +107 -0
  2966. data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework/rails_spec.rb +22 -0
  2967. data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework/unknown_spec.rb +12 -0
  2968. data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework_spec.rb +16 -0
  2969. data/vendor/bundle/gems/spork-0.9.0/spec/spork/diagnoser_spec.rb +105 -0
  2970. data/vendor/bundle/gems/spork-0.9.0/spec/spork/forker_spec.rb +44 -0
  2971. data/vendor/bundle/gems/spork-0.9.0/spec/spork/run_strategy/forking_spec.rb +38 -0
  2972. data/vendor/bundle/gems/spork-0.9.0/spec/spork/runner_spec.rb +50 -0
  2973. data/vendor/bundle/gems/spork-0.9.0/spec/spork/server_spec.rb +15 -0
  2974. data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework/cucumber_spec.rb +6 -0
  2975. data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework/rspec_spec.rb +31 -0
  2976. data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework_shared_examples.rb +23 -0
  2977. data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework_spec.rb +90 -0
  2978. data/vendor/bundle/gems/spork-0.9.0/spec/spork_spec.rb +153 -0
  2979. data/vendor/bundle/gems/spork-0.9.0/spec/support/fake_framework.rb +15 -0
  2980. data/vendor/bundle/gems/spork-0.9.0/spec/support/fake_run_strategy.rb +21 -0
  2981. data/vendor/bundle/gems/thor-0.14.6/CHANGELOG.rdoc +103 -0
  2982. data/vendor/bundle/gems/thor-0.14.6/LICENSE +20 -0
  2983. data/vendor/bundle/gems/thor-0.14.6/README.md +307 -0
  2984. data/vendor/bundle/gems/thor-0.14.6/Thorfile +24 -0
  2985. data/vendor/bundle/gems/thor-0.14.6/bin/rake2thor +86 -0
  2986. data/vendor/bundle/gems/thor-0.14.6/bin/thor +6 -0
  2987. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/create_file.rb +105 -0
  2988. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/create_link.rb +57 -0
  2989. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/directory.rb +93 -0
  2990. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/empty_directory.rb +134 -0
  2991. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/file_manipulation.rb +270 -0
  2992. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/inject_into_file.rb +109 -0
  2993. data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions.rb +314 -0
  2994. data/vendor/bundle/gems/thor-0.14.6/lib/thor/base.rb +579 -0
  2995. data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/file_binary_read.rb +9 -0
  2996. data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  2997. data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/ordered_hash.rb +100 -0
  2998. data/vendor/bundle/gems/thor-0.14.6/lib/thor/error.rb +30 -0
  2999. data/vendor/bundle/gems/thor-0.14.6/lib/thor/group.rb +273 -0
  3000. data/vendor/bundle/gems/thor-0.14.6/lib/thor/invocation.rb +168 -0
  3001. data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/argument.rb +67 -0
  3002. data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/arguments.rb +161 -0
  3003. data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/option.rb +120 -0
  3004. data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/options.rb +173 -0
  3005. data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser.rb +4 -0
  3006. data/vendor/bundle/gems/thor-0.14.6/lib/thor/rake_compat.rb +66 -0
  3007. data/vendor/bundle/gems/thor-0.14.6/lib/thor/runner.rb +309 -0
  3008. data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/basic.rb +290 -0
  3009. data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/color.rb +108 -0
  3010. data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/html.rb +121 -0
  3011. data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell.rb +88 -0
  3012. data/vendor/bundle/gems/thor-0.14.6/lib/thor/task.rb +114 -0
  3013. data/vendor/bundle/gems/thor-0.14.6/lib/thor/util.rb +229 -0
  3014. data/vendor/bundle/gems/thor-0.14.6/lib/thor/version.rb +3 -0
  3015. data/vendor/bundle/gems/thor-0.14.6/lib/thor.rb +334 -0
  3016. data/vendor/bundle/gems/thor-0.14.6/spec/actions/create_file_spec.rb +170 -0
  3017. data/vendor/bundle/gems/thor-0.14.6/spec/actions/directory_spec.rb +136 -0
  3018. data/vendor/bundle/gems/thor-0.14.6/spec/actions/empty_directory_spec.rb +98 -0
  3019. data/vendor/bundle/gems/thor-0.14.6/spec/actions/file_manipulation_spec.rb +310 -0
  3020. data/vendor/bundle/gems/thor-0.14.6/spec/actions/inject_into_file_spec.rb +135 -0
  3021. data/vendor/bundle/gems/thor-0.14.6/spec/actions_spec.rb +322 -0
  3022. data/vendor/bundle/gems/thor-0.14.6/spec/base_spec.rb +269 -0
  3023. data/vendor/bundle/gems/thor-0.14.6/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
  3024. data/vendor/bundle/gems/thor-0.14.6/spec/core_ext/ordered_hash_spec.rb +115 -0
  3025. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/application.rb +2 -0
  3026. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/bundle/execute.rb +6 -0
  3027. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/bundle/main.thor +1 -0
  3028. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  3029. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/README +3 -0
  3030. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/block_helper.rb +3 -0
  3031. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/components/.empty_directory +0 -0
  3032. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/config.rb +1 -0
  3033. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/group.thor +114 -0
  3034. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/invoke.thor +112 -0
  3035. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/path with spaces +0 -0
  3036. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/script.thor +184 -0
  3037. data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/task.thor +10 -0
  3038. data/vendor/bundle/gems/thor-0.14.6/spec/group_spec.rb +178 -0
  3039. data/vendor/bundle/gems/thor-0.14.6/spec/invocation_spec.rb +100 -0
  3040. data/vendor/bundle/gems/thor-0.14.6/spec/parser/argument_spec.rb +47 -0
  3041. data/vendor/bundle/gems/thor-0.14.6/spec/parser/arguments_spec.rb +64 -0
  3042. data/vendor/bundle/gems/thor-0.14.6/spec/parser/option_spec.rb +202 -0
  3043. data/vendor/bundle/gems/thor-0.14.6/spec/parser/options_spec.rb +319 -0
  3044. data/vendor/bundle/gems/thor-0.14.6/spec/rake_compat_spec.rb +68 -0
  3045. data/vendor/bundle/gems/thor-0.14.6/spec/register_spec.rb +92 -0
  3046. data/vendor/bundle/gems/thor-0.14.6/spec/runner_spec.rb +210 -0
  3047. data/vendor/bundle/gems/thor-0.14.6/spec/shell/basic_spec.rb +223 -0
  3048. data/vendor/bundle/gems/thor-0.14.6/spec/shell/color_spec.rb +41 -0
  3049. data/vendor/bundle/gems/thor-0.14.6/spec/shell/html_spec.rb +27 -0
  3050. data/vendor/bundle/gems/thor-0.14.6/spec/shell_spec.rb +47 -0
  3051. data/vendor/bundle/gems/thor-0.14.6/spec/spec_helper.rb +54 -0
  3052. data/vendor/bundle/gems/thor-0.14.6/spec/task_spec.rb +69 -0
  3053. data/vendor/bundle/gems/thor-0.14.6/spec/thor_spec.rb +334 -0
  3054. data/vendor/bundle/gems/thor-0.14.6/spec/util_spec.rb +163 -0
  3055. data/vendor/bundle/gems/tilt-1.3.3/COPYING +18 -0
  3056. data/vendor/bundle/gems/tilt-1.3.3/Gemfile +2 -0
  3057. data/vendor/bundle/gems/tilt-1.3.3/README.md +208 -0
  3058. data/vendor/bundle/gems/tilt-1.3.3/Rakefile +80 -0
  3059. data/vendor/bundle/gems/tilt-1.3.3/TEMPLATES.md +516 -0
  3060. data/vendor/bundle/gems/tilt-1.3.3/bin/tilt +110 -0
  3061. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/builder.rb +40 -0
  3062. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/coffee.rb +50 -0
  3063. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/css.rb +72 -0
  3064. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/erb.rb +110 -0
  3065. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/haml.rb +64 -0
  3066. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/liquid.rb +41 -0
  3067. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markaby.rb +52 -0
  3068. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markdown.rb +190 -0
  3069. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/nokogiri.rb +43 -0
  3070. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/radius.rb +51 -0
  3071. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/rdoc.rb +32 -0
  3072. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/string.rb +21 -0
  3073. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/template.rb +285 -0
  3074. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/textile.rb +25 -0
  3075. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/wiki.rb +50 -0
  3076. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/yajl.rb +94 -0
  3077. data/vendor/bundle/gems/tilt-1.3.3/lib/tilt.rb +190 -0
  3078. data/vendor/bundle/gems/tilt-1.3.3/test/contest.rb +68 -0
  3079. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/locals.mab +1 -0
  3080. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby.mab +1 -0
  3081. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby_other_static.mab +1 -0
  3082. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/render_twice.mab +1 -0
  3083. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/scope.mab +1 -0
  3084. data/vendor/bundle/gems/tilt-1.3.3/test/markaby/yielding.mab +2 -0
  3085. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_blueclothtemplate_test.rb +45 -0
  3086. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_buildertemplate_test.rb +59 -0
  3087. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_cache_test.rb +32 -0
  3088. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_coffeescripttemplate_test.rb +61 -0
  3089. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_compilesite_test.rb +51 -0
  3090. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_creoletemplate_test.rb +28 -0
  3091. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erbtemplate_test.rb +234 -0
  3092. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erubistemplate_test.rb +151 -0
  3093. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_fallback_test.rb +122 -0
  3094. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_hamltemplate_test.rb +144 -0
  3095. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_kramdown_test.rb +42 -0
  3096. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_lesstemplate_test.rb +26 -0
  3097. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_liquidtemplate_test.rb +78 -0
  3098. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markaby_test.rb +88 -0
  3099. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markdown_test.rb +161 -0
  3100. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_marukutemplate_test.rb +48 -0
  3101. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_nokogiritemplate_test.rb +87 -0
  3102. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_radiustemplate_test.rb +75 -0
  3103. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdiscounttemplate_test.rb +55 -0
  3104. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdoctemplate_test.rb +24 -0
  3105. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redcarpettemplate_test.rb +59 -0
  3106. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redclothtemplate_test.rb +24 -0
  3107. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_sasstemplate_test.rb +41 -0
  3108. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_stringtemplate_test.rb +170 -0
  3109. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_template_test.rb +154 -0
  3110. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_test.rb +65 -0
  3111. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_wikiclothtemplate_test.rb +32 -0
  3112. data/vendor/bundle/gems/tilt-1.3.3/test/tilt_yajltemplate_test.rb +92 -0
  3113. data/vendor/bundle/gems/tilt-1.3.3/tilt.gemspec +109 -0
  3114. data/vendor/bundle/gems/tzinfo-0.3.32/CHANGES +459 -0
  3115. data/vendor/bundle/gems/tzinfo-0.3.32/LICENSE +19 -0
  3116. data/vendor/bundle/gems/tzinfo-0.3.32/README +101 -0
  3117. data/vendor/bundle/gems/tzinfo-0.3.32/Rakefile +241 -0
  3118. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country.rb +176 -0
  3119. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_index_definition.rb +48 -0
  3120. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_info.rb +80 -0
  3121. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_timezone.rb +101 -0
  3122. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/data_timezone.rb +45 -0
  3123. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/data_timezone_info.rb +222 -0
  3124. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Abidjan.rb +16 -0
  3125. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Accra.rb +31 -0
  3126. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Addis_Ababa.rb +18 -0
  3127. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Algiers.rb +53 -0
  3128. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Asmara.rb +20 -0
  3129. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Asmera.rb +11 -0
  3130. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bamako.rb +19 -0
  3131. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bangui.rb +16 -0
  3132. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Banjul.rb +20 -0
  3133. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bissau.rb +18 -0
  3134. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Blantyre.rb +16 -0
  3135. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Brazzaville.rb +16 -0
  3136. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bujumbura.rb +16 -0
  3137. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Cairo.rb +139 -0
  3138. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Casablanca.rb +44 -0
  3139. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ceuta.rb +170 -0
  3140. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Conakry.rb +19 -0
  3141. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Dakar.rb +18 -0
  3142. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Dar_es_Salaam.rb +19 -0
  3143. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Djibouti.rb +16 -0
  3144. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Douala.rb +16 -0
  3145. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/El_Aaiun.rb +18 -0
  3146. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Freetown.rb +51 -0
  3147. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Gaborone.rb +19 -0
  3148. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Harare.rb +16 -0
  3149. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Johannesburg.rb +23 -0
  3150. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Juba.rb +51 -0
  3151. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kampala.rb +21 -0
  3152. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Khartoum.rb +51 -0
  3153. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kigali.rb +16 -0
  3154. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kinshasa.rb +16 -0
  3155. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lagos.rb +16 -0
  3156. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Libreville.rb +16 -0
  3157. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lome.rb +16 -0
  3158. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Luanda.rb +18 -0
  3159. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lubumbashi.rb +16 -0
  3160. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lusaka.rb +16 -0
  3161. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Malabo.rb +18 -0
  3162. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Maputo.rb +16 -0
  3163. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Maseru.rb +19 -0
  3164. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Mbabane.rb +16 -0
  3165. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Mogadishu.rb +19 -0
  3166. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Monrovia.rb +20 -0
  3167. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Nairobi.rb +21 -0
  3168. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ndjamena.rb +19 -0
  3169. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Niamey.rb +20 -0
  3170. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Nouakchott.rb +19 -0
  3171. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ouagadougou.rb +16 -0
  3172. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Porto__m__Novo.rb +18 -0
  3173. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Sao_Tome.rb +18 -0
  3174. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Timbuktu.rb +11 -0
  3175. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Tripoli.rb +46 -0
  3176. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Tunis.rb +51 -0
  3177. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Windhoek.rb +138 -0
  3178. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Adak.rb +194 -0
  3179. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Anchorage.rb +194 -0
  3180. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Anguilla.rb +16 -0
  3181. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Antigua.rb +18 -0
  3182. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Araguaina.rb +65 -0
  3183. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +82 -0
  3184. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Catamarca.rb +83 -0
  3185. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/ComodRivadavia.rb +13 -0
  3186. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Cordoba.rb +83 -0
  3187. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Jujuy.rb +82 -0
  3188. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/La_Rioja.rb +84 -0
  3189. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Mendoza.rb +84 -0
  3190. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Rio_Gallegos.rb +83 -0
  3191. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Salta.rb +81 -0
  3192. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +84 -0
  3193. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/San_Luis.rb +85 -0
  3194. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Tucuman.rb +85 -0
  3195. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Ushuaia.rb +83 -0
  3196. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Aruba.rb +18 -0
  3197. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Asuncion.rb +172 -0
  3198. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Atikokan.rb +26 -0
  3199. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Atka.rb +11 -0
  3200. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bahia.rb +153 -0
  3201. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bahia_Banderas.rb +138 -0
  3202. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Barbados.rb +27 -0
  3203. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Belem.rb +45 -0
  3204. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Belize.rb +72 -0
  3205. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Blanc__m__Sablon.rb +24 -0
  3206. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Boa_Vista.rb +49 -0
  3207. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bogota.rb +21 -0
  3208. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Boise.rb +197 -0
  3209. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Buenos_Aires.rb +11 -0
  3210. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cambridge_Bay.rb +171 -0
  3211. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Campo_Grande.rb +169 -0
  3212. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cancun.rb +131 -0
  3213. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Caracas.rb +21 -0
  3214. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Catamarca.rb +11 -0
  3215. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cayenne.rb +18 -0
  3216. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cayman.rb +18 -0
  3217. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Chicago.rb +281 -0
  3218. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Chihuahua.rb +134 -0
  3219. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Coral_Harbour.rb +11 -0
  3220. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cordoba.rb +11 -0
  3221. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Costa_Rica.rb +27 -0
  3222. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Creston.rb +19 -0
  3223. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cuiaba.rb +167 -0
  3224. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Curacao.rb +18 -0
  3225. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Danmarkshavn.rb +51 -0
  3226. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dawson.rb +174 -0
  3227. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dawson_Creek.rb +77 -0
  3228. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Denver.rb +202 -0
  3229. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Detroit.rb +184 -0
  3230. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dominica.rb +16 -0
  3231. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Edmonton.rb +198 -0
  3232. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Eirunepe.rb +49 -0
  3233. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/El_Salvador.rb +21 -0
  3234. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Ensenada.rb +11 -0
  3235. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Fort_Wayne.rb +11 -0
  3236. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Fortaleza.rb +55 -0
  3237. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Glace_Bay.rb +184 -0
  3238. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Godthab.rb +159 -0
  3239. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Goose_Bay.rb +253 -0
  3240. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Grand_Turk.rb +163 -0
  3241. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Grenada.rb +16 -0
  3242. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guadeloupe.rb +16 -0
  3243. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guatemala.rb +25 -0
  3244. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guayaquil.rb +18 -0
  3245. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guyana.rb +22 -0
  3246. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Halifax.rb +272 -0
  3247. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Havana.rb +199 -0
  3248. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Hermosillo.rb +33 -0
  3249. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +147 -0
  3250. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Knox.rb +201 -0
  3251. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Marengo.rb +151 -0
  3252. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Petersburg.rb +164 -0
  3253. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Tell_City.rb +149 -0
  3254. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Vevay.rb +129 -0
  3255. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Vincennes.rb +149 -0
  3256. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Winamac.rb +155 -0
  3257. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indianapolis.rb +11 -0
  3258. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Inuvik.rb +164 -0
  3259. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Iqaluit.rb +168 -0
  3260. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Jamaica.rb +39 -0
  3261. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Jujuy.rb +11 -0
  3262. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Juneau.rb +193 -0
  3263. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kentucky/Louisville.rb +226 -0
  3264. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kentucky/Monticello.rb +196 -0
  3265. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Knox_IN.rb +11 -0
  3266. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kralendijk.rb +11 -0
  3267. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/La_Paz.rb +20 -0
  3268. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Lima.rb +33 -0
  3269. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Los_Angeles.rb +230 -0
  3270. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Louisville.rb +11 -0
  3271. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Lower_Princes.rb +11 -0
  3272. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Maceio.rb +57 -0
  3273. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Managua.rb +34 -0
  3274. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Manaus.rb +47 -0
  3275. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Marigot.rb +11 -0
  3276. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Martinique.rb +21 -0
  3277. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Matamoros.rb +129 -0
  3278. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mazatlan.rb +137 -0
  3279. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mendoza.rb +11 -0
  3280. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Menominee.rb +188 -0
  3281. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Merida.rb +130 -0
  3282. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Metlakatla.rb +55 -0
  3283. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mexico_City.rb +142 -0
  3284. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Miquelon.rb +147 -0
  3285. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Moncton.rb +252 -0
  3286. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Monterrey.rb +129 -0
  3287. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montevideo.rb +177 -0
  3288. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montreal.rb +277 -0
  3289. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montserrat.rb +16 -0
  3290. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nassau.rb +191 -0
  3291. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/New_York.rb +280 -0
  3292. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nipigon.rb +179 -0
  3293. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nome.rb +194 -0
  3294. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Noronha.rb +55 -0
  3295. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/Beulah.rb +198 -0
  3296. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/Center.rb +198 -0
  3297. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/New_Salem.rb +198 -0
  3298. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Ojinaga.rb +134 -0
  3299. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Panama.rb +18 -0
  3300. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Pangnirtung.rb +171 -0
  3301. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Paramaribo.rb +24 -0
  3302. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Phoenix.rb +28 -0
  3303. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb +53 -0
  3304. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Port_of_Spain.rb +16 -0
  3305. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Porto_Acre.rb +11 -0
  3306. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Porto_Velho.rb +45 -0
  3307. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Puerto_Rico.rb +21 -0
  3308. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rainy_River.rb +179 -0
  3309. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rankin_Inlet.rb +163 -0
  3310. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Recife.rb +55 -0
  3311. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Regina.rb +72 -0
  3312. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Resolute.rb +163 -0
  3313. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rio_Branco.rb +47 -0
  3314. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rosario.rb +11 -0
  3315. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santa_Isabel.rb +194 -0
  3316. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santarem.rb +47 -0
  3317. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santiago.rb +203 -0
  3318. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santo_Domingo.rb +36 -0
  3319. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Sao_Paulo.rb +169 -0
  3320. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Scoresbysund.rb +161 -0
  3321. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Shiprock.rb +11 -0
  3322. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Sitka.rb +192 -0
  3323. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Barthelemy.rb +11 -0
  3324. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Johns.rb +286 -0
  3325. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Kitts.rb +16 -0
  3326. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Lucia.rb +18 -0
  3327. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Thomas.rb +16 -0
  3328. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Vincent.rb +18 -0
  3329. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Swift_Current.rb +42 -0
  3330. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tegucigalpa.rb +23 -0
  3331. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Thule.rb +137 -0
  3332. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Thunder_Bay.rb +184 -0
  3333. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tijuana.rb +194 -0
  3334. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Toronto.rb +277 -0
  3335. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tortola.rb +16 -0
  3336. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Vancouver.rb +234 -0
  3337. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Virgin.rb +11 -0
  3338. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Whitehorse.rb +174 -0
  3339. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Winnipeg.rb +230 -0
  3340. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Yakutat.rb +191 -0
  3341. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Yellowknife.rb +167 -0
  3342. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Casey.rb +21 -0
  3343. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Davis.rb +23 -0
  3344. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/DumontDUrville.rb +19 -0
  3345. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Macquarie.rb +112 -0
  3346. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Mawson.rb +18 -0
  3347. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/McMurdo.rb +169 -0
  3348. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Palmer.rb +170 -0
  3349. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Rothera.rb +16 -0
  3350. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/South_Pole.rb +11 -0
  3351. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Syowa.rb +16 -0
  3352. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Vostok.rb +16 -0
  3353. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Arctic/Longyearbyen.rb +11 -0
  3354. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aden.rb +16 -0
  3355. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Almaty.rb +65 -0
  3356. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Amman.rb +161 -0
  3357. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Anadyr.rb +84 -0
  3358. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aqtau.rb +73 -0
  3359. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aqtobe.rb +69 -0
  3360. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ashgabat.rb +46 -0
  3361. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ashkhabad.rb +11 -0
  3362. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Baghdad.rb +71 -0
  3363. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bahrain.rb +18 -0
  3364. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Baku.rb +159 -0
  3365. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bangkok.rb +18 -0
  3366. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Beirut.rb +183 -0
  3367. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bishkek.rb +73 -0
  3368. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Brunei.rb +18 -0
  3369. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Calcutta.rb +11 -0
  3370. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Choibalsan.rb +66 -0
  3371. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Chongqing.rb +31 -0
  3372. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Chungking.rb +11 -0
  3373. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Colombo.rb +28 -0
  3374. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dacca.rb +11 -0
  3375. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Damascus.rb +193 -0
  3376. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dhaka.rb +28 -0
  3377. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dili.rb +23 -0
  3378. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dubai.rb +16 -0
  3379. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dushanbe.rb +43 -0
  3380. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Gaza.rb +111 -0
  3381. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Harbin.rb +35 -0
  3382. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hebron.rb +113 -0
  3383. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ho_Chi_Minh.rb +21 -0
  3384. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hong_Kong.rb +86 -0
  3385. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hovd.rb +63 -0
  3386. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Irkutsk.rb +85 -0
  3387. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Istanbul.rb +11 -0
  3388. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jakarta.rb +28 -0
  3389. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jayapura.rb +19 -0
  3390. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jerusalem.rb +161 -0
  3391. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kabul.rb +18 -0
  3392. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kamchatka.rb +82 -0
  3393. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Karachi.rb +30 -0
  3394. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kashgar.rb +33 -0
  3395. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kathmandu.rb +18 -0
  3396. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Katmandu.rb +11 -0
  3397. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kolkata.rb +23 -0
  3398. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +83 -0
  3399. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +29 -0
  3400. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuching.rb +38 -0
  3401. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuwait.rb +16 -0
  3402. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Macao.rb +11 -0
  3403. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Macau.rb +59 -0
  3404. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Magadan.rb +83 -0
  3405. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Makassar.rb +21 -0
  3406. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Manila.rb +28 -0
  3407. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Muscat.rb +16 -0
  3408. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Nicosia.rb +169 -0
  3409. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Novokuznetsk.rb +85 -0
  3410. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Novosibirsk.rb +83 -0
  3411. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Omsk.rb +83 -0
  3412. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Oral.rb +72 -0
  3413. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Phnom_Penh.rb +21 -0
  3414. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Pontianak.rb +28 -0
  3415. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Pyongyang.rb +23 -0
  3416. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Qatar.rb +18 -0
  3417. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Qyzylorda.rb +71 -0
  3418. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Rangoon.rb +22 -0
  3419. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh.rb +16 -0
  3420. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh87.rb +590 -0
  3421. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh88.rb +580 -0
  3422. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh89.rb +580 -0
  3423. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Saigon.rb +11 -0
  3424. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Sakhalin.rb +85 -0
  3425. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Samarkand.rb +45 -0
  3426. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Seoul.rb +32 -0
  3427. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Shanghai.rb +33 -0
  3428. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Singapore.rb +31 -0
  3429. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Taipei.rb +57 -0
  3430. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tashkent.rb +45 -0
  3431. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tbilisi.rb +76 -0
  3432. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tehran.rb +119 -0
  3433. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tel_Aviv.rb +11 -0
  3434. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Thimbu.rb +11 -0
  3435. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Thimphu.rb +18 -0
  3436. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tokyo.rb +28 -0
  3437. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ujung_Pandang.rb +11 -0
  3438. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +63 -0
  3439. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ulan_Bator.rb +11 -0
  3440. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Urumqi.rb +31 -0
  3441. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Vientiane.rb +21 -0
  3442. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Vladivostok.rb +84 -0
  3443. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yakutsk.rb +83 -0
  3444. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +85 -0
  3445. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yerevan.rb +85 -0
  3446. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Azores.rb +268 -0
  3447. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Bermuda.rb +171 -0
  3448. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Canary.rb +161 -0
  3449. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +21 -0
  3450. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Faeroe.rb +11 -0
  3451. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Faroe.rb +157 -0
  3452. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Jan_Mayen.rb +11 -0
  3453. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Madeira.rb +267 -0
  3454. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Reykjavik.rb +83 -0
  3455. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +16 -0
  3456. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/St_Helena.rb +18 -0
  3457. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Stanley.rb +90 -0
  3458. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/ACT.rb +11 -0
  3459. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Adelaide.rb +185 -0
  3460. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Brisbane.rb +33 -0
  3461. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Broken_Hill.rb +187 -0
  3462. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Canberra.rb +11 -0
  3463. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Currie.rb +183 -0
  3464. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Darwin.rb +27 -0
  3465. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Eucla.rb +35 -0
  3466. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Hobart.rb +191 -0
  3467. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/LHI.rb +11 -0
  3468. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Lindeman.rb +37 -0
  3469. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Lord_Howe.rb +158 -0
  3470. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Melbourne.rb +183 -0
  3471. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/NSW.rb +11 -0
  3472. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/North.rb +11 -0
  3473. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Perth.rb +35 -0
  3474. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Queensland.rb +11 -0
  3475. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/South.rb +11 -0
  3476. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Sydney.rb +183 -0
  3477. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Tasmania.rb +11 -0
  3478. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Victoria.rb +11 -0
  3479. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/West.rb +11 -0
  3480. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Yancowinna.rb +11 -0
  3481. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/Acre.rb +11 -0
  3482. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/DeNoronha.rb +11 -0
  3483. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/East.rb +11 -0
  3484. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/West.rb +11 -0
  3485. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/CET.rb +175 -0
  3486. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/CST6CDT.rb +190 -0
  3487. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Atlantic.rb +11 -0
  3488. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Central.rb +11 -0
  3489. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/East__m__Saskatchewan.rb +11 -0
  3490. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Eastern.rb +11 -0
  3491. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Mountain.rb +11 -0
  3492. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Newfoundland.rb +11 -0
  3493. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Pacific.rb +11 -0
  3494. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Saskatchewan.rb +11 -0
  3495. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Yukon.rb +11 -0
  3496. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Chile/Continental.rb +11 -0
  3497. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Chile/EasterIsland.rb +11 -0
  3498. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Cuba.rb +9 -0
  3499. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EET.rb +161 -0
  3500. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EST.rb +12 -0
  3501. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EST5EDT.rb +190 -0
  3502. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Egypt.rb +9 -0
  3503. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Eire.rb +9 -0
  3504. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT.rb +14 -0
  3505. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT0.rb +11 -0
  3506. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__0.rb +11 -0
  3507. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__1.rb +14 -0
  3508. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__10.rb +14 -0
  3509. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__11.rb +14 -0
  3510. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__12.rb +14 -0
  3511. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__13.rb +14 -0
  3512. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__14.rb +14 -0
  3513. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__2.rb +14 -0
  3514. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__3.rb +14 -0
  3515. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__4.rb +14 -0
  3516. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__5.rb +14 -0
  3517. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__6.rb +14 -0
  3518. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__7.rb +14 -0
  3519. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__8.rb +14 -0
  3520. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__9.rb +14 -0
  3521. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__0.rb +11 -0
  3522. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__1.rb +14 -0
  3523. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__10.rb +14 -0
  3524. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__11.rb +14 -0
  3525. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__12.rb +14 -0
  3526. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__2.rb +14 -0
  3527. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__3.rb +14 -0
  3528. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__4.rb +14 -0
  3529. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__5.rb +14 -0
  3530. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__6.rb +14 -0
  3531. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__7.rb +14 -0
  3532. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__8.rb +14 -0
  3533. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__9.rb +14 -0
  3534. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Greenwich.rb +11 -0
  3535. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/UCT.rb +14 -0
  3536. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/UTC.rb +14 -0
  3537. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Universal.rb +11 -0
  3538. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Zulu.rb +11 -0
  3539. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Amsterdam.rb +226 -0
  3540. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Andorra.rb +151 -0
  3541. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Athens.rb +183 -0
  3542. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Belfast.rb +11 -0
  3543. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Belgrade.rb +161 -0
  3544. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Berlin.rb +186 -0
  3545. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Bratislava.rb +11 -0
  3546. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Brussels.rb +230 -0
  3547. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Bucharest.rb +179 -0
  3548. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Budapest.rb +195 -0
  3549. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Chisinau.rb +187 -0
  3550. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Copenhagen.rb +177 -0
  3551. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Dublin.rb +274 -0
  3552. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Gibraltar.rb +243 -0
  3553. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Guernsey.rb +11 -0
  3554. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Helsinki.rb +161 -0
  3555. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Isle_of_Man.rb +11 -0
  3556. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Istanbul.rb +216 -0
  3557. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Jersey.rb +11 -0
  3558. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Kaliningrad.rb +101 -0
  3559. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Kiev.rb +166 -0
  3560. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Lisbon.rb +266 -0
  3561. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Ljubljana.rb +11 -0
  3562. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/London.rb +286 -0
  3563. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Luxembourg.rb +229 -0
  3564. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Madrid.rb +209 -0
  3565. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Malta.rb +211 -0
  3566. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Mariehamn.rb +11 -0
  3567. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Minsk.rb +90 -0
  3568. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Monaco.rb +231 -0
  3569. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Moscow.rb +101 -0
  3570. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Nicosia.rb +11 -0
  3571. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Oslo.rb +183 -0
  3572. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Paris.rb +230 -0
  3573. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Podgorica.rb +11 -0
  3574. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Prague.rb +185 -0
  3575. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Riga.rb +174 -0
  3576. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Rome.rb +213 -0
  3577. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Samara.rb +88 -0
  3578. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/San_Marino.rb +11 -0
  3579. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Sarajevo.rb +11 -0
  3580. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Simferopol.rb +168 -0
  3581. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Skopje.rb +11 -0
  3582. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Sofia.rb +171 -0
  3583. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Stockholm.rb +163 -0
  3584. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tallinn.rb +170 -0
  3585. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tirane.rb +175 -0
  3586. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tiraspol.rb +11 -0
  3587. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Uzhgorod.rb +166 -0
  3588. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vaduz.rb +157 -0
  3589. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vatican.rb +11 -0
  3590. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vienna.rb +181 -0
  3591. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vilnius.rb +168 -0
  3592. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Volgograd.rb +85 -0
  3593. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Warsaw.rb +210 -0
  3594. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zagreb.rb +11 -0
  3595. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zaporozhye.rb +169 -0
  3596. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zurich.rb +163 -0
  3597. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GB.rb +9 -0
  3598. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GB__m__Eire.rb +9 -0
  3599. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT.rb +9 -0
  3600. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT0.rb +9 -0
  3601. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT__m__0.rb +9 -0
  3602. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT__p__0.rb +9 -0
  3603. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Greenwich.rb +9 -0
  3604. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/HST.rb +12 -0
  3605. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Hongkong.rb +9 -0
  3606. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Iceland.rb +9 -0
  3607. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Antananarivo.rb +19 -0
  3608. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Chagos.rb +18 -0
  3609. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Christmas.rb +16 -0
  3610. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Cocos.rb +16 -0
  3611. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Comoro.rb +16 -0
  3612. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Kerguelen.rb +16 -0
  3613. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mahe.rb +16 -0
  3614. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Maldives.rb +18 -0
  3615. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mauritius.rb +21 -0
  3616. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mayotte.rb +16 -0
  3617. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Reunion.rb +16 -0
  3618. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Iran.rb +9 -0
  3619. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Israel.rb +9 -0
  3620. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Jamaica.rb +9 -0
  3621. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Japan.rb +9 -0
  3622. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Kwajalein.rb +9 -0
  3623. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Libya.rb +9 -0
  3624. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MET.rb +175 -0
  3625. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MST.rb +12 -0
  3626. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MST7MDT.rb +190 -0
  3627. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/BajaNorte.rb +11 -0
  3628. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/BajaSur.rb +11 -0
  3629. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/General.rb +11 -0
  3630. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh87.rb +11 -0
  3631. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh88.rb +11 -0
  3632. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh89.rb +11 -0
  3633. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/NZ.rb +9 -0
  3634. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/NZ__m__CHAT.rb +9 -0
  3635. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Navajo.rb +9 -0
  3636. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/PRC.rb +9 -0
  3637. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/PST8PDT.rb +190 -0
  3638. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Apia.rb +28 -0
  3639. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Auckland.rb +200 -0
  3640. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Chatham.rb +169 -0
  3641. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Chuuk.rb +16 -0
  3642. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Easter.rb +188 -0
  3643. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Efate.rb +37 -0
  3644. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Enderbury.rb +20 -0
  3645. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Fakaofo.rb +18 -0
  3646. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Fiji.rb +27 -0
  3647. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Funafuti.rb +16 -0
  3648. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Galapagos.rb +18 -0
  3649. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Gambier.rb +16 -0
  3650. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Guadalcanal.rb +16 -0
  3651. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Guam.rb +20 -0
  3652. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Honolulu.rb +23 -0
  3653. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Johnston.rb +14 -0
  3654. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kiritimati.rb +20 -0
  3655. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kosrae.rb +19 -0
  3656. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kwajalein.rb +20 -0
  3657. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Majuro.rb +18 -0
  3658. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Marquesas.rb +16 -0
  3659. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Midway.rb +23 -0
  3660. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Nauru.rb +21 -0
  3661. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Niue.rb +20 -0
  3662. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Norfolk.rb +18 -0
  3663. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Noumea.rb +23 -0
  3664. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +24 -0
  3665. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Palau.rb +16 -0
  3666. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pitcairn.rb +18 -0
  3667. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pohnpei.rb +16 -0
  3668. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Ponape.rb +11 -0
  3669. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +18 -0
  3670. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Rarotonga.rb +44 -0
  3671. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Saipan.rb +22 -0
  3672. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Samoa.rb +11 -0
  3673. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tahiti.rb +16 -0
  3674. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tarawa.rb +16 -0
  3675. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tongatapu.rb +25 -0
  3676. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Truk.rb +11 -0
  3677. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Wake.rb +16 -0
  3678. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Wallis.rb +16 -0
  3679. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Yap.rb +11 -0
  3680. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Poland.rb +9 -0
  3681. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Portugal.rb +9 -0
  3682. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/ROC.rb +9 -0
  3683. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/ROK.rb +9 -0
  3684. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Singapore.rb +9 -0
  3685. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Turkey.rb +9 -0
  3686. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/UCT.rb +9 -0
  3687. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Alaska.rb +11 -0
  3688. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Aleutian.rb +11 -0
  3689. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Arizona.rb +11 -0
  3690. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Central.rb +11 -0
  3691. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/East__m__Indiana.rb +11 -0
  3692. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Eastern.rb +11 -0
  3693. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Hawaii.rb +11 -0
  3694. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Indiana__m__Starke.rb +11 -0
  3695. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Michigan.rb +11 -0
  3696. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Mountain.rb +11 -0
  3697. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Pacific.rb +11 -0
  3698. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Pacific__m__New.rb +11 -0
  3699. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Samoa.rb +11 -0
  3700. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/UTC.rb +9 -0
  3701. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Universal.rb +9 -0
  3702. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/WET.rb +161 -0
  3703. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/W__m__SU.rb +9 -0
  3704. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Zulu.rb +9 -0
  3705. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/indexes/countries.rb +919 -0
  3706. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/indexes/timezones.rb +589 -0
  3707. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/info_timezone.rb +50 -0
  3708. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/linked_timezone.rb +49 -0
  3709. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/linked_timezone_info.rb +42 -0
  3710. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/offset_rationals.rb +97 -0
  3711. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/ruby_core_support.rb +80 -0
  3712. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/time_or_datetime.rb +291 -0
  3713. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone.rb +535 -0
  3714. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_definition.rb +53 -0
  3715. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_index_definition.rb +70 -0
  3716. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_info.rb +40 -0
  3717. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_offset_info.rb +94 -0
  3718. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_period.rb +195 -0
  3719. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_proxy.rb +83 -0
  3720. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_transition_info.rb +128 -0
  3721. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/tzdataparser.rb +1168 -0
  3722. data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo.rb +55 -0
  3723. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country.rb +156 -0
  3724. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_index_definition.rb +70 -0
  3725. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_info.rb +72 -0
  3726. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_timezone.rb +121 -0
  3727. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_data_timezone.rb +68 -0
  3728. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_data_timezone_info.rb +282 -0
  3729. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_info_timezone.rb +36 -0
  3730. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_linked_timezone.rb +102 -0
  3731. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_linked_timezone_info.rb +18 -0
  3732. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_offset_rationals.rb +25 -0
  3733. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_ruby_core_support.rb +31 -0
  3734. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_time_or_datetime.rb +422 -0
  3735. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone.rb +964 -0
  3736. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_definition.rb +115 -0
  3737. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_index_definition.rb +75 -0
  3738. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_info.rb +13 -0
  3739. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_london.rb +114 -0
  3740. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_melbourne.rb +114 -0
  3741. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_new_york.rb +114 -0
  3742. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_offset_info.rb +116 -0
  3743. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_period.rb +509 -0
  3744. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_proxy.rb +87 -0
  3745. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_transition_info.rb +194 -0
  3746. data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_utc.rb +29 -0
  3747. data/vendor/bundle/gems/tzinfo-0.3.32/test/test_utils.rb +21 -0
  3748. data/vendor/bundle/gems/tzinfo-0.3.32/test/ts_all.rb +9 -0
  3749. data/vendor/bundle/specifications/activemodel-3.2.3.gemspec +32 -0
  3750. data/vendor/bundle/specifications/activesupport-3.2.3.gemspec +33 -0
  3751. data/vendor/bundle/specifications/bson-1.6.1.gemspec +27 -0
  3752. data/vendor/bundle/specifications/bson_ext-1.6.1.gemspec +30 -0
  3753. data/vendor/bundle/specifications/builder-3.0.0.gemspec +29 -0
  3754. data/vendor/bundle/specifications/coffee-script-2.2.0.gemspec +31 -0
  3755. data/vendor/bundle/specifications/coffee-script-source-1.2.0.gemspec +26 -0
  3756. data/vendor/bundle/specifications/diff-lcs-1.1.3.gemspec +35 -0
  3757. data/vendor/bundle/specifications/execjs-1.3.0.gemspec +43 -0
  3758. data/vendor/bundle/specifications/factory_girl-3.0.0.gemspec +62 -0
  3759. data/vendor/bundle/specifications/ffi-1.0.11.gemspec +30 -0
  3760. data/vendor/bundle/specifications/guard-1.0.1.gemspec +52 -0
  3761. data/vendor/bundle/specifications/guard-rspec-0.7.0.gemspec +35 -0
  3762. data/vendor/bundle/specifications/haml-3.1.4.gemspec +34 -0
  3763. data/vendor/bundle/specifications/i18n-0.6.0.gemspec +38 -0
  3764. data/vendor/bundle/specifications/mongo-1.6.1.gemspec +32 -0
  3765. data/vendor/bundle/specifications/mongoid-2.4.7.gemspec +53 -0
  3766. data/vendor/bundle/specifications/multi_json-1.2.0.gemspec +40 -0
  3767. data/vendor/bundle/specifications/rack-1.4.1.gemspec +47 -0
  3768. data/vendor/bundle/specifications/rack-protection-1.2.0.gemspec +34 -0
  3769. data/vendor/bundle/specifications/rspec-2.9.0.gemspec +39 -0
  3770. data/vendor/bundle/specifications/rspec-core-2.9.0.gemspec +58 -0
  3771. data/vendor/bundle/specifications/rspec-expectations-2.9.0.gemspec +40 -0
  3772. data/vendor/bundle/specifications/rspec-mocks-2.9.0.gemspec +37 -0
  3773. data/vendor/bundle/specifications/sass-3.1.15.gemspec +35 -0
  3774. data/vendor/bundle/specifications/sinatra-1.3.2.gemspec +37 -0
  3775. data/vendor/bundle/specifications/spork-0.9.0.gemspec +30 -0
  3776. data/vendor/bundle/specifications/thor-0.14.6.gemspec +47 -0
  3777. data/vendor/bundle/specifications/tilt-1.3.3.gemspec +97 -0
  3778. data/vendor/bundle/specifications/tzinfo-0.3.32.gemspec +29 -0
  3779. metadata +3830 -0
@@ -0,0 +1,1626 @@
1
+ ## Rails 3.2.3 (unreleased) ##
2
+
3
+ * No changes.
4
+
5
+ ## Rails 3.2.2 (March 1, 2012) ##
6
+
7
+ * No changes.
8
+
9
+ ## Rails 3.2.1 (January 26, 2012) ##
10
+
11
+ * Documentation fixes and improvements.
12
+
13
+ * Update time zone offset information. *Ravil Bayramgalin*
14
+
15
+ * The deprecated `ActiveSupport::Base64.decode64` calls `::Base64.decode64`
16
+ now. *Jonathan Viney*
17
+
18
+ * Fixes uninitialized constant `ActiveSupport::TaggedLogging::ERROR`. *kennyj*
19
+
20
+
21
+ ## Rails 3.2.0 (January 20, 2012) ##
22
+
23
+ * ActiveSupport::Base64 is deprecated in favor of ::Base64. *Sergey Nartimov*
24
+
25
+ * Module#synchronize is deprecated with no replacement. Please use `monitor`
26
+ from ruby's standard library.
27
+
28
+ * (Date|DateTime|Time)#beginning_of_week accept an optional argument to
29
+ be able to set the day at which weeks are assumed to start.
30
+
31
+ * Deprecated ActiveSupport::MessageEncryptor#encrypt and decrypt. *José Valim*
32
+
33
+ * ActiveSupport::Notifications.subscribed provides subscriptions to events while a block runs. *fxn*
34
+
35
+ * Module#qualified_const_(defined?|get|set) are analogous to the corresponding methods
36
+ in the standard API, but accept qualified constant names. *fxn*
37
+
38
+ * Added inflection #deconstantize which complements #demodulize. This inflection
39
+ removes the righmost segment in a qualified constant name. *fxn*
40
+
41
+ * Added ActiveSupport:TaggedLogging that can wrap any standard Logger class to provide tagging capabilities *DHH*
42
+
43
+ Logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
44
+ Logger.tagged("BCX") { Logger.info "Stuff" } # Logs "[BCX] Stuff"
45
+ Logger.tagged("BCX", "Jason") { Logger.info "Stuff" } # Logs "[BCX] [Jason] Stuff"
46
+ Logger.tagged("BCX") { Logger.tagged("Jason") { Logger.info "Stuff" } } # Logs "[BCX] [Jason] Stuff"
47
+
48
+ * Added safe_constantize that constantizes a string but returns nil instead of an exception if the constant (or part of it) does not exist *Ryan Oblak*
49
+
50
+ * ActiveSupport::OrderedHash is now marked as extractable when using Array#extract_options! *Prem Sichanugrist*
51
+
52
+ * Added Array#prepend as an alias for Array#unshift and Array#append as an alias for Array#<< *DHH*
53
+
54
+ * The definition of blank string for Ruby 1.9 has been extended to Unicode whitespace.
55
+ Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. *Akira Matsuda, Damien Mathieu*
56
+
57
+ * The inflector understands acronyms. *dlee*
58
+
59
+ * Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern *José Valim*
60
+
61
+ * Added Time#all_day/week/quarter/year as a way of generating ranges (example: Event.where(created_at: Time.now.all_week)) *DHH*
62
+
63
+ * Added instance_accessor: false as an option to Class#cattr_accessor and friends *DHH*
64
+
65
+ * Removed ActiveSupport::SecureRandom in favor of SecureRandom from the standard library *Jon Leighton*
66
+
67
+ * ActiveSupport::OrderedHash now has different behavior for #each and
68
+ \#each_pair when given a block accepting its parameters with a splat. *Andrew Radev*
69
+
70
+ * ActiveSupport::BufferedLogger#silence is deprecated. If you want to squelch
71
+ logs for a certain block, change the log level for that block.
72
+
73
+ * ActiveSupport::BufferedLogger#open_log is deprecated. This method should
74
+ not have been public in the first place.
75
+
76
+ * ActiveSupport::BufferedLogger's behavior of automatically creating the
77
+ directory for your log file is deprecated. Please make sure to create the
78
+ directory for your log file before instantiating.
79
+
80
+ * ActiveSupport::BufferedLogger#auto_flushing is deprecated. Either set the
81
+ sync level on the underlying file handle like this:
82
+
83
+ f = File.open('foo.log', 'w')
84
+ f.sync = true
85
+ ActiveSupport::BufferedLogger.new f
86
+
87
+ Or tune your filesystem. The FS cache is now what controls flushing.
88
+
89
+ * ActiveSupport::BufferedLogger#flush is deprecated. Set sync on your
90
+ filehandle, or tune your filesystem.
91
+
92
+
93
+ ## Rails 3.1.0 (August 30, 2011) ##
94
+
95
+ * ActiveSupport::Dependencies#load and ActiveSupport::Dependencies#require now
96
+ return the value from `super` *Aaron Patterson*
97
+
98
+ * Fixed ActiveSupport::Gzip to work properly in Ruby 1.8 *Guillermo Iguaran*
99
+
100
+ * Kernel.require_library_or_gem was deprecated and will be removed in Rails 3.2.0 *Josh Kalderimis*
101
+
102
+ * ActiveSupport::Duration#duplicable? was fixed for Ruby 1.8 *thedarkone*
103
+
104
+ * ActiveSupport::BufferedLogger set log encoding to BINARY, but still use text
105
+ mode to output portable newlines. *fxn*
106
+
107
+ * ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. *Andrew White*
108
+
109
+ * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library *Jon Leighton*
110
+
111
+ * New reporting method Kernel#quietly. *fxn*
112
+
113
+ * Add String#inquiry as a convenience method for turning a string into a StringInquirer object *DHH*
114
+
115
+ * Add Object#in? to test if an object is included in another object *Prem Sichanugrist, Brian Morearty, John Reitano*
116
+
117
+ * LocalCache strategy is now a real middleware class, not an anonymous class
118
+ posing for pictures.
119
+
120
+ * ActiveSupport::Dependencies::ClassCache class has been introduced for
121
+ holding references to reloadable classes.
122
+
123
+ * ActiveSupport::Dependencies::Reference has been refactored to take direct
124
+ advantage of the new ClassCache.
125
+
126
+ * Backports Range#cover? as an alias for Range#include? in Ruby 1.8 *Diego Carrion, fxn*
127
+
128
+ * Added weeks_ago and prev_week to Date/DateTime/Time. *Rob Zolkos, fxn*
129
+
130
+ * Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! *Andrew White*
131
+
132
+ * JSON decoding now uses the multi_json gem which also vendors a json engine called OkJson. The yaml backend has been removed in favor of OkJson as a default engine for 1.8.x, while the built in 1.9.x json implementation will be used by default. *Josh Kalderimis*
133
+
134
+
135
+ ## Rails 3.0.7 (April 18, 2011) ##
136
+
137
+ * Hash.from_xml no longer loses attributes on tags containing only whitespace *André Arko*
138
+
139
+
140
+ * Rails 3.0.6 (April 5, 2011)
141
+
142
+ * No changes.
143
+
144
+
145
+ ## Rails 3.0.5 (February 26, 2011) ##
146
+
147
+ * No changes.
148
+
149
+
150
+ ## Rails 3.0.4 (February 8, 2011) ##
151
+
152
+ * No changes.
153
+
154
+
155
+ ## Rails 3.0.3 (November 16, 2010) ##
156
+
157
+ * No changes.
158
+
159
+
160
+ ## Rails 3.0.2 (November 15, 2010) ##
161
+
162
+ * Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! *Andrew White*
163
+
164
+
165
+ ## Rails 3.0.1 (October 15, 2010) ##
166
+
167
+ * No Changes, just a version bump.
168
+
169
+
170
+ ## Rails 3.0.0 (August 29, 2010) ##
171
+
172
+ * Implemented String#strip_heredoc. *fxn*
173
+
174
+ * Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 *Mike Perham*
175
+
176
+ * Removed Object#returning, Object#tap should be used instead. *Santiago Pastorino*
177
+
178
+ * Deprecation behavior is no longer hardcoded to the name of the environment.
179
+ Instead, it is set via config.active_support.deprecation and can be one
180
+ of :log, :stderr or :notify. :notify is a new style that sends the warning
181
+ via ActiveSupport::Notifications, and is the new default for production
182
+ *Yehuda Katz*
183
+
184
+ * Renamed ActiveSupport::Dependecies.load_(once_)paths to autoload_(once_)paths. *fxn*
185
+
186
+ * Added ActiveSupport::FileUpdateChecker to execute a block only if a set of files changed, used by Router and I18n locale files. *José Valim*
187
+
188
+ * Added ActiveSupport::DescendantsTracker to track descendants with support to constants reloading. *José Valim*
189
+
190
+ * ActiveSupport::OrderedHash#merge and #merge! accept a block. #4838 *Paul Mucur, fxn*
191
+
192
+ * Date#since, #ago, #beginning_of_day, #end_of_day, and #xmlschema honor now the user time zone if set. *Geoff Buesing*
193
+
194
+ * Extracted String#truncate from TextHelper#truncate *DHH*
195
+
196
+ * Ruby 1.9: support UTF-8 case folding. #4595 *Norman Clarke*
197
+
198
+ * Removes Array#rand and backports Array#sample from Ruby 1.9, thanks to Marc-Andre Lafortune. *fxn*
199
+
200
+ * Ruby 1.9: Renames last_(month|year) to prev_(month|year) in Date and Time. *fxn*
201
+
202
+ * Aliases Date#sunday to Date#end_of_week. *fxn*
203
+
204
+ * Backports Date#>> from 1.9 so that calculations do the right thing around the calendar reform. *fxn*
205
+
206
+ * Date#to_time handles properly years in the range 0..138. *fxn*
207
+
208
+ * Deprecate {{}} as interpolation syntax for I18n in favor of %{} *José Valim*
209
+
210
+ * Array#to_xml is more powerful and able to handle the same types as Hash#to_xml #4490 *Neeraj Singh*
211
+
212
+ * Harmonize the caching API and refactor the backends. #4452 *Brian Durand*
213
+ All caches:
214
+ * Add default options to initializer that will be sent to all read, write, fetch, exist?, increment, and decrement
215
+ * Add support for the :expires_in option to fetch and write for all caches. Cache entries are stored with the create timestamp and a ttl so that expiration can be handled independently of the implementation.
216
+ * Add support for a :namespace option. This can be used to set a global prefix for cache entries.
217
+ * Deprecate expand_cache_key on ActiveSupport::Cache and move it to ActionController::Caching and ActionDispatch::Http::Cache since the logic in the method used some Rails specific environment variables and was only used by ActionPack classes. Not very DRY but there didn't seem to be a good shared spot and ActiveSupport really shouldn't be Rails specific.
218
+ * Add support for :race_condition_ttl to fetch. This setting can prevent race conditions on fetch calls where several processes try to regenerate a recently expired entry at once.
219
+ * Add support for :compress option to fetch and write which will compress any data over a configurable threshold.
220
+ * Nil values can now be stored in the cache and are distinct from cache misses for fetch.
221
+ * Easier API to create new implementations. Just need to implement the methods read_entry, write_entry, and delete_entry instead of overwriting existing methods.
222
+ * Since all cache implementations support storing objects, update the docs to state that ActiveCache::Cache::Store implementations should store objects. Keys, however, must be strings since some implementations require that.
223
+ * Increase test coverage.
224
+ * Document methods which are provided as convenience but which may not be universally available.
225
+
226
+ MemoryStore:
227
+ * MemoryStore can now safely be used as the cache for single server sites.
228
+ * Make thread safe so that the default cache implementation used by Rails is thread safe. The overhead is minimal and it is still the fastest store available.
229
+ * Provide :size initialization option indicating the maximum size of the cache in memory (defaults to 32Mb).
230
+ * Add prune logic that removes the least recently used cache entries to keep the cache size from exceeding the max.
231
+ * Deprecated SynchronizedMemoryStore since it isn't needed anymore.
232
+
233
+ FileStore:
234
+ * Escape key values so they will work as file names on all file systems, be consistent, and case sensitive
235
+ * Use a hash algorithm to segment the cache into sub directories so that a large cache doesn't exceed file system limits.
236
+ * FileStore can be slow so implement the LocalCache strategy to cache reads for the duration of a request.
237
+ * Add cleanup method to keep the disk from filling up with expired entries.
238
+ * Fix increment and decrement to use file system locks so they are consistent between processes.
239
+
240
+ MemCacheStore:
241
+ * Support all keys. Previously keys with spaces in them would fail
242
+ * Deprecate CompressedMemCacheStore since it isn't needed anymore (use :compress => true)
243
+
244
+ * JSON: encode objects that don't have a native JSON representation using to_hash, if available, instead of instance_values (the old fallback) or to_s (other encoders' default). Encode BigDecimal and Regexp encode as strings to conform with other encoders. Try to transcode non-UTF-8 strings. *Jeremy Kemper*
245
+
246
+ * HashWithIndifferentAccess: remove inherited symbolize_keys! since its keys are always strings. *Santiago Pastorino*
247
+
248
+ * Improve transliteration quality. #4374 *Norman Clarke*
249
+
250
+ * Speed up and add Ruby 1.9 support for ActiveSupport::Multibyte::Chars#tidy_bytes. #4350 *Norman Clarke*
251
+
252
+ * Reduced load time by deferring configuration of classes using
253
+ ActiveSupport::on_load(:component_name) *YK*
254
+
255
+ * Rename #metaclass to #singleton_class now that ruby-core has decided *JK*
256
+
257
+ * New assertions assert_blank and assert_present. #4299 *Juanjo Bazan*
258
+
259
+ * Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice. *Jeremy Kemper*
260
+
261
+ * JSON backend for YAJL. Preferred if available. #2666 *Brian Lopez*
262
+
263
+ * Introduce class_attribute to declare inheritable class attributes. Writing an attribute on a subclass behaves just like overriding the superclass reader method. Unifies and replaces most usage of cattr_accessor, class_inheritable_attribute, superclass_delegating_attribute, and extlib_inheritable_attribute. *Jeremy Kemper, Yehuda Katz*
264
+
265
+ * Time#- with a DateTime argument behaves the same as with a Time argument, i.e. returns the difference between self and arg as a Float #3476 *Geoff Buesing*
266
+
267
+ * YAML serialization for OrderedHash. #3608 *Gregor Schmidt*
268
+
269
+ * Update bundled TZInfo to v0.3.16 *Geoff Buesing*
270
+
271
+ * Georgetown TimeZone is now mapped to "America/Guyana" instead of "America/Argentina/San_Juan" #1821 *Geoff Buesing, Reuben Sivan*
272
+
273
+ * Changed the default ActiveSupport.use_standard_json_time_format from false to true and
274
+ ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults *DHH*
275
+
276
+ * Added Object#presence that returns the object if it's #present? otherwise returns nil *DHH/Colin Kelley*
277
+
278
+ * Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !x.include?/else calls *DHH*
279
+
280
+ * Update Edinburgh TimeZone to use "Europe/London" instead of "Europe/Dublin" #3310 *Phil Ross*
281
+
282
+ * Update bundled TZInfo to v0.3.15 *Geoff Buesing*
283
+
284
+ * JSON: +Object#to_json+ calls +as_json+ to coerce itself into something natively encodable like +Hash+, +Integer+, or +String+. Override +as_json+ instead of +to_json+ so you're JSON library agnostic. *Jeremy Kemper*
285
+
286
+ * String #to_time and #to_datetime: handle fractional seconds #864 *Jason Frey*
287
+
288
+ * Update bundled TZInfo to v0.3.13 *Geoff Buesing*
289
+
290
+ * Allow MemCacheStore to be initialized with a MemCache-like object instead of addresses and options *Bryan Helmkamp*
291
+
292
+ * Change spelling of Kyev timezone to Kyiv #2613 *Alexander Dymo*
293
+
294
+ * Add ActiveSupport.parse_json_times to disable time parsing in JSON backends that don't support it or don't need it. *rick*
295
+
296
+ * Add pluggable JSON backends with support for the JSON gem. *rick*
297
+ Example: ActiveSupport::JSON.backend = "JSONGem"
298
+
299
+ All internal Rails JSON encoding is now handled by ActiveSupport::JSON.encode(). Use of #to_json is not recommended, as it may clash with other libraries that overwrite it. However, you can recover Rails specific functionality
300
+ if you really want to use #to_json.
301
+
302
+ gem 'json'
303
+ ActiveSupport::JSON.backend = "JSONGem"
304
+
305
+ class ActiveRecord::Base
306
+ alias to_json rails_to_json
307
+ end
308
+
309
+ * require 'active_support' no longer orders the whole menu of core extensions. Ask for just what you need: e.g. require 'active_support/core/time' to use timezones, durations, and stdlib date/time extensions. *Jeremy Kemper*
310
+
311
+ * Removed rarely-used DRb cache store. *Jeremy Kemper*
312
+
313
+ * TimeWithZone.name returns 'Time', to further thwart type checking *Geoff Buesing*
314
+
315
+ * Time.local instances: Adding 24.hours across the DST boundary adds 24 hours instead of one day #2066 *Michael Curtis*
316
+
317
+
318
+ ## 2.3.2 Final (March 15, 2009) ##
319
+
320
+ * XmlMini supports LibXML and Nokogiri backends. #2084, #2190 *Bart ten Brinke, Aaron Patterson*
321
+ Example: XmlMini.backend = 'Nokogiri'
322
+
323
+ * Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings in Ruby 1.9) #2038 *Akira Matsuda*
324
+
325
+ * Update bundled memcache-client from 1.5.0.5 to 1.6.4.99. See http://www.mikeperham.com/2009/02/15/memcache-client-performance/ *Mike Perham*
326
+
327
+ * Ruby 1.9.1p0 fix: URI.unescape can decode multibyte chars. #2033 *MOROHASHI Kyosuke*
328
+
329
+ * Time#to_s(:rfc822) uses #formatted_offset instead of unreliable and non-standard %z directive #1899 *Zachary Zolton*
330
+
331
+ * Make TimeWithZone#to_formatted_s an alias to TimeWithZone#to_s #1796 *Levin Alexander*
332
+
333
+ * Introduce Array.wrap(foo) to wrap the argument in an array unless it's already an array. Wraps nil as an empty array. Use instead of Array(foo) and foo.to_a since they treat String as Enumerable. *Jeremy Kemper*
334
+
335
+ * TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state:resolved] *Nicholas Dainty*
336
+
337
+ * Object#tap shim for Ruby < 1.8.7. Similar to Object#returning, tap yields self then returns self. *Jeremy Kemper*
338
+ array.select { ... }.tap(&:inspect).map { ... }
339
+
340
+ * TimeWithZone#- gives correct result with wrapped DateTime, and with DateTime argument *Geoff Buesing*
341
+
342
+ * Updated i18n gem to version 0.1.1 #1635 *Yaroslav Markin*
343
+
344
+ * Add :allow_nil option to delegate. #1127 *Sergio Gil*
345
+
346
+ * Add Benchmark.ms convenience method to benchmark realtime in milliseconds. *Jeremy Kemper*
347
+
348
+ * Updated included memcache-client to the 1.5.0.5 version which includes fixes from fiveruns and 37signals to deal with failover and timeouts #1535 *Joshua Sierles*
349
+
350
+ * Multibyte: add multibyte-safe Chars#ord rather than falling back to String#ord. #1483 *Jason Cheow*
351
+
352
+ * I18n support for Array#to_sentence. Introduces support.array.words_connector, .two_words_connector, and .last_word_connector translation keys. #1397 *Akira Matsuda*
353
+
354
+ * Added ActiveSupport::OrderedHash#each_key and ActiveSupport::OrderedHash#each_value #1410 *Christoffer Sawicki*
355
+
356
+ * Added ActiveSupport::MessageVerifier and MessageEncryptor to aid users who need to store signed and/or encrypted messages. *Michael Koziarski*
357
+
358
+ * Added ActiveSupport::BacktraceCleaner to cut down on backtrace noise according to filters and silencers *David Heinemeier Hansson*
359
+
360
+ * Added Object#try. ( Taken from http://ozmm.org/posts/try.html ) *Chris Wanstrath*
361
+
362
+ * Added Enumerable#none? to check that none of the elements match the block #1408 *Damian Janowski*
363
+
364
+ * TimeZone offset tests: use current_period, to ensure TimeZone#utc_offset is up-to-date *Geoff Buesing*
365
+
366
+ * Update bundled TZInfo to 0.3.12 *Geoff Buesing*
367
+
368
+ * Added lambda merging to OptionMerger (especially useful with named_scope and with_options) #726 *Paweł Kondzior*
369
+
370
+
371
+ ## 2.2.1 RC2 (November 14th, 2008) ##
372
+
373
+ * Increment the version of our altered memcache-client to prevent confusion caused when the 1.5.0 gem is installed.
374
+
375
+ * Fixed the option merging in Array#to_xml #1126 *Rudolf Gavlas*
376
+
377
+ * Make I18n::Backend::Simple reload its translations in development mode *David Heinemeier Hansson/Sven Fuchs*
378
+
379
+
380
+ ## 2.2.0 RC1 (October 24th, 2008) ##
381
+
382
+ * TimeWithZone#freeze: preload instance variables so that we can actually freeze *Geoff Buesing*
383
+
384
+ * Fix Brasilia timezone #1180 *Marcus Derencius, Kane*
385
+
386
+ * Time#advance recognizes fractional days and weeks. Deprecate Durations of fractional months and years #970 *Tom Lea*
387
+
388
+ * Add ActiveSupport::Rescuable module abstracting ActionController::Base rescue_from features. *Norbert Crombach, Pratik Naik*
389
+
390
+ * Switch from String#chars to String#mb_chars for the unicode proxy. *Manfred Stienstra*
391
+
392
+ This helps with 1.8.7 compatibility and also improves performance for some operations by reducing indirection.
393
+
394
+ * TimeWithZone #wday, #yday and #to_date avoid trip through #method_missing *Geoff Buesing*
395
+
396
+ * Added Time, Date, DateTime and TimeWithZone #past?, #future? and #today? #720 *Clemens Kofler, Geoff Buesing*
397
+
398
+ * Fixed Sri Jayawardenepura time zone to map to Asia/Colombo *Jamis Buck*
399
+
400
+ * Added Inflector#parameterize for easy slug generation ("Donald E. Knuth".parameterize => "donald-e-knuth") #713 *Matt Darby*
401
+
402
+ * Changed cache benchmarking to be reported in milliseconds *David Heinemeier Hansson*
403
+
404
+ * Fix Ruby's Time marshaling bug in pre-1.9 versions of Ruby: utc instances are now correctly unmarshaled with a utc zone instead of the system local zone [#900 state:resolved] *Luca Guidi, Geoff Buesing*
405
+
406
+ * Add Array#in_groups which splits or iterates over the array in specified number of groups. #579. [Adrian Mugnolo] Example:
407
+
408
+ a = (1..10).to_a
409
+ a.in_groups(3) # => [[1, 2, 3, 4], [5, 6, 7, nil], [8, 9, 10, nil]]
410
+ a.in_groups(3, false) # => [[1, 2, 3, 4], [5, 6, 7], [8, 9, 10]]
411
+
412
+ * Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, because Ruby's marshaling of Time instances doesn't respect the zone *Geoff Buesing*
413
+
414
+ * Added Memoizable mixin for caching simple lazy loaded attributes *Josh Peek*
415
+
416
+ * Move the test related core_ext stuff out of core_ext so it's only loaded by the test helpers. *Michael Koziarski*
417
+
418
+ * Add Inflection rules for String#humanize. #535 *Dan Manges*
419
+
420
+ ActiveSupport::Inflector.inflections do |inflect|
421
+ inflect.human(/_cnt$/i, '\1_count')
422
+ end
423
+
424
+ 'jargon_cnt'.humanize # => 'Jargon count'
425
+
426
+ * TimeWithZone: when crossing DST boundary, treat Durations of days, months or years as variable-length, and all other values as absolute length. A time + 24.hours will advance exactly 24 hours, but a time + 1.day will advance 23-25 hours, depending on the day. Ensure consistent behavior across all advancing methods *Geoff Buesing*
427
+
428
+ * Added TimeZone #=~, to support matching zones by regex in time_zone_select. #195 *Ernie Miller*
429
+
430
+ * Added Array#second through Array#fifth as aliases for Array#[1] through Array#[4] + Array#forty_two as alias for Array[41] *David Heinemeier Hansson*
431
+
432
+ * Added test/do declaration style testing to ActiveSupport::TestCase *DHH via Jay Fields*
433
+
434
+ * Added Object#present? which is equivalent to !Object#blank? *David Heinemeier Hansson*
435
+
436
+ * Added Enumberable#many? to encapsulate collection.size > 1 *David Heinemeier Hansson/Damian Janowski*
437
+
438
+ * Add more standard Hash methods to ActiveSupport::OrderedHash *Steve Purcell*
439
+
440
+ * Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveSupport *Josh Peek*
441
+
442
+ * Added StringInquirer for doing things like StringInquirer.new("production").production? # => true and StringInquirer.new("production").development? # => false *David Heinemeier Hansson*
443
+
444
+ * Fixed Date#end_of_quarter to not blow up on May 31st [#289 state:resolved] (Danger)
445
+
446
+
447
+ ## 2.1.0 (May 31st, 2008) ##
448
+
449
+ * TimeZone#to_s shows offset as GMT instead of UTC, because GMT will be more familiar to end users (see time zone selects used by Windows OS, google.com and yahoo.com.) Reverts [8370] *Geoff Buesing*
450
+
451
+ * Hash.from_xml: datetime xml types overflow to Ruby DateTime class when out of range of Time. Adding tests for utc offsets *Geoff Buesing*
452
+
453
+ * TimeWithZone #+ and #- : ensure overflow to DateTime with Numeric arg *Geoff Buesing*
454
+
455
+ * Time#to_json: don't convert to utc before encoding. References #175 *Geoff Buesing*
456
+
457
+ * Remove unused JSON::RESERVED_WORDS, JSON.valid_identifier? and JSON.reserved_word? methods. Resolves #164. *Cheah Chu Yeow*
458
+
459
+ * Adding Date.current, which returns Time.zone.today if config.time_zone is set; otherwise returns Date.today *Geoff Buesing*
460
+
461
+ * TimeWithZone: date part getter methods (#year #mon #day etc) are defined on class; no longer relying on method_missing *Geoff Buesing*
462
+
463
+ * Time.zone.parse return nil for strings with no date information *Geoff Buesing*
464
+
465
+ * Time.zone.parse respects offset information in string. Resolves #105. *Scott Fleckenstein, Geoff Buesing*
466
+
467
+ * Added Ruby 1.8 implementation of Process.daemon
468
+
469
+ * Duration #since and #ago with no argument (e.g., 5.days.ago) return TimeWithZone when config.time_zone is set. Introducing Time.current, which returns Time.zone.now if config.time_zone is set, otherwise just returns Time.now *Geoff Buesing*
470
+
471
+ * Time#since behaves correctly when passed a Duration. Closes #11527 *kemiller*
472
+
473
+ * Add #getutc alias for DateTime#utc *Geoff Buesing*
474
+
475
+ * Refactor TimeWithZone: don't send #since, #ago, #+, #-, #advance through method_missing *Geoff Buesing*
476
+
477
+ * TimeWithZone respects config.active_support.use_standard_json_time_format *Geoff Buesing*
478
+
479
+ * Add config.active_support.escape_html_entities_in_json to allow disabling of html entity escaping. *Rick Olson*
480
+
481
+ * Improve documentation. *Xavier Noria*
482
+
483
+ * Modified ActiveSupport::Callbacks::Callback#call to accept multiple arguments.
484
+
485
+ * Time #yesterday and #tomorrow behave correctly crossing DST boundary. Closes #7399 *sblackstone*
486
+
487
+ * TimeWithZone: Adding tests for dst and leap day edge cases when advancing time *Geoff Buesing*
488
+
489
+ * TimeWithZone#method_missing: send to utc to advance with dst correctness, otherwise send to time. Adding tests for time calculations methods *Geoff Buesing*
490
+
491
+ * Add config.active_support.use_standard_json_time_format setting so that Times and Dates export to ISO 8601 dates. *Rick Olson*
492
+
493
+ * TZInfo: Removing unneeded TimezoneProxy class *Geoff Buesing*
494
+
495
+ * TZInfo: Removing unneeded TimezoneIndexDefinition, since we're not including Indexes::Timezones *Geoff Buesing*
496
+
497
+ * Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now bundled *Geoff Buesing*
498
+
499
+ * Bundling abbreviated version of TZInfo gem 0.3.8: only the classes and zone definitions required to support Rails time zone features are included. If a recent version of the full TZInfo gem is installed, this will take precedence over the bundled version *Geoff Buesing*
500
+
501
+ * TimeWithZone#marshal_load does zone lookup via Time.get_zone, so that tzinfo/Olson identifiers are handled *Geoff Buesing*
502
+
503
+ * Time.zone= accepts TZInfo::Timezone instances and Olson identifiers; wraps result in TimeZone instance *Geoff Buesing*
504
+
505
+ * TimeWithZone time conversions don't need to be wrapped in TimeOrDateTime, because TZInfo does this internally *Geoff Buesing*
506
+
507
+ * TimeWithZone#usec returns 0 instead of error when DateTime is wrapped *Geoff Buesing*
508
+
509
+ * Improve documentation. *Ryan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria, Sunny Ripert*
510
+
511
+ * Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. *Rick Olson*
512
+
513
+ * Ensure correct TimeWithZone#to_date *Geoff Buesing*
514
+
515
+ * Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifier alias for #abbreviation, silence warnings on tests. Raise LoadError when TZInfo version is < 0.2 by sniffing for TZInfo::TimeOrDateTime constant. Move all tzinfo-dependent TimeZone tests into uses_tzinfo block *Geoff Buesing*
516
+
517
+ * Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing now unneeded #in_current_time_zone *Geoff Buesing*
518
+
519
+ * TZInfo caches Timezone instances in its own internal hash cache, so TimeZone::MAPPING doesn't need to cache them as well *Geoff Buesing*
520
+
521
+ * Adding TimeZone#parse *Geoff Buesing*
522
+
523
+ * Adding TimeZone#at and DateTime#to_f *Geoff Buesing*
524
+
525
+ * TimeWithZone responds to Ruby 1.9 weekday-named query methods *Geoff Buesing*
526
+
527
+ * TimeWithZone caches TZInfo::TimezonePeriod used for time conversion so that it can be reused, and enforces DST rules correctly when instance is created from a local time *Geoff Buesing*
528
+
529
+ * Fixed that BufferedLogger should create its own directory if one doesn't already exist #11285 *lotswholetime*
530
+
531
+ * Fix Numeric time tests broken by DST change by anchoring them to fixed times instead of Time.now. Anchor TimeZone#now DST test to time specified with Time.at instead of Time.local to work around platform differences with Time.local and DST representation *Geoff Buesing*
532
+
533
+ * Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZone *Geoff Buesing*
534
+
535
+ * TimeZone #local and #now correctly enforce DST rules *Geoff Buesing*
536
+
537
+ * TimeWithZone instances correctly enforce DST rules. Adding TimeZone#period_for_utc *Geoff Buesing*
538
+
539
+ * test_time_with_datetime_fallback expects DateTime.local_offset instead of DateTime.now.offset *Geoff Buesing*
540
+
541
+ * Adding TimeWithZone #marshal_dump and #marshal_load *Geoff Buesing*
542
+
543
+ * Add OrderedHash#to_hash *Josh Peek*
544
+
545
+ * Adding Time#end_of_day, _quarter, _week, and _year. #9312 *Juanjo Bazan, Tarmo Tänav, BigTitus*
546
+
547
+ * Adding TimeWithZone#between? *Geoff Buesing*
548
+
549
+ * Time.=== returns true for TimeWithZone instances *Geoff Buesing*
550
+
551
+ * TimeWithZone #+ and #- behave consistently with numeric arguments regardless of whether wrapped time is a Time or DateTime; consistenty answers false to #acts_like?(:date) *Geoff Buesing*
552
+
553
+ * Add String#squish and String#squish! to remove consecutive chunks of whitespace. #11123 *Jordi Bunster, Henrik N*
554
+
555
+ * Serialize BigDecimals as Floats when using to_yaml. #8746 *Ernesto Jimenez*
556
+
557
+ * Adding TimeWithZone #to_yaml, #to_datetime, #eql? and method aliases for duck-typing compatibility with Time *Geoff Buesing*
558
+
559
+ * TimeWithZone #in_time_zone returns +self+ if zone argument is the same as #time_zone *Geoff Buesing*
560
+
561
+ * Adding TimeWithZone #to_a, #to_f, #to_i, #httpdate, #rfc2822 *Geoff Buesing*
562
+
563
+ * Pruning unneeded TimeWithZone#change_time_zone_to_current *Geoff Buesing*
564
+
565
+ * Time#zone=, #in_time_zone and #change_time_zone accept a Duration *Geoff Buesing*
566
+
567
+ * Time#in_time_zone handles Time.local instances correctly *Geoff Buesing*
568
+
569
+ * Pruning unneeded Time#change_time_zone_to_current. Enhanced docs to #change_time_zone to explain the difference between this method and #in_time_zone *Geoff Buesing*
570
+
571
+ * TimeZone#new method renamed #local; when used with Time.zone, constructor now reads: Time.zone.local() *Geoff Buesing*
572
+
573
+ * Added Base64.encode64s to encode values in base64 without the newlines. This makes the values immediately usable as URL parameters or memcache keys without further processing *David Heinemeier Hansson*
574
+
575
+ * Remove :nodoc: entries around the ActiveSupport test/unit assertions. #10946 *dancroak, jamesh*
576
+
577
+ * Add Time.zone_default accessor for setting the default time zone. Rails::Configuration.time_zone sets this. #10982 *Geoff Buesing*
578
+
579
+ * cache.fetch(key, :force => true) to force a cache miss. *Jeremy Kemper*
580
+
581
+ * Support retrieving TimeZones with a Duration. TimeZone[-28800] == TimeZone[-480.minutes]. *Rick Olson*
582
+
583
+ * TimeWithZone#- added, so that #- can handle a Time or TimeWithZone argument correctly *Geoff Buesing*
584
+
585
+ * with_timezone test helper renamed with_env_tz, to distinguish between setting ENV['TZ'] and setting Time.zone in tests *Geoff Buesing*
586
+
587
+ * Time#- coerces TimeWithZone argument to a Time instance so that difference in seconds can be calculated. Closes #10914 *Geoff Buesing, yyyc514*
588
+
589
+ * Adding UTC zone to TimeZone; TimeWithZone no longer has to fake UTC zone with nil *Geoff Buesing*
590
+
591
+ * Time.get_zone refactored to private method, given that the encapsulated logic is only useful internally *Geoff Buesing*
592
+
593
+ * Time.zone uses thread-local variable for thread safety. Adding Time.use_zone, for overriding Time.zone locally inside a block. Removing unneeded Time.zone_reset! *Geoff Buesing*
594
+
595
+ * TimeZone#to_s uses UTC rather than GMT; reapplying change that was undone in [8679]. #1689 *Cheah Chu Yeow*
596
+
597
+ * Time.days_in_month defaults to current year if no year is supplied as argument #10799 [Radar], uses Date.gregorian_leap? to determine leap year, and uses constant lookup to determine days in month *Geoff Buesing*
598
+
599
+ * Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=> so that any combination of Time, DateTime and ActiveSupport::TimeWithZone instances can be chronologically compared *Geoff Buesing*
600
+
601
+ * TimeZone#now returns an ActiveSupport::TimeWithZone *Geoff Buesing*
602
+
603
+ * Time #in_current_time_zone and #change_time_zone_to_current return self when Time.zone is nil *Geoff Buesing*
604
+
605
+ * Remove unneeded #to_datetime_default_s alias for DateTime#to_s, given that we inherit a #to_default_s from Date that does exactly the same thing *Geoff Buesing*
606
+
607
+ * Refactor Time and DateTime #to_formatted_s: use ternary instead of nested if/else *Geoff Buesing*
608
+
609
+ * Adding Time and DateTime #formatted_offset, for outputting +HH:MM utc offset strings with cross-platform consistency *Geoff Buesing*
610
+
611
+ * Adding alternate_utc_string option to TimeZone#formatted_offset. Removing unneeded TimeZone#offset. *Geoff Buesing*
612
+
613
+ * Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a TimeZone. Introduce instance methods to Time for creating TimeWithZone instances, and class methods for managing a global time zone. *Geoff Buesing*
614
+
615
+ * Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods. *Geoff Buesing*
616
+
617
+ * Extract ActiveSupport::Callbacks from Active Record, test case setup and teardown, and ActionController::Dispatcher. #10727 *Josh Peek*
618
+
619
+ * Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibility with Time. Closes #10002 *Geoff Buesing*
620
+
621
+ * Time#to_json uses Numeric#to_utc_offset_s to output a cross-platform-consistent representation without having to convert to DateTime. References #9750 *Geoff Buesing*
622
+
623
+ * Refactor number-to-HH:MM-string conversion logic from TimeZone#formatted_offset to a reusable Numeric#to_utc_offset_s method. *Geoff Buesing*
624
+
625
+ * Continue evolution toward ActiveSupport::TestCase. #10679 *Josh Peek*
626
+
627
+ * TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. *Jeremy Kemper*
628
+
629
+ * Added ActiveSupport::Gzip.decompress/compress(source) as an easy wrapper for Zlib *Tobias Lütke*
630
+
631
+ * Included MemCache-Client to make the improved ActiveSupport::Cache::MemCacheStore work out of the box *Bob Cottrell, Eric Hodel*
632
+
633
+ ## Added ActiveSupport::Cache:: framework as an extraction from ActionController::Caching::Fragments:: David Heinemeier Hansson ##
634
+
635
+ * Fixed String#titleize to work for strings with 's too #10571 *trek*
636
+
637
+ * Changed the implementation of Enumerable#group_by to use a double array approach instead of a hash such that the insert order is honored *David Heinemeier Hansson/Marcel Molina Jr.*
638
+
639
+ * remove multiple enumerations from ActiveSupport::JSON#convert_json_to_yaml when dealing with date/time values. *Rick Olson*
640
+
641
+ * Hash#symbolize_keys skips keys that can't be symbolized. #10500 *Brad Greenlee*
642
+
643
+ * Ruby 1.9 compatibility. #1689, #10466, #10468, #10554, #10594, #10632 *Cheah Chu Yeow, Pratik Naik, Jeremy Kemper, Dirkjan Bussink, Xavier Noria*
644
+
645
+ * TimeZone#to_s uses UTC rather than GMT. #1689 *Cheah Chu Yeow*
646
+
647
+ * Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 *ReinH*
648
+
649
+ * Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options hash. Closes #10419 *ReinH*
650
+
651
+
652
+ ## 2.0.1 (December 7th, 2007) ##
653
+
654
+ * Added Array#from and Array#to that behaves just from String#from and String#to *David Heinemeier Hansson*
655
+
656
+ * Fix that empty collections should be treated as empty arrays regardless of whitespace for Hash#from_xml #10255 *adamj*
657
+
658
+ * Time#time_with_datetime_fallback, Time#to_datetime, Date#to_datetime and String#to_datetime honor Ruby's default calendar reform setting. #10201 *Geoff Buesing*
659
+
660
+ * Change Time and DateTime #end_of_month to return last second of month instead of beginning of last day of month. Closes #10200 *Geoff Buesing*
661
+
662
+ * Speedup String#blank? *Jeremy Kemper, Michael Koziarski*
663
+
664
+ * Add documentation for Hash#diff. Closes #9306 *Tarmo Tänav*
665
+
666
+ * Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. *Michael Koziarski, Tarmo Tänav*
667
+
668
+ * Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 *Josh Peek, Cheah Chu Yeow, Tim Pope*
669
+
670
+ * Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 *Rick Olson, theamazingrando*
671
+
672
+ * Introduce a base class for all test cases used by rails applications. ActiveSupport::TestCase *Michael Koziarski*
673
+
674
+ The intention is to use this to reduce the amount of monkeypatching / overriding that
675
+ is done to test/unit's classes.
676
+
677
+ * Document Enumerable and Hash #to_json. #9970 *Cheah Chu Yeow*
678
+
679
+ * Hash#to_xml handles symbol values. #9954 *Assaf*
680
+
681
+ * Hash#symbolize_keys behaves well with integer keys. #9890 *PotatoSalad*
682
+
683
+ * Multibyte: String#slice supports regexp argument. #9646 *yob*
684
+
685
+ * object.duplicable? returns true if object.dup is safe. False for nil, true, false, symbols, and numbers; true otherwise. #9333 *sur*
686
+
687
+ * Time, Date and DateTime #advance accept :weeks option. #9866 *Geoff Buesing*
688
+
689
+ * Fix Time#years_ago and #years_since from leap days. #9865 *Geoff Buesing*
690
+
691
+ * Time and DateTime#advance accept :hours, :minutes, and :seconds options. #9825 *Geoff Buesing*
692
+
693
+ * Fix Date#years_ago and #years_since from leap days. #9864 *Geoff Buesing*
694
+
695
+ * Refactor Time and Date#months_since and #months_ago to use #advance. #9863 *Geoff Buesing*
696
+
697
+ * Rebundle Builder 2.1.2 but prefer a newer RubyGem if available. *Jeremy Kemper*
698
+
699
+ * Add Range#overlaps?(range), Range#include?(range), and Range#step without a block. *brandon*
700
+
701
+ * Correct BufferedLogger#level? checks. #9806 *wildchild, Johan Sorensen*
702
+
703
+ * String#to_xs uses Eric Wong's fast_xs extension, if available, for Builder speedup. http://bogomips.org/fast_xs/ *Jeremy Kemper*
704
+
705
+ * Introduce BasicObject as Builder::BlankSlate for Ruby 1.9 forward compatibility. *Jeremy Kemper*
706
+
707
+ * Unbundle Builder in favor of a gem dependency. *Jeremy Kemper*
708
+
709
+ * Disambiguate Time, Date, and DateTime#to_json formatting. #9750 *Geoff Buesing, Cheah Chu Yeow*
710
+
711
+ * Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 *Cheah Chu Yeow*
712
+
713
+ * BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling. *Jeremy Kemper*
714
+
715
+ * Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 *Geoff Buesing*
716
+
717
+ * Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 *bermi*
718
+
719
+ * Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 *choonkat, Cheah Chu Yeow*
720
+
721
+ * Alias Object#send to send! for Ruby 1.9 forward compatibility. *Jeremy Kemper*
722
+
723
+ * Backport Object#instance_variable_defined? for Ruby < 1.8.6. *Jeremy Kemper*
724
+
725
+ * BufferedLogger#add converts the message to a string. #9702, #9724 *eigentone, DrMark, Tom Ward*
726
+
727
+ * Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit with no formatter) to the Ruby Logger, which provides a very nice speed bump (inspired by Ezra's buffered logger) *David Heinemeier Hansson*
728
+
729
+ * Object#instance_exec produces fewer garbage methods. *Mauricio Fernandez*
730
+
731
+ * Decode json strings as Dates/Times if they're using a YAML-compatible format. Closes #9614 *Rick Olson*
732
+
733
+ * Fixed cache_page to use the request url instead of the routing options when picking a save path. #8614 *Josh Peek*
734
+
735
+ * Object.subclasses_of includes anonymous subclasses. *Jeremy Kemper*
736
+
737
+ * Fixed that pluralizing an empty string should return the same empty string, not "s". #7720 *Josh Peek*
738
+
739
+ * Added call to inspect on non-string classes for the logger #8533 *Coda Hale*
740
+
741
+ * Deprecation: remove deprecated :mday option from Time, Date, and DateTime#change. *Jeremy Kemper*
742
+
743
+ * Fix JSON decoder with nested quotes and commas. #9579 *Zach Dennis*
744
+
745
+ * Hash#to_xml doesn't double-unescape. #8806 *Ezran*
746
+
747
+ * Added Array#rand #9170 [Norbert Crombach]. Examples:
748
+
749
+ [].rand # => nil
750
+ ['a'].rand # => 'a'
751
+ [1,2,3].rand # => 1 or 2 or 3
752
+
753
+ * Deprecation: removed Reloadable. *Jeremy Kemper*
754
+
755
+ * Make the utf-handler return the correct value for non-matching regular expressions. Closes #9049 *Manfred Stienstra*
756
+
757
+ * Add ljust, rjust and center to utf8-handler. Closes #9165 *Manfred Stienstra*
758
+
759
+ * Fix Time#advance bug when trying to advance a year from leap day. Closes #8655 *Geoff Buesing*
760
+
761
+ * Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. *ewan, Manfred Stienstra*
762
+
763
+ * Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters. #8759 *Norbert Crombach*
764
+
765
+ * Let alias_attribute work with attributes with initial capital letters (legacy columns etc). Closes #8596 *mpalmer*
766
+
767
+ * Added Hash#except which is the inverse of Hash#slice -- return the hash except the keys that are specified *David Heinemeier Hansson*
768
+
769
+ * Added support for pluralization with a different starting letter than the singular version (cow/kine) #4929 *norri_b/Josh Susser*
770
+
771
+ * Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. #8453 *candlerb, Jeremy Kemper*
772
+
773
+ * Backport clean_logger changes to support ruby 1.8.2 *Mislav Marohnić*
774
+
775
+ * Added proper handling of arrays #8537 *Josh Susser*
776
+
777
+ Before:
778
+ Hash.from_xml '<images></images>'
779
+ # => {:images => nil}
780
+
781
+ Hash.from_xml '<images><image>foo.jpg</image></images>'
782
+ # => {:images => {:image => "foo.jpg"}}
783
+
784
+ Hash.from_xml '<images><image>foo.jpg</image><image>bar.jpg</image></images>'
785
+ # => {:images => {:image => ["foo.jpg", "bar.jpg"]}}
786
+
787
+ After:
788
+ Hash.from_xml '<images type="array"></images>'
789
+ # => {:images => []}
790
+
791
+ Hash.from_xml '<images type="array"><image>foo.jpg</image></images>'
792
+ # => {:images => ["foo.jpg"]}
793
+
794
+ Hash.from_xml '<images type="array"><image>foo.jpg</image><image>bar.jpg</image></images>'
795
+ # => {:images => ["foo.jpg", "bar.jpg"]}
796
+
797
+ * Improve Time and Date test coverage. #8646 *Josh Peek*
798
+
799
+ * Add Date#since, ago, beginning_of_day, and end_of_day. Date + seconds works now. #8575 *Geoff Buesing*
800
+
801
+ * String#to_time overflows to DateTime. Add String#to_datetime. #8572 *Geoff Buesing*
802
+
803
+ * Date.yesterday and .tomorrow. #8571 *Geoff Buesing*
804
+
805
+ * Readable Date and DateTime#inspect. #8570 *Geoff Buesing*
806
+
807
+ * Move common DateTime calculations to Date. #8536 *Geoff Buesing*
808
+
809
+ * Added Date#change (like Time#change) *David Heinemeier Hansson*
810
+
811
+ * DateTime#to_time converts to Time unless out of range. #8512 *Geoff Buesing*
812
+
813
+ * Date#to_datetime, #to_s(:rfc822). #8512 *Geoff Buesing*
814
+
815
+ * Time durations use since instead of + for accuracy. #8513 *Geoff Buesing*
816
+
817
+ * escape <'s and >'s in JSON strings. #8371 *Rick Olson*
818
+
819
+ * Inflections: MatrixTest -> MatrixTests instead of MatricesTest. #8496 *jbwiv*
820
+
821
+ * Multibyte strings respond_to the String methods they proxy so they can be duck-typed. #6549 *Tuxie*
822
+
823
+ * Array#to_xml yields the builder just like Hash and ActiveRecord::Base. #8472 *seth*
824
+
825
+ * Date, Time, and DateTime support formatting blocks in addition to strftime strings. Introduce :long_ordinal format, e.g. "February 21st, 2005". #8191 *Coda Hale*
826
+
827
+ * Document Object#blank?. #6491 *Chris Mear*
828
+
829
+ * Date, Time, and DateTime#to_json. #8399 *wycats*
830
+
831
+ * Simplify API of assert_difference by passing in an expression that is evaluated before and after the passed in block. See documenation for examples of new API. *Marcel Molina Jr.*
832
+
833
+ * Added assert_difference and assert_no_difference to test/unit assertions *Tobias Lütke*
834
+
835
+ * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back *David Heinemeier Hansson*
836
+
837
+ * Added parsing of file type in Hash.xml_in so you can easily do file uploads with base64 from an API *David Heinemeier Hansson*
838
+
839
+ <person>
840
+ <name>David</name>
841
+ <avatar type="file" name="me.jpg" content_type="image/jpg">R0lGODlhkACZAPUAAM5lcfjrtMQCG=\n</avatar>
842
+ </person>
843
+
844
+ ...becomes:
845
+
846
+ attributes = { :person => { :name => "David", :avatar => #<StringIO> } }
847
+ attributes[:person][:avatar].content_type # => "image/jpg"
848
+ attributes[:person][:avatar].original_filename # => "me.jpg"
849
+ attributes[:person][:avatar].read # => binary data of the file
850
+
851
+ Which is duck-type compatible with the files that you get when doing multipart uploads through HTML.
852
+
853
+ * Improved multibyte performance by relying less on exception raising #8159 *Blaine*
854
+
855
+ * Use XSD-compatible type names for Hash#to_xml and make the converters extendable #8047 *Tim Pope*
856
+
857
+ * Added yielding of builder in Hash#to_xml *David Heinemeier Hansson*
858
+
859
+ * Hash#with_indifferent_access now also converts hashes kept in arrays to indifferent access (makes it easier to treat HTML and XML parameters the same) *David Heinemeier Hansson*
860
+
861
+ * Hash#to_xml supports YAML attributes. #7502 *jonathan*
862
+
863
+ * Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decoding by way of Syck with ActiveSupport::JSON.decode(json_string). Prevent hash keys that are JavaScript reserved words from being unquoted during encoding. *Sam Stephenson*
864
+
865
+ * alias_method_chain preserves the original method's visibility. #7854 *Jonathan Viney*
866
+
867
+ * Update Dependencies to ignore constants inherited from ancestors. Closes #6951. *Nicholas Seckar*
868
+
869
+ * Array#to_query preserves its ordering. #7756 *Greg Spurrier*
870
+
871
+ * Out-of-range Time calculations transparently overflow to DateTime. Introduce Time#to_datetime. #7706, #7715 *Geoff Buesing*
872
+
873
+ * DateTime calculations analogous to the Date and Time extensions. #7693 *Geoff Buesing*
874
+
875
+ * Give DateTime correct .to_s implementations, lets it play nice with ActiveRecord quoting. #7649 *Geoff Buesing*
876
+
877
+ * Add File.atomic_write, allows you to write large files in an atomic manner, preventing users from seeing half written files. *Michael Koziarski*
878
+
879
+ * Allow users to provide custom formatters to Logger. *Anthony Eden*
880
+
881
+ * Hash#to_query CGI-escapes its keys. *Jeremy Kemper*
882
+
883
+ * Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 *Bruce Perens*
884
+
885
+ * :db format for Date#to_s *Jeremy Kemper*
886
+ Date.new(2007, 1, 27).to_s(:db) # => '2007-01-27'
887
+
888
+ * Added :instance_writer option to #mattr_writer/accessor, #cattr_writer/accessor, and #class_inheritable_writer to skip the creation of the instance writer. *Rick Olson*
889
+
890
+ * Added Hash#to_query to turn a hash of values into a form-encoded query string *Nicholas Seckar*
891
+
892
+ * Increase test coverage for subclasses_of. Closes #7335. *Roman2K, Nicholas Seckar*
893
+
894
+ * Remove unused code from Duration#inspect. Closes #7180. *Rich Collins*
895
+
896
+ * Added test coverage for Inflector.inflections.clear. Closes #7179. *Rich Collins*
897
+
898
+ * ActiveSupport::Multibyte::Handlers::UTF8Handler should raise when a range and an integer are passed in (just like the native implementation). Closes #7176 *Rich Collins*
899
+
900
+ * A couple extra tests for #classify. Closes #7273. *Josh Susser*
901
+
902
+ * Better docs for Object extensions *zackchandler, Jamis Buck*
903
+
904
+ * Fix that Dates couldn't be subtracted from Dates after [5940]. *Sam Stephenson*
905
+
906
+ * Add Object#acts_like? and Time#acts_like_time? and Date#acts_like_date? to facilitate duck-typing. *Jamis Buck*
907
+
908
+ * Make 1.months and friends accurate by introducing a Duration class. #6835 *eventualbuddha*
909
+
910
+
911
+ ## 1.4.2 (March 12th, 2007) ##
912
+
913
+ * Ruby 1.8.6 and 1.9 define private Time#to_date and #to_datetime; make them
914
+ public for compatibility. *Jeremy Kemper*
915
+
916
+ * Deprecation: warn on stderr if RAILS_DEFAULT_LOGGER isn't set yet. *Jeremy Kemper*
917
+
918
+
919
+ ## 1.4.1 (February 5th, 2007) ##
920
+
921
+ * Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 *Bruce Perens*
922
+
923
+ * Added :instance_writer option to #mattr_writer/accessor, #cattr_writer/accessor, and #class_inheritable_writer to skip the creation of the instance writer. *Rick Olson*
924
+
925
+ * Full test coverage for Inflector. #7228 *Dan Kubb*
926
+
927
+
928
+ ## 1.4.0 (January 16th, 2007) ##
929
+
930
+ * Document Inflector.ordinalize and merge docs from String inflections. #7023 *smeade*
931
+
932
+ * Unbundle flexmock. *Jeremy Kemper*
933
+
934
+ * Fix Dependencies.autoloaded? to ignore anonymous modules. Closes #6561. *Nicholas Seckar*
935
+
936
+ * Update load once paths to prevent nested once constants from being detected and claimed by an external non-once load. *Nicholas Seckar*
937
+
938
+ * Deprecation: silence warnings when reporting test errors. *Jeremy Kemper*
939
+
940
+ * Hash#slice(*keys) returns a new hash with only the given keys. #slice! replaces the hash with only the given keys. Works with HashWithIndifferentAccess also. *Jeremy Kemper*
941
+
942
+ * HashWithIndifferentAccess#to_hash converts to a Hash with String keys and the same default value. *Jeremy Kemper*
943
+
944
+ * Fix remove_constant to correctly handle constant names of the form "::A::...". References #6720. *Nicholas Seckar*
945
+
946
+ * Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 *thkarcher/cyu*
947
+
948
+ * Added Time#to_s(:time) which will just return H:M, like 17:44 *David Heinemeier Hansson*
949
+
950
+ * Add Module#attr_accessor_with_default to initialize value of attribute before setting it. Closes #6538. *Stuart Halloway, Marcel Molina Jr.*
951
+
952
+ * Hash#to_xml handles keys with the same name as Kernel methods. #6613 *Jonathan del Strother*
953
+
954
+ * Added Time#end_of_day to get 23:59:59 of that day *David Heinemeier Hansson*
955
+
956
+ * Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers. Disable this with ActiveSupport::JSON.unquote_hash_key_identifiers = false if you need strict JSON compliance. *Sam Stephenson*
957
+
958
+ * Lazily load the Unicode Database in the UTF-8 Handler *Rick Olson*
959
+
960
+ * Update dependencies to delete partially loaded constants. *Nicholas Seckar*
961
+
962
+ * Fix unicode JSON regexp for Onigurama compatibility. #6494 *whitley*
963
+
964
+ * update XmlSimple to 1.0.10. Closes #6532. *Nick Sieger*
965
+
966
+ * Update dependencies to allow constants to be defined alongside their siblings. A common case for this is AR model classes with STI; user.rb might define User, Administrator and Guest for example. *Nicholas Seckar*
967
+
968
+ * next_week respects DST changes. #6483, #5617, #2353, #2509, #4551 *marclove, Rob Biedenharn, rails@roetzel.de, jsolson@damogran.org, drbrain@segment7.net*
969
+
970
+ * Expose methods added to Enumerable in the documentation, such as group_by. Closes #6170. *sergeykojin@gmail.com, Marcel Molina Jr.*
971
+
972
+ * Ensure Chars#tidy_bytes only tidies broken bytes. Closes #6397 *Manfred Stienstra*
973
+
974
+ * Add 'unloadable', a method used to mark any constant as requiring an unload after each request. *Nicholas Seckar*
975
+
976
+ * Make core_ext/string/access.rb multibyte safe. Closes #6388 *Manfred Stienstra*
977
+
978
+ * Make String#chars slicing behaviour consistent with String. Closes #6387 *Manfred Stienstra*
979
+
980
+ * Pull in latest multibyte patch. Closes #6346 *Manfred Stienstra*
981
+
982
+ * Add ActiveSupport::Multibyte. Provides String#chars which lets you deal with strings as a sequence of chars, not of bytes. Closes #6242 *Julian Tarkhanov, Manfred Stienstra, Thijs van der Vossen & Jan Behrens*
983
+
984
+ * Fix issue with #class_inheritable_accessor saving updates to the parent class when initialized with an Array or Hash *mojombo*
985
+
986
+ * Hash#to_xml supports Bignum and BigDecimal. #6313 *edibiase*
987
+
988
+ * Don't undefine #class in OptionMerger *Rick Olson*
989
+
990
+ * Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist until Rails 2.0 *David Heinemeier Hansson*
991
+
992
+ * alias_method_chain works with accessor= methods also. #6153 *Caio Chassot*
993
+
994
+ * Fix loadable_constants_for_path to handle load paths that do not end with a slash. *Nicholas Seckar*
995
+
996
+ * Fix logic error in determining what was loaded by a given file. Closes #6039. *Nicholas Seckar*
997
+
998
+ * Equate Kernel.const_missing with Object.const_missing. Fixes #5988. *Nicholas Seckar*
999
+
1000
+ * Add ApplicationController special case to Dependencies. *Nicholas Seckar*
1001
+
1002
+ * Don't pad remaining places with in_groups_of if specified padding value is false. *Marcel Molina Jr.*
1003
+
1004
+ * Fix cases where empty xml nodes weren't being translated to nil in Hash.create_from_xml *Rick Olso n*
1005
+
1006
+ <written-on type="date"></written-on> # => { :type => 'date' } # WRONG
1007
+ <written-on type="date"></written-on> # => nil # RIGHT
1008
+
1009
+ * Tighten rescue clauses. #5985 *james@grayproductions.net*
1010
+
1011
+ * Inflections: don't singularize -ies plurals. *foamdino@gmail.com, Mark Van Holstyn*
1012
+
1013
+ * Update Initializer to use load_once_paths to avoid plugin reloading. References #5852. *Nicholas Seckar*
1014
+
1015
+ * Use Array#assoc in ActiveSupport::OrderedHash. *Mauricio Fernandez*
1016
+
1017
+ * Greatly increased performance of String.to_json, which speeds up RJS considerably on large pages, fixes #3473 *Shugo Maeda*
1018
+
1019
+ * Detect missing_constants calls from removed modules and fail accordingly. *Nicholas Seckar*
1020
+
1021
+ * Stop using defined? in Dependencies.qualified_const_defined? since defined? may invoke const_missing. *Nicholas Seckar*
1022
+
1023
+ * Dependencies can autoload directories of nested classes. *Jeremy Kemper*
1024
+ Example:
1025
+ invoice.rb class Invoice
1026
+ invoice/lineitem.rb class Invoice::Lineitem
1027
+
1028
+ * Add Deprecation.silence so that Reloadable does not scold itself. *Nicholas Seckar*
1029
+
1030
+ * Add debugging logging to Dependencies. Currently can be enabled with Dependencies.log_activity = true; adding to Initializer and documenting is forthcoming. *Nicholas Seckar*
1031
+
1032
+ * Replace Reloadable with improvements to the Dependencies mechanism. *Nicholas Seckar*
1033
+
1034
+ * DateTime#to_time gives hour/minute/second resolution. #5747 *jon.evans@pobox.com*
1035
+
1036
+ * attr_internal to support namespacing and deprecation. Like attr_* except backed by internally-named instance variable. Set attr_internal_naming_format to change the format from the default '@_%s'. *Jeremy Kemper*
1037
+ # def foo() @foo__rofl end
1038
+ # def foo=(v) @foo__rofl = v end
1039
+ self.attr_internal_naming_format = '@%s__rofl'
1040
+ attr_internal :foo
1041
+
1042
+ * Raise fully qualified names upon name errors. #5533 *Lars Pind, Nicholas Seckar*
1043
+
1044
+ * Add extention to obtain the missing constant from NameError instances. *Nicholas Seckar*
1045
+
1046
+ * Thoroughly document inflections. #5700 *petermichaux@gmail.com*
1047
+
1048
+ * Added Module#alias_attribute [Jamis/David Heinemeier Hansson]. Example:
1049
+
1050
+ class Content < ActiveRecord::Base
1051
+ # has a title attribute
1052
+ end
1053
+
1054
+ class Email < ActiveRecord::Base
1055
+ alias_attribute :subject, :title
1056
+ end
1057
+
1058
+ e = Email.find(1)
1059
+ e.title # => "Superstars"
1060
+ e.subject # => "Superstars"
1061
+ e.subject? # => true
1062
+ e.subject = "Megastars"
1063
+ e.title # => "Megastars"
1064
+
1065
+ * Deprecation: easier to work with warning behavior as procs; default behaviors for each environment so users needn't update env.rb; and testing pleasure with assert_deprecated, assert_not_deprecated. *Jeremy Kemper*
1066
+ By default, test prints to $stderr, dev logs, production ignores.
1067
+ Provide your own per-environment in e.g. config/environments/development.rb:
1068
+ ActiveSupport::Deprecation.behavior = Proc.new { |message| raise message }
1069
+
1070
+ * First cut of the Rails Deprecation system. *Michael Koziarski*
1071
+
1072
+ * Strip boolean XML content before checking for 'true' *Rick Olson*
1073
+
1074
+ * Customize default BigDecimal formatting. References #5672 *Dave Thomas*
1075
+
1076
+ * Correctly convert <foo nil="true"> to nil when using Hash.create_from_xml. *Rick Olson*
1077
+
1078
+ * Optional identity for Enumerable#sum defaults to zero. #5657 *gensym@mac.com*
1079
+
1080
+ * HashWithIndifferentAccess shouldn't confuse false and nil. #5601 *Shugo Maeda*
1081
+
1082
+ * Fixed HashWithIndifferentAccess#default #5586 *chris@seagul.co.uk*
1083
+
1084
+ * More compatible Hash.create_from_xml. #5523 *nunemaker@gmail.com*
1085
+
1086
+ * Added Enumerable#sum for calculating a sum from the elements [David Heinemeier Hansson, jonathan@daikini.com]. Examples:
1087
+
1088
+ [1, 2, 3].sum
1089
+ payments.sum { |p| p.price * p.tax_rate }
1090
+ payments.sum(&:price)
1091
+
1092
+ This is instead of payments.inject(0) { |sum, p| sum + p.price }
1093
+
1094
+ * Correct and clarify Array#to_sentence docs. #5458 *brad@madriska.com*
1095
+
1096
+ * alias_method_chain preserves method punctuation so foo, foo?, and foo! may be chained with the same feature. *Jeremy Kemper*
1097
+ Example:
1098
+ alias_method_chain :save!, :validation
1099
+ is equivalent to
1100
+ alias_method :save_without_validation!, :save!
1101
+ alias_method :save!, :save_with_validation!
1102
+
1103
+ * Enhance Symbol#to_proc so it works with list objects, such as multi-dimensional arrays. Closes #5295 [nov@yo.rim.or.jp]. Example:
1104
+
1105
+ {1 => "one", 2 => "two", 3 => "three"}.sort_by(&:first).map(&:last)
1106
+ # => ["one", "two", "three"]
1107
+
1108
+ * Added Hash.create_from_xml(string) which will create a hash from a XML string and even typecast if possible [David Heinemeier Hansson]. Example:
1109
+
1110
+ Hash.create_from_xml <<-EOT
1111
+ <note>
1112
+ <title>This is a note</title>
1113
+ <created-at type="date">2004-10-10</created-at>
1114
+ </note>
1115
+ EOT
1116
+
1117
+ ...would return:
1118
+
1119
+ { :note => { :title => "This is a note", :created_at => Date.new(2004, 10, 10) } }
1120
+
1121
+ * Added Jim Weirich's excellent FlexMock class to vendor (Copyright 2003, 2004 by Jim Weirich (jim@weriichhouse.org)) -- it's not automatically required, though, so require 'flexmock' is still necessary *David Heinemeier Hansson*
1122
+
1123
+ * Fixed that Module#alias_method_chain should work with both foo? foo! and foo at the same time #4954 *anna@wota.jp*
1124
+
1125
+ * to_xml fixes, features, and speedup: introduce :dasherize option that converts updated_at to updated-at if true (the existing default); binary columns get encoding="base64" attribute; nil values get nil="true" attribute to distinguish empty values; add type information for float columns; allow arbitrarily deep :include; include SQL type information as the type attribute. #4989 *Blair Zajac <blair@orcaware.com>*
1126
+
1127
+ * Add OrderedHash#values. *Sam Stephenson*
1128
+
1129
+ * Added Array#to_s(:db) that'll produce a comma-separated list of ids [David Heinemeier Hansson]. Example:
1130
+
1131
+ Purchase.find(:all, :conditions => "product_id IN (#{shops.products.to_s(:db)})"
1132
+
1133
+ * Normalize classify's argument to a String so that it plays nice with Symbols. *Marcel Molina Jr.*
1134
+
1135
+ * Strip out leading schema name in classify. References #5139. *Michael Schoen*
1136
+
1137
+ * Remove Enumerable#first_match since break(value) handles the use case well enough. *Nicholas Seckar*
1138
+
1139
+ Enumerable#first_match was like detect, but instead of returning the matching element, the yielded value returned. For example:
1140
+
1141
+ user_xml = adapters(:from => User, :to => Xml).first_match do |adapter|
1142
+ adapter.adapt @user
1143
+ end
1144
+
1145
+ But this is just as easily done with:
1146
+
1147
+ user_xml = adapters(:from => User, :to => Xml).each do
1148
+ break adapter.adapt(@user)
1149
+ end
1150
+
1151
+ * Make Array#in_groups_of just return the grouped collection if a block isn't given. *Marcel Molina Jr.*
1152
+
1153
+ * Don't destroy a HashWithIndifferentAccess if symbolize_keys! or stringify_keys! is called on it. Closes #5076. *Marcel Molina Jr., guy.naor@famundo.com*
1154
+
1155
+ * Document Module::delegate. #5002 *pergesu@gmail.com*
1156
+
1157
+ * Replace alias method chaining with Module#alias_method_chain. *Marcel Molina Jr.*
1158
+
1159
+ * Strip out punctuation on predicates or bang methods being aliased with alias_method_chain since target?_without_feature is not a valid method name. Add tests for Module#alias_method_chain. *Marcel Molina Jr.*
1160
+
1161
+ * Replace Ruby's deprecated append_features in favor of included. *Marcel Molina Jr.*
1162
+
1163
+ * Allow default options in with_options to be overridden. Closes #4480. *murphy@cYcnus.de*
1164
+
1165
+ * Added Module#alias_method_chain *Jamis Buck*
1166
+
1167
+ * Updated to Builder 2.0 *David Heinemeier Hansson*
1168
+
1169
+ * Add Array#split for dividing arrays into one or more subarrays by value or block. *Sam Stephenson*
1170
+
1171
+ ## 1.3.1 (April 6th, 2006) ##
1172
+
1173
+ * Clean paths inside of exception messages and traces. *Nicholas Seckar*
1174
+
1175
+ * Add Pathname.clean_within for cleaning all the paths inside of a string. *Nicholas Seckar*
1176
+
1177
+ * provide an empty Dependencies::LoadingModule.load which prints deprecation warnings. Lets 1.0 applications function with .13-style environment.rb.
1178
+
1179
+
1180
+ ## 1.3.0 (March 27th, 2006) ##
1181
+
1182
+ * When possible, avoid incorrectly obtaining constants from parent modules. Fixes #4221. *Nicholas Seckar*
1183
+
1184
+ * Add more tests for dependencies; refactor existing cases. *Nicholas Seckar*
1185
+
1186
+ * Move Module#parent and Module#as_load_path into core_ext. Add Module#parent. *Nicholas Seckar*
1187
+
1188
+ * Add CachingTools::HashCaching to simplify the creation of nested, autofilling hashes. *Nicholas Seckar*
1189
+
1190
+ * Remove a hack intended to avoid unloading the same class twice, but which would not work anyways. *Nicholas Seckar*
1191
+
1192
+ * Update Object.subclasses_of to locate nested classes. This affects Object.remove_subclasses_of in that nested classes will now be unloaded. *Nicholas Seckar*
1193
+
1194
+ * Update Object.remove_subclasses_of to use Class.remove_class, reducing duplication. *Nicholas Seckar*
1195
+
1196
+ * Added Fixnum#seconds for consistency, so you can say 5.minutes + 30.seconds instead of 5.minutes + 30 #4389 *François Beausoleil*
1197
+
1198
+ * Added option to String#camelize to generate lower-cased camel case by passing in :lower, like "super_man".camelize(:lower) # => "superMan" *David Heinemeier Hansson*
1199
+
1200
+ * Added Hash#diff to show the difference between two hashes *Chris McGrath*
1201
+
1202
+ * Added Time#advance to do precise time time calculations for cases where a month being approximated to 30 days won't do #1860 *Rick Olson*
1203
+
1204
+ * Enhance Inflector.underscore to convert '-' into '_' (as the inverse of Inflector.dasherize) *Jamis Buck*
1205
+
1206
+ * Switched to_xml to use the xml schema format for datetimes. This allows the encoding of time zones and should improve operability. *Michael Koziarski*
1207
+
1208
+ * Added a note to the documentation for the Date related Numeric extensions to indicate that they're
1209
+ approximations and shouldn't be used for critical calculations. *Michael Koziarski*
1210
+
1211
+ * Added Hash#to_xml and Array#to_xml that makes it much easier to produce XML from basic structures [David Heinemeier Hansson]. Examples:
1212
+
1213
+ { :name => "David", :street_name => "Paulina", :age => 26, :moved_on => Date.new(2005, 11, 15) }.to_xml
1214
+
1215
+ ...returns:
1216
+
1217
+ <person>
1218
+ <street-name>Paulina</street-name>
1219
+ <name>David</name>
1220
+ <age type="integer">26</age>
1221
+ <moved-on type="date">2005-11-15</moved-on>
1222
+ </person>
1223
+
1224
+ * Moved Jim Weirich's wonderful Builder from Action Pack to Active Support (it's simply too useful to be stuck in AP) *David Heinemeier Hansson*
1225
+
1226
+ * Fixed that Array#to_sentence will return "" on an empty array instead of ", and" #3842, #4031 *rubyonrails@beautifulpixel.com*
1227
+
1228
+ * Add Enumerable#group_by for grouping collections based on the result of some
1229
+ block. Useful, for example, for grouping records by date.
1230
+
1231
+ ex.
1232
+
1233
+ latest_transcripts.group_by(&:day).each do |day, transcripts|
1234
+ p "#{day} -> #{transcripts.map(&:class) * ', '}"
1235
+ end
1236
+ "2006-03-01 -> Transcript"
1237
+ "2006-02-28 -> Transcript"
1238
+ "2006-02-27 -> Transcript, Transcript"
1239
+ "2006-02-26 -> Transcript, Transcript"
1240
+
1241
+ Add Array#in_groups_of, for iterating over an array in groups of a certain
1242
+ size.
1243
+
1244
+ ex.
1245
+
1246
+ %w(1 2 3 4 5 6 7).in_groups_of(3) {|g| p g}
1247
+ ["1", "2", "3"]
1248
+ ["4", "5", "6"]
1249
+ ["7", nil, nil]
1250
+
1251
+ *Marcel Molina Jr., Sam Stephenson*
1252
+
1253
+ * Added Kernel#daemonize to turn the current process into a daemon that can be killed with a TERM signal *David Heinemeier Hansson*
1254
+
1255
+ * Add 'around' methods to Logger, to make it easy to log before and after messages for a given block as requested in #3809. [Michael Koziarski] Example:
1256
+
1257
+ logger.around_info("Start rendering component (#{options.inspect}): ",
1258
+ "\n\nEnd of component rendering") { yield }
1259
+
1260
+ * Added Time#beginning_of_quarter #3607 *cohen.jeff@gmail.com*
1261
+
1262
+ * Fix Object.subclasses_of to only return currently defined objects *Jonathan Viney <jonathan@bluewire.net.nz>*
1263
+
1264
+ * Fix constantize to properly handle names beginning with '::'. *Nicholas Seckar*
1265
+
1266
+ * Make String#last return the string instead of nil when it is shorter than the limit [Scott Barron].
1267
+
1268
+ * Added delegation support to Module that allows multiple delegations at once (unlike Forwardable in the stdlib) [David Heinemeier Hansson]. Example:
1269
+
1270
+ class Account < ActiveRecord::Base
1271
+ has_one :subscription
1272
+ delegate :free?, :paying?, :to => :subscription
1273
+ delegate :overdue?, :to => "subscription.last_payment"
1274
+ end
1275
+
1276
+ account.free? # => account.subscription.free?
1277
+ account.overdue? # => account.subscription.last_payment.overdue?
1278
+
1279
+ * Fix Reloadable to handle the case where a class that has been 'removed' has not yet been garbage collected. *Nicholas Seckar*
1280
+
1281
+ * Don't allow Reloadable to be included into Modules.
1282
+
1283
+ * Remove LoadingModule. *Nicholas Seckar*
1284
+
1285
+ * Add documentation for Reloadable::Subclasses. *Nicholas Seckar*
1286
+
1287
+ * Add Reloadable::Subclasses which handles the common case where a base class should not be reloaded, but its subclasses should be. *Nicholas Seckar*
1288
+
1289
+ * Further improvements to reloading code *Nicholas Seckar, Trevor Squires*
1290
+
1291
+ - All classes/modules which include Reloadable can define reloadable? for fine grained control of reloading
1292
+ - Class.remove_class uses Module#parent to access the parent module
1293
+ - Class.remove_class expanded to handle multiple classes in a single call
1294
+ - LoadingModule.clear! has been removed as it is no longer required
1295
+ - Module#remove_classes_including has been removed in favor of Reloadable.reloadable_classes
1296
+
1297
+ * Added reusable reloading support through the inclusion of the Relodable module that all subclasses of ActiveRecord::Base, ActiveRecord::Observer, ActiveController::Base, and ActionMailer::Base automatically gets. This means that these classes will be reloaded by the dispatcher when Dependencies.mechanism = :load. You can make your own models reloadable easily:
1298
+
1299
+ class Setting
1300
+ include Reloadable
1301
+ end
1302
+
1303
+ Reloading a class is done by removing its constant which will cause it to be loaded again on the next reference. *David Heinemeier Hansson*
1304
+
1305
+ * Added auto-loading support for classes in modules, so Conductor::Migration will look for conductor/migration.rb and Conductor::Database::Settings will look for conductor/database/settings.rb *Nicholas Seckar*
1306
+
1307
+ * Add Object#instance_exec, like instance_eval but passes its arguments to the block. (Active Support will not override the Ruby 1.9 implementation of this method.) *Sam Stephenson*
1308
+
1309
+ * Add Proc#bind(object) for changing a proc or block's self by returning a Method bound to the given object. Based on why the lucky stiff's "cloaker" method. *Sam Stephenson*
1310
+
1311
+ * Fix merge and dup for hashes with indifferent access #3404 *Ken Miller*
1312
+
1313
+ * Fix the requires in option_merger_test to unbreak AS tests. *Sam Stephenson*
1314
+
1315
+ * Make HashWithIndifferentAccess#update behave like Hash#update by returning the hash. #3419, #3425 *asnem@student.ethz.ch, JanPrill@blauton.de, Marcel Molina Jr.*
1316
+
1317
+ * Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSON strings. *Sam Stephenson*
1318
+
1319
+ * Add Object#with_options for DRYing up multiple calls to methods having shared options. [Sam Stephenson] Example:
1320
+
1321
+ ActionController::Routing::Routes.draw do |map|
1322
+ # Account routes
1323
+ map.with_options(:controller => 'account') do |account|
1324
+ account.home '', :action => 'dashboard'
1325
+ account.signup 'signup', :action => 'new'
1326
+ account.logout 'logout', :action => 'logout'
1327
+ end
1328
+ end
1329
+
1330
+ * Introduce Dependencies.warnings_on_first_load setting. If true, enables warnings on first load of a require_dependency. Otherwise, loads without warnings. Disabled (set to false) by default. *Jeremy Kemper*
1331
+
1332
+ * Active Support is warnings-safe. #1792 *Eric Hodel*
1333
+
1334
+ * Introduce enable_warnings counterpart to silence_warnings. Turn warnings on when loading a file for the first time if Dependencies.mechanism == :load. Common mistakes such as redefined methods will print warnings to stderr. *Jeremy Kemper*
1335
+
1336
+ * Add Symbol#to_proc, which allows for, e.g. [:foo, :bar].map(&:to_s). *Marcel Molina Jr.*
1337
+
1338
+ * Added the following methods [Marcel Molina Jr., Sam Stephenson]:
1339
+ * Object#copy_instance_variables_from(object) to copy instance variables from one object to another
1340
+ * Object#extended_by to get an instance's included/extended modules
1341
+ * Object#extend_with_included_modules_from(object) to extend an instance with the modules from another instance
1342
+
1343
+ ## 1.2.5 (December 13th, 2005) ##
1344
+
1345
+ * Become part of Rails 1.0
1346
+
1347
+ * Rename Version constant to VERSION. #2802 *Marcel Molina Jr.*
1348
+
1349
+ ## 1.2.3 (November 7th, 2005) ##
1350
+
1351
+ * Change Inflector#constantize to use eval instead of const_get. *Nicholas Seckar*
1352
+
1353
+ * Fix const_missing handler to ignore the trailing '.rb' on files when comparing paths. *Nicholas Seckar*
1354
+
1355
+ * Define kernel.rb methods in "class Object" instead of "module Kernel" to work around a Windows peculiarity *Sam Stephenson*
1356
+
1357
+ * Fix broken tests caused by incomplete loading of active support. *Nicholas Seckar*
1358
+
1359
+ * Fix status pluralization bug so status_codes doesn't get pluralized as statuses_code. #2758 *keithm@infused.org*
1360
+
1361
+ * Added Kernel#silence_stderr to silence stderr for the duration of the given block *Sam Stephenson*
1362
+
1363
+ * Changed Kernel#` to print a message to stderr (like Unix) instead of raising Errno::ENOENT on Win32 *Sam Stephenson*
1364
+
1365
+ * Changed 0.blank? to false rather than true since it violates everyone's expectation of blankness. #2518, #2705 *rails@jeffcole.net*
1366
+
1367
+ * When loading classes using const_missing, raise a NameError if and only if the file we tried to load was not present. *Nicholas Seckar*
1368
+
1369
+ * Added petabytes and exebytes to numeric extensions #2397 *timct@mac.com*
1370
+
1371
+ * Added Time#end_of_month to accompany Time#beginning_of_month #2514 *Jens-Christian Fischer*
1372
+
1373
+
1374
+ ## 1.2.2 (October 26th, 2005) ##
1375
+
1376
+ * Set Logger.silencer = false to disable Logger#silence. Useful for debugging fixtures.
1377
+
1378
+ * Add title case method to String to do, e.g., 'action_web_service'.titlecase # => 'Action Web Service'. *Marcel Molina Jr.*
1379
+
1380
+
1381
+ ## 1.2.1 (October 19th, 2005) ##
1382
+
1383
+ * Classify generated routing code as framework code to avoid appearing in application traces. *Nicholas Seckar*
1384
+
1385
+ * Show all framework frames in the framework trace. *Nicholas Seckar*
1386
+
1387
+
1388
+ ## 1.2.0 (October 16th, 2005) ##
1389
+
1390
+ * Update Exception extension to show the first few framework frames in an application trace. *Nicholas Seckar*
1391
+
1392
+ * Added Exception extension to provide support for clean backtraces. *Nicholas Seckar*
1393
+
1394
+ * Updated whiny nil to be more concise and useful. *Nicholas Seckar*
1395
+
1396
+ * Added Enumerable#first_match *Nicholas Seckar*
1397
+
1398
+ * Fixed that Time#change should also reset usec when also resetting minutes #2459 *ikeda@dream.big.or.jp*
1399
+
1400
+ * Fix Logger compatibility for distributions that don't keep Ruby and its standard library in sync.
1401
+
1402
+ * Replace '%e' from long and short time formats as Windows does not support it. #2344. *Tom Ward <tom@popdog.net>*
1403
+
1404
+ * Added to_s(:db) to Range, so you can get "BETWEEN '2005-12-10' AND '2005-12-12'" from Date.new(2005, 12, 10)..Date.new(2005, 12, 12) (and likewise with Times)
1405
+
1406
+ * Moved require_library_or_gem into Kernel. #1992 *Michael Schuerig <michael@schuerig.de>*
1407
+
1408
+ * Add :rfc822 as an option for Time#to_s (to get rfc822-formatted times)
1409
+
1410
+ * Chain the const_missing hook to any previously existing hook so rails can play nicely with rake
1411
+
1412
+ * Clean logger is compatible with both 1.8.2 and 1.8.3 Logger. #2263 *Michael Schuerig <michael@schuerig.de>*
1413
+
1414
+ * Added native, faster implementations of .blank? for the core types #2286 *skae*
1415
+
1416
+ * Fixed clean logger to work with Ruby 1.8.3 Logger class #2245
1417
+
1418
+ * Fixed memory leak with Active Record classes when Dependencies.mechanism = :load #1704 *Chris McGrath*
1419
+
1420
+ * Fixed Inflector.underscore for use with acronyms, so HTML becomes html instead of htm_l #2173 *k@v2studio.com*
1421
+
1422
+ * Fixed dependencies related infinite recursion bug when a controller file does not contain a controller class. Closes #1760. *rcolli2@tampabay.rr.com*
1423
+
1424
+ * Fixed inflections for status, quiz, move #2056 *deirdre@deirdre.net*
1425
+
1426
+ * Added Hash#reverse_merge, Hash#reverse_merge!, and Hash#reverse_update to ease the use of default options
1427
+
1428
+ * Added Array#to_sentence that'll turn ['one', 'two', 'three'] into "one, two, and three" #2157 *Manfred Stienstra*
1429
+
1430
+ * Added Kernel#silence_warnings to turn off warnings temporarily for the passed block
1431
+
1432
+ * Added String#starts_with? and String#ends_with? #2118 *Thijs van der Vossen*
1433
+
1434
+ * Added easy extendability to the inflector through Inflector.inflections (using the Inflector::Inflections singleton class). Examples:
1435
+
1436
+ Inflector.inflections do |inflect|
1437
+ inflect.plural /^(ox)$/i, '\1\2en'
1438
+ inflect.singular /^(ox)en/i, '\1'
1439
+
1440
+ inflect.irregular 'octopus', 'octopi'
1441
+
1442
+ inflect.uncountable "equipment"
1443
+ end
1444
+
1445
+ * Added String#at, String#from, String#to, String#first, String#last in ActiveSupport::CoreExtensions::String::Access to ease access to individual characters and substrings in a string serving basically as human names for range access.
1446
+
1447
+ * Make Time#last_month work when invoked on the 31st of a month.
1448
+
1449
+ * Add Time.days_in_month, and make Time#next_month work when invoked on the 31st of a month
1450
+
1451
+ * Fixed that Time#midnight would have a non-zero usec on some platforms #1836
1452
+
1453
+ * Fixed inflections of "index/indices" #1766 *damn_pepe@gmail.com*
1454
+
1455
+ * Added stripping of _id to String#humanize, so "employee_id" becomes "Employee" #1574 *Justin French*
1456
+
1457
+ * Factor Fixnum and Bignum extensions into Integer extensions *Nicholas Seckar*
1458
+
1459
+ * Hooked #ordinalize into Fixnum and Bignum classes. *Nicholas Seckar, danp*
1460
+
1461
+ * Added Fixnum#ordinalize to turn 1.ordinalize to "1st", 3.ordinalize to "3rd", and 10.ordinalize to "10th" and so on #1724 *paul@cnt.org*
1462
+
1463
+
1464
+ ## 1.1.1 (11 July, 2005) ##
1465
+
1466
+ * Added more efficient implementation of the development mode reset of classes #1638 *Chris McGrath*
1467
+
1468
+
1469
+ ## 1.1.0 (6 July, 2005) ##
1470
+
1471
+ * Fixed conflict with Glue gem #1606 *Rick Olson*
1472
+
1473
+ * Added new rules to the Inflector to deal with more unusual plurals mouse/louse => mice/lice, information => information, ox => oxen, virus => viri, archive => archives #1571, #1583, #1490, #1599, #1608 *foamdino@gmail.com/others*
1474
+
1475
+ * Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails application running in development mode with a ~20KB leak per request #1289 *Chris McGrath*
1476
+
1477
+ * Made 1.year == 365.25.days to account for leap years. This allows you to do User.find(:all, :conditions => ['birthday > ?', 50.years.ago]) without losing a lot of days. #1488 *tuxie@dekadance.se*
1478
+
1479
+ * Added an exception if calling id on nil to WhinyNil #584 *kevin-temp@writesoon.com*
1480
+
1481
+ * Added Fix/Bignum#multiple_of? which returns true on 14.multiple_of?(7) and false on 16.multiple_of?(7) #1464 *Thomas Fuchs*
1482
+
1483
+ * Added even? and odd? to work with Bignums in addition to Fixnums #1464 *Thomas Fuchs*
1484
+
1485
+ * Fixed Time#at_beginning_of_week returned the next Monday instead of the previous one when called on a Sunday #1403 *jean.helou@gmail.com*
1486
+
1487
+ * Increased the speed of indifferent hash access by using Hash#default. #1436 *Nicholas Seckar*
1488
+
1489
+ * Added that " " is now also blank? (using strip if available)
1490
+
1491
+ * Fixed Dependencies so all modules are able to load missing constants #1173 *Nicholas Seckar*
1492
+
1493
+ * Fixed the Inflector to underscore strings containing numbers, so Area51Controller becomes area51_controller #1176 *Nicholas Seckar*
1494
+
1495
+ * Fixed that HashWithIndifferentAccess stringified all keys including symbols, ints, objects, and arrays #1162 *Nicholas Seckar*
1496
+
1497
+ * Fixed Time#last_year to go back in time, not forward #1278 *fabien@odilat.com*
1498
+
1499
+ * Fixed the pluralization of analysis to analyses #1295 *seattle@rootimage.msu.edu*
1500
+
1501
+ * Fixed that Time.local(2005,12).months_since(1) would raise "ArgumentError: argument out of range" #1311 *jhahn@niveon.com*
1502
+
1503
+ * Added silencing to the default Logger class
1504
+
1505
+
1506
+ ## 1.0.4 (19th April, 2005) ##
1507
+
1508
+ * Fixed that in some circumstances controllers outside of modules may have hidden ones inside modules. For example, admin/content might have been hidden by /content. #1075 *Nicholas Seckar*
1509
+
1510
+ * Fixed inflection of perspectives and similar words #1045 *Thijs van der Vossen*
1511
+
1512
+ * Added Fixnum#even? and Fixnum#odd?
1513
+
1514
+ * Fixed problem with classes being required twice. Object#const_missing now uses require_dependency to load files. It used to use require_or_load which would cause models to be loaded twice, which was not good for validations and other class methods #971 *Nicholas Seckar*
1515
+
1516
+
1517
+ ## 1.0.3 (27th March, 2005) ##
1518
+
1519
+ * Fixed Inflector.pluralize to handle capitalized words #932 *Jeremy Kemper*
1520
+
1521
+ * Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example:
1522
+
1523
+ suppress(ZeroDivisionError) { 1/0 }
1524
+
1525
+ ...instead of:
1526
+
1527
+ 1/0 rescue nil # BAD, EVIL, DIRTY.
1528
+
1529
+
1530
+ ## 1.0.2 (22th March, 2005) ##
1531
+
1532
+ * Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
1533
+
1534
+ def foo
1535
+ returning values = [] do
1536
+ values << 'bar'
1537
+ values << 'baz'
1538
+ end
1539
+ end
1540
+
1541
+ foo # => ['bar', 'baz']
1542
+
1543
+
1544
+ ## 1.0.1 (7th March, 2005) ##
1545
+
1546
+ * Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 *Nicholas Seckar*
1547
+
1548
+ * Added Object#blank? -- see http://redhanded.hobix.com/inspect/objectBlank.html #783 *_why the lucky stiff*
1549
+
1550
+ * Added inflection rules for "sh" words, like "wish" and "fish" #755 *phillip@pjbsoftware.com*
1551
+
1552
+ * Fixed an exception when using Ajax based requests from Safari because Safari appends a \000 to the post body. Symbols can't have \000 in them so indifferent access would throw an exception in the constructor. Indifferent hashes now use strings internally instead. #746 *Tobias Lütke*
1553
+
1554
+ * Added String#to_time and String#to_date for wrapping ParseDate
1555
+
1556
+
1557
+ ## 1.0.0 (24th February, 2005) ##
1558
+
1559
+ * Added TimeZone as the first of a number of value objects that among others Active Record can use rich value objects using composed_of #688 *Jamis Buck*
1560
+
1561
+ * Added Date::Conversions for getting dates in different convenient string representations and other objects
1562
+
1563
+ * Added Time::Conversions for getting times in different convenient string representations and other objects
1564
+
1565
+ * Added Time::Calculations to ask for things like Time.now.tomorrow, Time.now.yesterday, Time.now.months_ago(4) #580 [DP|Flurin]. Examples:
1566
+
1567
+ "Later today" => now.in(3.hours),
1568
+ "Tomorrow morning" => now.tomorrow.change(:hour => 9),
1569
+ "Tomorrow afternoon" => now.tomorrow.change(:hour => 14),
1570
+ "In a couple of days" => now.tomorrow.tomorrow.change(:hour => 9),
1571
+ "Next monday" => now.next_week.change(:hour => 9),
1572
+ "In a month" => now.next_month.change(:hour => 9),
1573
+ "In 6 months" => now.months_since(6).change(:hour => 9),
1574
+ "In a year" => now.in(1.year).change(:hour => 9)
1575
+
1576
+ * Upgraded to breakpoint 92 which fixes:
1577
+
1578
+ * overload IRB.parse_opts(), fixes #443
1579
+ => breakpoints in tests work even when running them via rake
1580
+ * untaint handlers, might fix an issue discussed on the Rails ML
1581
+ * added verbose mode to breakpoint_client
1582
+ * less noise caused by breakpoint_client by default
1583
+ * ignored TerminateLineInput exception in signal handler
1584
+ => quiet exit on Ctrl-C
1585
+
1586
+ * Fixed Inflector for words like "news" and "series" that are the same in plural and singular #603 [echion], #615 *marcenuc*
1587
+
1588
+ * Added Hash#stringify_keys and Hash#stringify_keys!
1589
+
1590
+ * Added IndifferentAccess as a way to wrap a hash by a symbol-based store that also can be accessed by string keys
1591
+
1592
+ * Added Inflector.constantize to turn "Admin::User" into a reference for the constant Admin::User
1593
+
1594
+ * Added that Inflector.camelize and Inflector.underscore can deal with modules like turning "Admin::User" into "admin/user" and back
1595
+
1596
+ * Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR.
1597
+
1598
+ * Added availability of class inheritable attributes to the masses #477 *Jeremy Kemper*
1599
+
1600
+ class Foo
1601
+ class_inheritable_reader :read_me
1602
+ class_inheritable_writer :write_me
1603
+ class_inheritable_accessor :read_and_write_me
1604
+ class_inheritable_array :read_and_concat_me
1605
+ class_inheritable_hash :read_and_update_me
1606
+ end
1607
+
1608
+ # Bar gets a clone of (not a reference to) Foo's attributes.
1609
+ class Bar < Foo
1610
+ end
1611
+
1612
+ Bar.read_and_write_me == Foo.read_and_write_me
1613
+ Bar.read_and_write_me = 'bar'
1614
+ Bar.read_and_write_me != Foo.read_and_write_me
1615
+
1616
+ * Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 *Jeremy Kemper*
1617
+
1618
+ * Added Byte operations to Numeric, so 5.5.megabytes + 200.kilobytes #461 *Marcel Molina Jr.*
1619
+
1620
+ * Fixed that Dependencies.reload can't load the same file twice #420 *Kent Sibilev*
1621
+
1622
+ * Added Fixnum#ago/until, Fixnum#since/from_now #450 *Jeremy Kemper*
1623
+
1624
+ * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied
1625
+
1626
+ * Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours.