nullifyable 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1437) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.travis.yml +5 -0
  4. data/CODE_OF_CONDUCT.md +74 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +52 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +53 -0
  9. data/Rakefile +10 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/lib/nullifyable.rb +27 -0
  13. data/lib/nullifyable/version.rb +3 -0
  14. data/nullifyable.gemspec +31 -0
  15. data/vendor/bundle/bin/rake +27 -0
  16. data/vendor/bundle/cache/activemodel-5.2.2.gem +0 -0
  17. data/vendor/bundle/cache/activerecord-5.2.2.gem +0 -0
  18. data/vendor/bundle/cache/activesupport-5.2.2.gem +0 -0
  19. data/vendor/bundle/cache/ansi-1.5.0.gem +0 -0
  20. data/vendor/bundle/cache/arel-9.0.0.gem +0 -0
  21. data/vendor/bundle/cache/builder-3.2.3.gem +0 -0
  22. data/vendor/bundle/cache/concurrent-ruby-1.1.4.gem +0 -0
  23. data/vendor/bundle/cache/i18n-1.3.0.gem +0 -0
  24. data/vendor/bundle/cache/minitest-5.11.3.gem +0 -0
  25. data/vendor/bundle/cache/minitest-reporters-1.3.5.gem +0 -0
  26. data/vendor/bundle/cache/rake-10.5.0.gem +0 -0
  27. data/vendor/bundle/cache/ruby-progressbar-1.10.0.gem +0 -0
  28. data/vendor/bundle/cache/sqlite3-1.3.13.gem +0 -0
  29. data/vendor/bundle/cache/thread_safe-0.3.6.gem +0 -0
  30. data/vendor/bundle/cache/tzinfo-1.2.5.gem +0 -0
  31. data/vendor/bundle/extensions/x86_64-darwin-14/2.3.0-static/sqlite3-1.3.13/gem.build_complete +0 -0
  32. data/vendor/bundle/extensions/x86_64-darwin-14/2.3.0-static/sqlite3-1.3.13/gem_make.out +33 -0
  33. data/vendor/bundle/extensions/x86_64-darwin-14/2.3.0-static/sqlite3-1.3.13/mkmf.log +529 -0
  34. data/vendor/bundle/extensions/x86_64-darwin-14/2.3.0-static/sqlite3-1.3.13/sqlite3/sqlite3_native.bundle +0 -0
  35. data/vendor/bundle/gems/activemodel-5.2.2/CHANGELOG.md +84 -0
  36. data/vendor/bundle/gems/activemodel-5.2.2/MIT-LICENSE +21 -0
  37. data/vendor/bundle/gems/activemodel-5.2.2/README.rdoc +264 -0
  38. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model.rb +77 -0
  39. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute.rb +248 -0
  40. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute/user_provided_default.rb +52 -0
  41. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_assignment.rb +57 -0
  42. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_methods.rb +478 -0
  43. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_mutation_tracker.rb +124 -0
  44. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_set.rb +114 -0
  45. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_set/builder.rb +126 -0
  46. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attribute_set/yaml_encoder.rb +41 -0
  47. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/attributes.rb +111 -0
  48. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/callbacks.rb +153 -0
  49. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/conversion.rb +111 -0
  50. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/dirty.rb +343 -0
  51. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/errors.rb +517 -0
  52. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/forbidden_attributes_protection.rb +31 -0
  53. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/gem_version.rb +17 -0
  54. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/lint.rb +118 -0
  55. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/locale/en.yml +36 -0
  56. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/model.rb +99 -0
  57. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/naming.rb +318 -0
  58. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/railtie.rb +14 -0
  59. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/secure_password.rb +129 -0
  60. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/serialization.rb +192 -0
  61. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/serializers/json.rb +146 -0
  62. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/translation.rb +70 -0
  63. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type.rb +53 -0
  64. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/big_integer.rb +15 -0
  65. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/binary.rb +52 -0
  66. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/boolean.rb +38 -0
  67. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/date.rb +56 -0
  68. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/date_time.rb +50 -0
  69. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/decimal.rb +70 -0
  70. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/float.rb +36 -0
  71. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/helpers.rb +6 -0
  72. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/helpers/accepts_multiparameter_time.rb +41 -0
  73. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/helpers/mutable.rb +20 -0
  74. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/helpers/numeric.rb +37 -0
  75. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/helpers/time_value.rb +80 -0
  76. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/immutable_string.rb +32 -0
  77. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/integer.rb +70 -0
  78. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/registry.rb +70 -0
  79. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/string.rb +26 -0
  80. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/time.rb +46 -0
  81. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/type/value.rb +126 -0
  82. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations.rb +439 -0
  83. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/absence.rb +33 -0
  84. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/acceptance.rb +106 -0
  85. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/callbacks.rb +122 -0
  86. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/clusivity.rb +54 -0
  87. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/confirmation.rb +80 -0
  88. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/exclusion.rb +49 -0
  89. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/format.rb +114 -0
  90. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/helper_methods.rb +15 -0
  91. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/inclusion.rb +47 -0
  92. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/length.rb +129 -0
  93. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/numericality.rb +180 -0
  94. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/presence.rb +39 -0
  95. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/validates.rb +174 -0
  96. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validations/with.rb +147 -0
  97. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/validator.rb +183 -0
  98. data/vendor/bundle/gems/activemodel-5.2.2/lib/active_model/version.rb +10 -0
  99. data/vendor/bundle/gems/activerecord-5.2.2/CHANGELOG.md +895 -0
  100. data/vendor/bundle/gems/activerecord-5.2.2/MIT-LICENSE +20 -0
  101. data/vendor/bundle/gems/activerecord-5.2.2/README.rdoc +217 -0
  102. data/vendor/bundle/gems/activerecord-5.2.2/examples/performance.rb +185 -0
  103. data/vendor/bundle/gems/activerecord-5.2.2/examples/simple.rb +15 -0
  104. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record.rb +188 -0
  105. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/aggregations.rb +283 -0
  106. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/association_relation.rb +40 -0
  107. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations.rb +1860 -0
  108. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/alias_tracker.rb +81 -0
  109. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/association.rb +299 -0
  110. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/association_scope.rb +168 -0
  111. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/belongs_to_association.rb +130 -0
  112. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/belongs_to_polymorphic_association.rb +40 -0
  113. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/association.rb +140 -0
  114. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/belongs_to.rb +163 -0
  115. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/collection_association.rb +82 -0
  116. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb +135 -0
  117. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_many.rb +17 -0
  118. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_one.rb +30 -0
  119. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/builder/singular_association.rb +42 -0
  120. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/collection_association.rb +514 -0
  121. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/collection_proxy.rb +1157 -0
  122. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/foreign_association.rb +13 -0
  123. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/has_many_association.rb +143 -0
  124. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/has_many_through_association.rb +225 -0
  125. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/has_one_association.rb +120 -0
  126. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/has_one_through_association.rb +45 -0
  127. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/join_dependency.rb +262 -0
  128. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/join_dependency/join_association.rb +60 -0
  129. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/join_dependency/join_base.rb +23 -0
  130. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/join_dependency/join_part.rb +71 -0
  131. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/preloader.rb +193 -0
  132. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/preloader/association.rb +131 -0
  133. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/preloader/through_association.rb +107 -0
  134. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/singular_association.rb +73 -0
  135. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/associations/through_association.rb +121 -0
  136. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_assignment.rb +88 -0
  137. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_decorators.rb +90 -0
  138. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods.rb +492 -0
  139. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/before_type_cast.rb +78 -0
  140. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/dirty.rb +150 -0
  141. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/primary_key.rb +143 -0
  142. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/query.rb +42 -0
  143. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/read.rb +85 -0
  144. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/serialization.rb +90 -0
  145. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
  146. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attribute_methods/write.rb +68 -0
  147. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/attributes.rb +266 -0
  148. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/autosave_association.rb +498 -0
  149. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/base.rb +329 -0
  150. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/callbacks.rb +353 -0
  151. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/coders/json.rb +15 -0
  152. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/coders/yaml_column.rb +50 -0
  153. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/collection_cache_key.rb +53 -0
  154. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb +1064 -0
  155. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/database_limits.rb +72 -0
  156. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/database_statements.rb +532 -0
  157. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb +140 -0
  158. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/quoting.rb +200 -0
  159. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
  160. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/schema_creation.rb +146 -0
  161. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/schema_definitions.rb +685 -0
  162. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
  163. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/schema_statements.rb +1396 -0
  164. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/transaction.rb +283 -0
  165. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract_adapter.rb +626 -0
  166. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +877 -0
  167. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/column.rb +91 -0
  168. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/connection_specification.rb +287 -0
  169. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +33 -0
  170. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/column.rb +27 -0
  171. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/database_statements.rb +140 -0
  172. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
  173. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
  174. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
  175. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_definitions.rb +87 -0
  176. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_dumper.rb +80 -0
  177. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_statements.rb +148 -0
  178. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
  179. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql2_adapter.rb +129 -0
  180. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/column.rb +44 -0
  181. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
  182. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
  183. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
  184. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
  185. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
  186. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
  187. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
  188. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
  189. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
  190. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
  191. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
  192. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
  193. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
  194. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
  195. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
  196. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
  197. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
  198. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
  199. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
  200. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
  201. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
  202. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
  203. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
  204. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
  205. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
  206. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/quoting.rb +168 -0
  207. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
  208. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/schema_creation.rb +29 -0
  209. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +206 -0
  210. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
  211. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/schema_statements.rb +792 -0
  212. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
  213. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
  214. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/postgresql_adapter.rb +863 -0
  215. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/schema_cache.rb +118 -0
  216. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
  217. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
  218. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/quoting.rb +63 -0
  219. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
  220. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
  221. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
  222. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +106 -0
  223. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/sqlite3_adapter.rb +573 -0
  224. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_adapters/statement_pool.rb +61 -0
  225. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/connection_handling.rb +145 -0
  226. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/core.rb +558 -0
  227. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/counter_cache.rb +218 -0
  228. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/define_callbacks.rb +22 -0
  229. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/dynamic_matchers.rb +122 -0
  230. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/enum.rb +244 -0
  231. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/errors.rb +374 -0
  232. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/explain.rb +50 -0
  233. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/explain_registry.rb +32 -0
  234. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/explain_subscriber.rb +34 -0
  235. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/fixture_set/file.rb +82 -0
  236. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/fixtures.rb +1065 -0
  237. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/gem_version.rb +17 -0
  238. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/inheritance.rb +283 -0
  239. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/integration.rb +155 -0
  240. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/internal_metadata.rb +45 -0
  241. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/legacy_yaml_adapter.rb +48 -0
  242. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/locale/en.yml +48 -0
  243. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/locking/optimistic.rb +198 -0
  244. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/locking/pessimistic.rb +89 -0
  245. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb +137 -0
  246. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/migration.rb +1378 -0
  247. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/migration/command_recorder.rb +240 -0
  248. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/migration/compatibility.rb +217 -0
  249. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/migration/join_table.rb +17 -0
  250. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/model_schema.rb +521 -0
  251. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/nested_attributes.rb +600 -0
  252. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/no_touching.rb +58 -0
  253. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/null_relation.rb +68 -0
  254. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/persistence.rb +761 -0
  255. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/query_cache.rb +45 -0
  256. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/querying.rb +71 -0
  257. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/railtie.rb +226 -0
  258. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/railties/console_sandbox.rb +7 -0
  259. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/railties/controller_runtime.rb +56 -0
  260. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/railties/databases.rake +377 -0
  261. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/readonly_attributes.rb +24 -0
  262. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/reflection.rb +1044 -0
  263. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation.rb +629 -0
  264. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/batches.rb +287 -0
  265. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
  266. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/calculations.rb +414 -0
  267. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/delegation.rb +147 -0
  268. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/finder_methods.rb +561 -0
  269. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/from_clause.rb +26 -0
  270. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/merger.rb +190 -0
  271. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder.rb +147 -0
  272. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
  273. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
  274. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
  275. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
  276. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +56 -0
  277. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/range_handler.rb +42 -0
  278. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
  279. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/query_attribute.rb +43 -0
  280. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/query_methods.rb +1208 -0
  281. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/record_fetch_warning.rb +51 -0
  282. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/spawn_methods.rb +77 -0
  283. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/where_clause.rb +186 -0
  284. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/relation/where_clause_factory.rb +34 -0
  285. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/result.rb +149 -0
  286. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/runtime_registry.rb +24 -0
  287. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/sanitization.rb +222 -0
  288. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/schema.rb +70 -0
  289. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/schema_dumper.rb +255 -0
  290. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/schema_migration.rb +56 -0
  291. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/scoping.rb +106 -0
  292. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/scoping/default.rb +152 -0
  293. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/scoping/named.rb +213 -0
  294. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/secure_token.rb +40 -0
  295. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/serialization.rb +22 -0
  296. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/statement_cache.rb +121 -0
  297. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/store.rb +211 -0
  298. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/suppressor.rb +61 -0
  299. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/table_metadata.rb +82 -0
  300. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb +337 -0
  301. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
  302. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
  303. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
  304. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/timestamp.rb +153 -0
  305. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/touch_later.rb +64 -0
  306. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/transactions.rb +502 -0
  307. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/translation.rb +24 -0
  308. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type.rb +79 -0
  309. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/adapter_specific_registry.rb +136 -0
  310. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/date.rb +9 -0
  311. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/date_time.rb +9 -0
  312. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/decimal_without_scale.rb +15 -0
  313. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/hash_lookup_type_map.rb +25 -0
  314. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/internal/timezone.rb +17 -0
  315. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/json.rb +30 -0
  316. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/serialized.rb +71 -0
  317. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/text.rb +11 -0
  318. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/time.rb +21 -0
  319. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/type_map.rb +62 -0
  320. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type/unsigned_integer.rb +17 -0
  321. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type_caster.rb +9 -0
  322. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type_caster/connection.rb +33 -0
  323. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/type_caster/map.rb +23 -0
  324. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations.rb +93 -0
  325. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations/absence.rb +25 -0
  326. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations/associated.rb +60 -0
  327. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations/length.rb +26 -0
  328. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations/presence.rb +68 -0
  329. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/validations/uniqueness.rb +238 -0
  330. data/vendor/bundle/gems/activerecord-5.2.2/lib/active_record/version.rb +10 -0
  331. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record.rb +19 -0
  332. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
  333. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
  334. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/migration.rb +35 -0
  335. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/migration/migration_generator.rb +78 -0
  336. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
  337. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/migration/templates/migration.rb.tt +46 -0
  338. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/model/model_generator.rb +48 -0
  339. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/model/templates/model.rb.tt +13 -0
  340. data/vendor/bundle/gems/activerecord-5.2.2/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
  341. data/vendor/bundle/gems/activesupport-5.2.2/CHANGELOG.md +572 -0
  342. data/vendor/bundle/gems/activesupport-5.2.2/MIT-LICENSE +20 -0
  343. data/vendor/bundle/gems/activesupport-5.2.2/README.rdoc +39 -0
  344. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support.rb +95 -0
  345. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/all.rb +5 -0
  346. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/array_inquirer.rb +48 -0
  347. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/backtrace_cleaner.rb +105 -0
  348. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/benchmarkable.rb +51 -0
  349. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/builder.rb +8 -0
  350. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache.rb +808 -0
  351. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/file_store.rb +196 -0
  352. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/mem_cache_store.rb +207 -0
  353. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/memory_store.rb +169 -0
  354. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/null_store.rb +43 -0
  355. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/redis_cache_store.rb +461 -0
  356. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/strategy/local_cache.rb +194 -0
  357. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  358. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/callbacks.rb +845 -0
  359. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/concern.rb +144 -0
  360. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/concurrency/load_interlock_aware_monitor.rb +17 -0
  361. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/concurrency/share_lock.rb +227 -0
  362. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/configurable.rb +150 -0
  363. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext.rb +5 -0
  364. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array.rb +9 -0
  365. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/access.rb +92 -0
  366. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/conversions.rb +213 -0
  367. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/extract_options.rb +31 -0
  368. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/grouping.rb +109 -0
  369. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/inquiry.rb +19 -0
  370. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/prepend_and_append.rb +9 -0
  371. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/array/wrap.rb +48 -0
  372. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/benchmark.rb +16 -0
  373. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/big_decimal.rb +3 -0
  374. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
  375. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/class.rb +4 -0
  376. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/class/attribute.rb +146 -0
  377. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
  378. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/class/subclasses.rb +54 -0
  379. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date.rb +7 -0
  380. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date/acts_like.rb +10 -0
  381. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date/blank.rb +14 -0
  382. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date/calculations.rb +145 -0
  383. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date/conversions.rb +96 -0
  384. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date/zones.rb +8 -0
  385. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_and_time/calculations.rb +374 -0
  386. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
  387. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
  388. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time.rb +7 -0
  389. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
  390. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time/blank.rb +14 -0
  391. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time/calculations.rb +211 -0
  392. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
  393. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/date_time/conversions.rb +107 -0
  394. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/digest/uuid.rb +53 -0
  395. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/enumerable.rb +164 -0
  396. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/file.rb +3 -0
  397. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/file/atomic.rb +70 -0
  398. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash.rb +11 -0
  399. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/compact.rb +29 -0
  400. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/conversions.rb +263 -0
  401. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
  402. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/except.rb +24 -0
  403. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  404. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/keys.rb +172 -0
  405. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  406. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/slice.rb +48 -0
  407. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/hash/transform_values.rb +32 -0
  408. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/integer.rb +5 -0
  409. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/integer/inflections.rb +31 -0
  410. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/integer/multiple.rb +12 -0
  411. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/integer/time.rb +22 -0
  412. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel.rb +6 -0
  413. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/agnostics.rb +13 -0
  414. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/concern.rb +14 -0
  415. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/reporting.rb +45 -0
  416. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
  417. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/load_error.rb +9 -0
  418. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/marshal.rb +24 -0
  419. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module.rb +14 -0
  420. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/aliasing.rb +31 -0
  421. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/anonymous.rb +30 -0
  422. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attr_internal.rb +38 -0
  423. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attribute_accessors.rb +215 -0
  424. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +150 -0
  425. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/concerning.rb +134 -0
  426. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/delegation.rb +287 -0
  427. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/deprecation.rb +25 -0
  428. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/introspection.rb +62 -0
  429. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/reachable.rb +11 -0
  430. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/redefine_method.rb +49 -0
  431. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/module/remove_method.rb +17 -0
  432. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/name_error.rb +38 -0
  433. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/numeric.rb +6 -0
  434. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/numeric/bytes.rb +66 -0
  435. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/numeric/conversions.rb +140 -0
  436. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/numeric/inquiry.rb +28 -0
  437. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/numeric/time.rb +66 -0
  438. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object.rb +16 -0
  439. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/acts_like.rb +21 -0
  440. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/blank.rb +156 -0
  441. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/conversions.rb +6 -0
  442. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/deep_dup.rb +55 -0
  443. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/duplicable.rb +156 -0
  444. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/inclusion.rb +29 -0
  445. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/instance_variables.rb +30 -0
  446. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/json.rb +227 -0
  447. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/to_param.rb +3 -0
  448. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/to_query.rb +89 -0
  449. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/try.rb +148 -0
  450. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/object/with_options.rb +82 -0
  451. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range.rb +7 -0
  452. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range/conversions.rb +39 -0
  453. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range/each.rb +25 -0
  454. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range/include_range.rb +25 -0
  455. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range/include_time_with_zone.rb +23 -0
  456. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/range/overlaps.rb +10 -0
  457. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/regexp.rb +11 -0
  458. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/securerandom.rb +25 -0
  459. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string.rb +15 -0
  460. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/access.rb +106 -0
  461. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/behavior.rb +8 -0
  462. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/conversions.rb +59 -0
  463. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/exclude.rb +13 -0
  464. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/filters.rb +104 -0
  465. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/indent.rb +45 -0
  466. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/inflections.rb +254 -0
  467. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/inquiry.rb +15 -0
  468. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/multibyte.rb +57 -0
  469. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/output_safety.rb +258 -0
  470. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
  471. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/strip.rb +25 -0
  472. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/string/zones.rb +16 -0
  473. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time.rb +7 -0
  474. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time/acts_like.rb +10 -0
  475. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time/calculations.rb +315 -0
  476. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time/compatibility.rb +16 -0
  477. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time/conversions.rb +72 -0
  478. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/time/zones.rb +113 -0
  479. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/core_ext/uri.rb +24 -0
  480. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/current_attributes.rb +195 -0
  481. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/dependencies.rb +753 -0
  482. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/dependencies/autoload.rb +79 -0
  483. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/dependencies/interlock.rb +57 -0
  484. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation.rb +46 -0
  485. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/behaviors.rb +109 -0
  486. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/constant_accessor.rb +52 -0
  487. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/instance_delegator.rb +39 -0
  488. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/method_wrappers.rb +80 -0
  489. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/proxy_wrappers.rb +154 -0
  490. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/deprecation/reporting.rb +114 -0
  491. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb +62 -0
  492. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/digest.rb +20 -0
  493. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/duration.rb +432 -0
  494. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/duration/iso8601_parser.rb +125 -0
  495. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/duration/iso8601_serializer.rb +55 -0
  496. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/encrypted_configuration.rb +49 -0
  497. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/encrypted_file.rb +99 -0
  498. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/evented_file_update_checker.rb +205 -0
  499. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/execution_wrapper.rb +128 -0
  500. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/executor.rb +8 -0
  501. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/file_update_checker.rb +163 -0
  502. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/gem_version.rb +17 -0
  503. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/gzip.rb +38 -0
  504. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/hash_with_indifferent_access.rb +382 -0
  505. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/i18n.rb +15 -0
  506. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/i18n_railtie.rb +118 -0
  507. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/inflections.rb +72 -0
  508. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/inflector.rb +9 -0
  509. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/inflector/inflections.rb +260 -0
  510. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/inflector/methods.rb +408 -0
  511. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/inflector/transliterate.rb +118 -0
  512. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/json.rb +4 -0
  513. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/json/decoding.rb +76 -0
  514. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/json/encoding.rb +130 -0
  515. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/key_generator.rb +73 -0
  516. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/lazy_load_hooks.rb +78 -0
  517. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/locale/en.yml +135 -0
  518. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/log_subscriber.rb +112 -0
  519. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/log_subscriber/test_helper.rb +106 -0
  520. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/logger.rb +108 -0
  521. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/logger_silence.rb +29 -0
  522. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/logger_thread_safe_level.rb +33 -0
  523. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/message_encryptor.rb +229 -0
  524. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/message_verifier.rb +205 -0
  525. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/messages/metadata.rb +71 -0
  526. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/messages/rotation_configuration.rb +22 -0
  527. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/messages/rotator.rb +56 -0
  528. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/multibyte.rb +23 -0
  529. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/multibyte/chars.rb +235 -0
  530. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/multibyte/unicode.rb +394 -0
  531. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/notifications.rb +216 -0
  532. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/notifications/fanout.rb +159 -0
  533. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/notifications/instrumenter.rb +93 -0
  534. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper.rb +371 -0
  535. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_converter.rb +184 -0
  536. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  537. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_delimited_converter.rb +29 -0
  538. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
  539. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_human_size_converter.rb +59 -0
  540. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_percentage_converter.rb +14 -0
  541. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
  542. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/number_to_rounded_converter.rb +54 -0
  543. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/number_helper/rounding_helper.rb +66 -0
  544. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/option_merger.rb +27 -0
  545. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/ordered_hash.rb +50 -0
  546. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/ordered_options.rb +85 -0
  547. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/per_thread_registry.rb +60 -0
  548. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/proxy_object.rb +15 -0
  549. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/rails.rb +35 -0
  550. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/railtie.rb +80 -0
  551. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/reloader.rb +131 -0
  552. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/rescuable.rb +174 -0
  553. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/security_utils.rb +31 -0
  554. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/string_inquirer.rb +34 -0
  555. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/subscriber.rb +130 -0
  556. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/tagged_logging.rb +79 -0
  557. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/test_case.rb +72 -0
  558. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/assertions.rb +214 -0
  559. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/autorun.rb +7 -0
  560. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/constant_lookup.rb +51 -0
  561. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/declarative.rb +28 -0
  562. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/deprecation.rb +39 -0
  563. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/file_fixtures.rb +36 -0
  564. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/isolation.rb +110 -0
  565. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/method_call_assertions.rb +43 -0
  566. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/setup_and_teardown.rb +55 -0
  567. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/stream.rb +44 -0
  568. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/tagged_logging.rb +27 -0
  569. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/testing/time_helpers.rb +200 -0
  570. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/time.rb +20 -0
  571. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/time_with_zone.rb +551 -0
  572. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb +565 -0
  573. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/values/unicode_tables.dat +0 -0
  574. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/version.rb +10 -0
  575. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini.rb +209 -0
  576. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/jdom.rb +183 -0
  577. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/libxml.rb +80 -0
  578. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/libxmlsax.rb +83 -0
  579. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/nokogiri.rb +83 -0
  580. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/nokogirisax.rb +86 -0
  581. data/vendor/bundle/gems/activesupport-5.2.2/lib/active_support/xml_mini/rexml.rb +130 -0
  582. data/vendor/bundle/gems/ansi-1.5.0/.index +77 -0
  583. data/vendor/bundle/gems/ansi-1.5.0/.yardopts +8 -0
  584. data/vendor/bundle/gems/ansi-1.5.0/DEMO.md +451 -0
  585. data/vendor/bundle/gems/ansi-1.5.0/HISTORY.md +217 -0
  586. data/vendor/bundle/gems/ansi-1.5.0/LICENSE.txt +23 -0
  587. data/vendor/bundle/gems/ansi-1.5.0/NOTICE.md +170 -0
  588. data/vendor/bundle/gems/ansi-1.5.0/README.md +91 -0
  589. data/vendor/bundle/gems/ansi-1.5.0/demo/01_ansicode.md +65 -0
  590. data/vendor/bundle/gems/ansi-1.5.0/demo/02_core.md +11 -0
  591. data/vendor/bundle/gems/ansi-1.5.0/demo/03_logger.md +30 -0
  592. data/vendor/bundle/gems/ansi-1.5.0/demo/04_progressbar.md +62 -0
  593. data/vendor/bundle/gems/ansi-1.5.0/demo/05_mixin.md +37 -0
  594. data/vendor/bundle/gems/ansi-1.5.0/demo/06_string.md +56 -0
  595. data/vendor/bundle/gems/ansi-1.5.0/demo/07_columns.md +89 -0
  596. data/vendor/bundle/gems/ansi-1.5.0/demo/08_table.md +28 -0
  597. data/vendor/bundle/gems/ansi-1.5.0/demo/09_diff.md +47 -0
  598. data/vendor/bundle/gems/ansi-1.5.0/demo/10_bbcode.md +24 -0
  599. data/vendor/bundle/gems/ansi-1.5.0/demo/11_terminal.md +8 -0
  600. data/vendor/bundle/gems/ansi-1.5.0/demo/applique/ae.rb +1 -0
  601. data/vendor/bundle/gems/ansi-1.5.0/demo/applique/output.rb +5 -0
  602. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi.rb +22 -0
  603. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi.yml +77 -0
  604. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/bbcode.rb +334 -0
  605. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/chain.rb +50 -0
  606. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/chart.rb +100 -0
  607. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/code.rb +349 -0
  608. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/columns.rb +197 -0
  609. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/constants.rb +25 -0
  610. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/core.rb +30 -0
  611. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/diff.rb +215 -0
  612. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/hexdump.rb +122 -0
  613. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/logger.rb +211 -0
  614. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/mixin.rb +121 -0
  615. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/progressbar.rb +292 -0
  616. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/string.rb +254 -0
  617. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/table.rb +179 -0
  618. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/terminal.rb +44 -0
  619. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/terminal/curses.rb +26 -0
  620. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/terminal/stty.rb +62 -0
  621. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/terminal/termios.rb +68 -0
  622. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/terminal/win32.rb +107 -0
  623. data/vendor/bundle/gems/ansi-1.5.0/lib/ansi/version.rb +15 -0
  624. data/vendor/bundle/gems/ansi-1.5.0/test/case_ansicode.rb +43 -0
  625. data/vendor/bundle/gems/ansi-1.5.0/test/case_bbcode.rb +35 -0
  626. data/vendor/bundle/gems/ansi-1.5.0/test/case_mixin.rb +35 -0
  627. data/vendor/bundle/gems/ansi-1.5.0/test/case_progressbar.rb +21 -0
  628. data/vendor/bundle/gems/ansi-1.5.0/test/test_helper.rb +3 -0
  629. data/vendor/bundle/gems/arel-9.0.0/History.txt +332 -0
  630. data/vendor/bundle/gems/arel-9.0.0/MIT-LICENSE.txt +21 -0
  631. data/vendor/bundle/gems/arel-9.0.0/README.md +295 -0
  632. data/vendor/bundle/gems/arel-9.0.0/lib/arel.rb +38 -0
  633. data/vendor/bundle/gems/arel-9.0.0/lib/arel/alias_predication.rb +8 -0
  634. data/vendor/bundle/gems/arel-9.0.0/lib/arel/attributes.rb +21 -0
  635. data/vendor/bundle/gems/arel-9.0.0/lib/arel/attributes/attribute.rb +36 -0
  636. data/vendor/bundle/gems/arel-9.0.0/lib/arel/collectors/bind.rb +24 -0
  637. data/vendor/bundle/gems/arel-9.0.0/lib/arel/collectors/composite.rb +32 -0
  638. data/vendor/bundle/gems/arel-9.0.0/lib/arel/collectors/plain_string.rb +19 -0
  639. data/vendor/bundle/gems/arel-9.0.0/lib/arel/collectors/sql_string.rb +24 -0
  640. data/vendor/bundle/gems/arel-9.0.0/lib/arel/collectors/substitute_binds.rb +28 -0
  641. data/vendor/bundle/gems/arel-9.0.0/lib/arel/compatibility/wheres.rb +34 -0
  642. data/vendor/bundle/gems/arel-9.0.0/lib/arel/crud.rb +42 -0
  643. data/vendor/bundle/gems/arel-9.0.0/lib/arel/delete_manager.rb +24 -0
  644. data/vendor/bundle/gems/arel-9.0.0/lib/arel/errors.rb +8 -0
  645. data/vendor/bundle/gems/arel-9.0.0/lib/arel/expressions.rb +29 -0
  646. data/vendor/bundle/gems/arel-9.0.0/lib/arel/factory_methods.rb +44 -0
  647. data/vendor/bundle/gems/arel-9.0.0/lib/arel/insert_manager.rb +48 -0
  648. data/vendor/bundle/gems/arel-9.0.0/lib/arel/math.rb +44 -0
  649. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes.rb +65 -0
  650. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/and.rb +31 -0
  651. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/ascending.rb +24 -0
  652. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/binary.rb +51 -0
  653. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/bind_param.rb +27 -0
  654. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/case.rb +58 -0
  655. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/casted.rb +45 -0
  656. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/count.rb +13 -0
  657. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/delete_statement.rb +22 -0
  658. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/descending.rb +24 -0
  659. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/equality.rb +10 -0
  660. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/extract.rb +26 -0
  661. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/false.rb +15 -0
  662. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/full_outer_join.rb +7 -0
  663. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/function.rb +46 -0
  664. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/grouping.rb +8 -0
  665. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/in.rb +7 -0
  666. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/infix_operation.rb +80 -0
  667. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/inner_join.rb +7 -0
  668. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/insert_statement.rb +36 -0
  669. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/join_source.rb +19 -0
  670. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/matches.rb +17 -0
  671. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/named_function.rb +22 -0
  672. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/node.rb +61 -0
  673. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/outer_join.rb +7 -0
  674. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/over.rb +16 -0
  675. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/regexp.rb +15 -0
  676. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/right_outer_join.rb +7 -0
  677. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/select_core.rb +64 -0
  678. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/select_statement.rb +40 -0
  679. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/sql_literal.rb +15 -0
  680. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/string_join.rb +10 -0
  681. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/table_alias.rb +26 -0
  682. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/terminal.rb +15 -0
  683. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/true.rb +15 -0
  684. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/unary.rb +43 -0
  685. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/unary_operation.rb +26 -0
  686. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/unqualified_column.rb +21 -0
  687. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/update_statement.rb +39 -0
  688. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/values.rb +15 -0
  689. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/values_list.rb +23 -0
  690. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/window.rb +125 -0
  691. data/vendor/bundle/gems/arel-9.0.0/lib/arel/nodes/with.rb +11 -0
  692. data/vendor/bundle/gems/arel-9.0.0/lib/arel/order_predications.rb +14 -0
  693. data/vendor/bundle/gems/arel-9.0.0/lib/arel/predications.rb +240 -0
  694. data/vendor/bundle/gems/arel-9.0.0/lib/arel/select_manager.rb +269 -0
  695. data/vendor/bundle/gems/arel-9.0.0/lib/arel/table.rb +110 -0
  696. data/vendor/bundle/gems/arel-9.0.0/lib/arel/tree_manager.rb +39 -0
  697. data/vendor/bundle/gems/arel-9.0.0/lib/arel/update_manager.rb +58 -0
  698. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors.rb +19 -0
  699. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/depth_first.rb +198 -0
  700. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/dot.rb +291 -0
  701. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/ibm_db.rb +15 -0
  702. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/informix.rb +55 -0
  703. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/mssql.rb +124 -0
  704. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/mysql.rb +86 -0
  705. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/oracle.rb +153 -0
  706. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/oracle12.rb +60 -0
  707. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/postgresql.rb +85 -0
  708. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/reduce.rb +27 -0
  709. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/sqlite.rb +27 -0
  710. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/to_sql.rb +850 -0
  711. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/visitor.rb +43 -0
  712. data/vendor/bundle/gems/arel-9.0.0/lib/arel/visitors/where_sql.rb +22 -0
  713. data/vendor/bundle/gems/arel-9.0.0/lib/arel/window_predications.rb +10 -0
  714. data/vendor/bundle/gems/builder-3.2.3/CHANGES +107 -0
  715. data/vendor/bundle/gems/builder-3.2.3/MIT-LICENSE +20 -0
  716. data/vendor/bundle/gems/builder-3.2.3/README.md +258 -0
  717. data/vendor/bundle/gems/builder-3.2.3/Rakefile +195 -0
  718. data/vendor/bundle/gems/builder-3.2.3/doc/jamis.rb +591 -0
  719. data/vendor/bundle/gems/builder-3.2.3/doc/releases/builder-1.2.4.rdoc +31 -0
  720. data/vendor/bundle/gems/builder-3.2.3/doc/releases/builder-2.0.0.rdoc +46 -0
  721. data/vendor/bundle/gems/builder-3.2.3/doc/releases/builder-2.1.1.rdoc +58 -0
  722. data/vendor/bundle/gems/builder-3.2.3/lib/blankslate.rb +137 -0
  723. data/vendor/bundle/gems/builder-3.2.3/lib/builder.rb +13 -0
  724. data/vendor/bundle/gems/builder-3.2.3/lib/builder/blankslate.rb +23 -0
  725. data/vendor/bundle/gems/builder-3.2.3/lib/builder/version.rb +8 -0
  726. data/vendor/bundle/gems/builder-3.2.3/lib/builder/xchar.rb +197 -0
  727. data/vendor/bundle/gems/builder-3.2.3/lib/builder/xmlbase.rb +199 -0
  728. data/vendor/bundle/gems/builder-3.2.3/lib/builder/xmlevents.rb +63 -0
  729. data/vendor/bundle/gems/builder-3.2.3/lib/builder/xmlmarkup.rb +339 -0
  730. data/vendor/bundle/gems/builder-3.2.3/rakelib/publish.rake +20 -0
  731. data/vendor/bundle/gems/builder-3.2.3/rakelib/tags.rake +62 -0
  732. data/vendor/bundle/gems/builder-3.2.3/rakelib/testing.rake +7 -0
  733. data/vendor/bundle/gems/builder-3.2.3/test/helper.rb +12 -0
  734. data/vendor/bundle/gems/builder-3.2.3/test/performance.rb +41 -0
  735. data/vendor/bundle/gems/builder-3.2.3/test/preload.rb +39 -0
  736. data/vendor/bundle/gems/builder-3.2.3/test/test_blankslate.rb +213 -0
  737. data/vendor/bundle/gems/builder-3.2.3/test/test_eventbuilder.rb +150 -0
  738. data/vendor/bundle/gems/builder-3.2.3/test/test_markupbuilder.rb +611 -0
  739. data/vendor/bundle/gems/builder-3.2.3/test/test_method_caching.rb +62 -0
  740. data/vendor/bundle/gems/builder-3.2.3/test/test_namecollision.rb +39 -0
  741. data/vendor/bundle/gems/builder-3.2.3/test/test_xchar.rb +78 -0
  742. data/vendor/bundle/gems/concurrent-ruby-1.1.4/CHANGELOG.md +465 -0
  743. data/vendor/bundle/gems/concurrent-ruby-1.1.4/Gemfile +39 -0
  744. data/vendor/bundle/gems/concurrent-ruby-1.1.4/LICENSE.md +23 -0
  745. data/vendor/bundle/gems/concurrent-ruby-1.1.4/README.md +349 -0
  746. data/vendor/bundle/gems/concurrent-ruby-1.1.4/Rakefile +346 -0
  747. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
  748. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
  749. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
  750. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
  751. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
  752. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
  753. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +306 -0
  754. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
  755. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
  756. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
  757. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
  758. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  759. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
  760. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
  761. data/vendor/bundle/gems/concurrent-ruby-1.1.4/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
  762. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent-ruby.rb +1 -0
  763. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent.rb +134 -0
  764. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/agent.rb +587 -0
  765. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/array.rb +66 -0
  766. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/async.rb +445 -0
  767. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atom.rb +222 -0
  768. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
  769. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_boolean.rb +126 -0
  770. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_fixnum.rb +143 -0
  771. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_markable_reference.rb +164 -0
  772. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_reference.rb +204 -0
  773. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/count_down_latch.rb +100 -0
  774. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
  775. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/event.rb +109 -0
  776. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/java_count_down_latch.rb +42 -0
  777. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
  778. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
  779. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
  780. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_count_down_latch.rb +44 -0
  781. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
  782. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/read_write_lock.rb +254 -0
  783. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
  784. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
  785. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/semaphore.rb +145 -0
  786. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/thread_local_var.rb +104 -0
  787. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic_reference/mutex_atomic.rb +56 -0
  788. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  789. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/atomics.rb +10 -0
  790. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  791. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  792. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  793. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/lock_free_stack.rb +158 -0
  794. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
  795. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
  796. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
  797. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
  798. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  799. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
  800. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/deprecation.rb +34 -0
  801. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/dereferenceable.rb +73 -0
  802. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/logging.rb +32 -0
  803. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/obligation.rb +220 -0
  804. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/observable.rb +110 -0
  805. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/concurrent_ruby.jar +0 -0
  806. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb +184 -0
  807. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/constants.rb +8 -0
  808. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/dataflow.rb +81 -0
  809. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/delay.rb +199 -0
  810. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/errors.rb +69 -0
  811. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/exchanger.rb +352 -0
  812. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/abstract_executor_service.rb +134 -0
  813. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/cached_thread_pool.rb +62 -0
  814. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/executor_service.rb +185 -0
  815. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
  816. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/immediate_executor.rb +66 -0
  817. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
  818. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_executor_service.rb +91 -0
  819. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
  820. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/java_thread_pool_executor.rb +123 -0
  821. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_executor_service.rb +78 -0
  822. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
  823. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
  824. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/safe_task_executor.rb +35 -0
  825. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serial_executor_service.rb +34 -0
  826. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serialized_execution.rb +107 -0
  827. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
  828. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/simple_executor_service.rb +100 -0
  829. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/single_thread_executor.rb +56 -0
  830. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/thread_pool_executor.rb +87 -0
  831. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/timer_set.rb +175 -0
  832. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/executors.rb +20 -0
  833. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/future.rb +141 -0
  834. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/hash.rb +59 -0
  835. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/immutable_struct.rb +93 -0
  836. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/ivar.rb +207 -0
  837. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/map.rb +337 -0
  838. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/maybe.rb +229 -0
  839. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/mutable_struct.rb +229 -0
  840. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/mvar.rb +242 -0
  841. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/options.rb +42 -0
  842. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/promise.rb +579 -0
  843. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/promises.rb +1936 -0
  844. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/re_include.rb +58 -0
  845. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/scheduled_task.rb +318 -0
  846. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/set.rb +66 -0
  847. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/settable_struct.rb +129 -0
  848. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization.rb +30 -0
  849. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
  850. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_object.rb +24 -0
  851. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_struct.rb +159 -0
  852. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/condition.rb +58 -0
  853. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
  854. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/jruby_object.rb +44 -0
  855. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/lock.rb +34 -0
  856. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/lockable_object.rb +74 -0
  857. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/mri_object.rb +43 -0
  858. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/mutex_lockable_object.rb +76 -0
  859. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb +157 -0
  860. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
  861. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/rbx_object.rb +48 -0
  862. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/truffleruby_object.rb +46 -0
  863. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/volatile.rb +36 -0
  864. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
  865. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util.rb +16 -0
  866. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/adder.rb +74 -0
  867. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
  868. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/data_structures.rb +63 -0
  869. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  870. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/striped64.rb +246 -0
  871. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/volatile.rb +75 -0
  872. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  873. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/timer_task.rb +334 -0
  874. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/tuple.rb +86 -0
  875. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/tvar.rb +258 -0
  876. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/at_exit.rb +97 -0
  877. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/engine.rb +56 -0
  878. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/monotonic_time.rb +58 -0
  879. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/native_extension_loader.rb +79 -0
  880. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/native_integer.rb +53 -0
  881. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/utility/processor_counter.rb +158 -0
  882. data/vendor/bundle/gems/concurrent-ruby-1.1.4/lib/concurrent/version.rb +4 -0
  883. data/vendor/bundle/gems/i18n-1.3.0/MIT-LICENSE +20 -0
  884. data/vendor/bundle/gems/i18n-1.3.0/README.md +125 -0
  885. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n.rb +383 -0
  886. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend.rb +21 -0
  887. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/base.rb +269 -0
  888. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/cache.rb +116 -0
  889. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/cache_file.rb +36 -0
  890. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/cascade.rb +56 -0
  891. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/chain.rb +123 -0
  892. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/fallbacks.rb +84 -0
  893. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/flatten.rb +115 -0
  894. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/gettext.rb +85 -0
  895. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/interpolation_compiler.rb +123 -0
  896. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/key_value.rb +206 -0
  897. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/memoize.rb +48 -0
  898. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/metadata.rb +71 -0
  899. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/pluralization.rb +55 -0
  900. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/simple.rb +106 -0
  901. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/backend/transliterator.rb +108 -0
  902. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/config.rb +165 -0
  903. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/core_ext/hash.rb +37 -0
  904. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/core_ext/string/interpolate.rb +9 -0
  905. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/exceptions.rb +97 -0
  906. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/gettext.rb +28 -0
  907. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/gettext/helpers.rb +75 -0
  908. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/gettext/po_parser.rb +329 -0
  909. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/interpolate/ruby.rb +39 -0
  910. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale.rb +8 -0
  911. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale/fallbacks.rb +96 -0
  912. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale/tag.rb +28 -0
  913. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale/tag/parents.rb +22 -0
  914. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
  915. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/locale/tag/simple.rb +39 -0
  916. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/middleware.rb +17 -0
  917. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests.rb +14 -0
  918. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/basics.rb +60 -0
  919. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/defaults.rb +52 -0
  920. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/interpolation.rb +159 -0
  921. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/link.rb +56 -0
  922. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/localization.rb +19 -0
  923. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/localization/date.rb +95 -0
  924. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/localization/date_time.rb +82 -0
  925. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/localization/procs.rb +116 -0
  926. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/localization/time.rb +81 -0
  927. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/lookup.rb +81 -0
  928. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/pluralization.rb +35 -0
  929. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/tests/procs.rb +55 -0
  930. data/vendor/bundle/gems/i18n-1.3.0/lib/i18n/version.rb +5 -0
  931. data/vendor/bundle/gems/minitest-5.11.3/.autotest +34 -0
  932. data/vendor/bundle/gems/minitest-5.11.3/History.rdoc +1310 -0
  933. data/vendor/bundle/gems/minitest-5.11.3/Manifest.txt +26 -0
  934. data/vendor/bundle/gems/minitest-5.11.3/README.rdoc +746 -0
  935. data/vendor/bundle/gems/minitest-5.11.3/Rakefile +86 -0
  936. data/vendor/bundle/gems/minitest-5.11.3/design_rationale.rb +52 -0
  937. data/vendor/bundle/gems/minitest-5.11.3/lib/hoe/minitest.rb +32 -0
  938. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest.rb +987 -0
  939. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/assertions.rb +693 -0
  940. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/autorun.rb +13 -0
  941. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/benchmark.rb +455 -0
  942. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/expectations.rb +284 -0
  943. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/hell.rb +11 -0
  944. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/mock.rb +240 -0
  945. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/parallel.rb +70 -0
  946. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/pride.rb +4 -0
  947. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/pride_plugin.rb +142 -0
  948. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/spec.rb +331 -0
  949. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/test.rb +220 -0
  950. data/vendor/bundle/gems/minitest-5.11.3/lib/minitest/unit.rb +45 -0
  951. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/metametameta.rb +102 -0
  952. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/test_minitest_benchmark.rb +137 -0
  953. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/test_minitest_mock.rb +874 -0
  954. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/test_minitest_reporter.rb +299 -0
  955. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb +987 -0
  956. data/vendor/bundle/gems/minitest-5.11.3/test/minitest/test_minitest_test.rb +2142 -0
  957. data/vendor/bundle/gems/minitest-reporters-1.3.5/.gitignore +27 -0
  958. data/vendor/bundle/gems/minitest-reporters-1.3.5/.rubocop.yml +77 -0
  959. data/vendor/bundle/gems/minitest-reporters-1.3.5/.ruby-gemset +1 -0
  960. data/vendor/bundle/gems/minitest-reporters-1.3.5/.travis.yml +13 -0
  961. data/vendor/bundle/gems/minitest-reporters-1.3.5/.yardopts +6 -0
  962. data/vendor/bundle/gems/minitest-reporters-1.3.5/CHANGELOG.md +88 -0
  963. data/vendor/bundle/gems/minitest-reporters-1.3.5/Gemfile +2 -0
  964. data/vendor/bundle/gems/minitest-reporters-1.3.5/LICENSE +20 -0
  965. data/vendor/bundle/gems/minitest-reporters-1.3.5/README.md +135 -0
  966. data/vendor/bundle/gems/minitest-reporters-1.3.5/Rakefile +70 -0
  967. data/vendor/bundle/gems/minitest-reporters-1.3.5/appveyor.yml +22 -0
  968. data/vendor/bundle/gems/minitest-reporters-1.3.5/assets/default-reporter.png +0 -0
  969. data/vendor/bundle/gems/minitest-reporters-1.3.5/assets/mean_time_reporter.png +0 -0
  970. data/vendor/bundle/gems/minitest-reporters-1.3.5/assets/progress-reporter.png +0 -0
  971. data/vendor/bundle/gems/minitest-reporters-1.3.5/assets/spec-reporter.png +0 -0
  972. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/extensible_backtrace_filter.rb +67 -0
  973. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/minitest_reporter_plugin.rb +76 -0
  974. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/old_activesupport_fix.rb +24 -0
  975. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/relative_position.rb +26 -0
  976. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters.rb +91 -0
  977. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/ansi.rb +30 -0
  978. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/base_reporter.rb +134 -0
  979. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/default_reporter.rb +228 -0
  980. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/html_reporter.rb +224 -0
  981. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/junit_reporter.rb +164 -0
  982. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/mean_time_reporter.rb +388 -0
  983. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/progress_reporter.rb +96 -0
  984. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/ruby_mate_reporter.rb +54 -0
  985. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/rubymine_reporter.rb +116 -0
  986. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/spec_reporter.rb +61 -0
  987. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/version.rb +5 -0
  988. data/vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/templates/index.html.erb +83 -0
  989. data/vendor/bundle/gems/minitest-reporters-1.3.5/minitest-reporters.gemspec +32 -0
  990. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/junit_filename_bug_example_test.rb +41 -0
  991. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/mean_time_test.rb +36 -0
  992. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/progress_detailed_skip_test.rb +8 -0
  993. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/progress_test.rb +8 -0
  994. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/sample_test.rb +15 -0
  995. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/fixtures/spec_test.rb +18 -0
  996. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/gallery/bad_test.rb +25 -0
  997. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/gallery/good_test.rb +14 -0
  998. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/integration/reporters/junit_reporter_test.rb +12 -0
  999. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/integration/reporters/mean_time_reporter_test.rb +7 -0
  1000. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/integration/reporters/progress_reporter_test.rb +40 -0
  1001. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/test_helper.rb +22 -0
  1002. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/extensible_backtrace_filter_test.rb +42 -0
  1003. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/junit_reporter_test.rb +23 -0
  1004. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/mean_time_reporter_unit_test.rb +149 -0
  1005. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/minitest_reporter_plugin_test.rb +14 -0
  1006. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/reporters_test.rb +65 -0
  1007. data/vendor/bundle/gems/minitest-reporters-1.3.5/test/unit/minitest/spec_reporter_test.rb +62 -0
  1008. data/vendor/bundle/gems/rake-10.5.0/.autotest +7 -0
  1009. data/vendor/bundle/gems/rake-10.5.0/.rubocop.yml +27 -0
  1010. data/vendor/bundle/gems/rake-10.5.0/.togglerc +7 -0
  1011. data/vendor/bundle/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
  1012. data/vendor/bundle/gems/rake-10.5.0/History.rdoc +659 -0
  1013. data/vendor/bundle/gems/rake-10.5.0/MIT-LICENSE +21 -0
  1014. data/vendor/bundle/gems/rake-10.5.0/Manifest.txt +166 -0
  1015. data/vendor/bundle/gems/rake-10.5.0/README.rdoc +139 -0
  1016. data/vendor/bundle/gems/rake-10.5.0/Rakefile +81 -0
  1017. data/vendor/bundle/gems/rake-10.5.0/bin/rake +33 -0
  1018. data/vendor/bundle/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
  1019. data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
  1020. data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
  1021. data/vendor/bundle/gems/rake-10.5.0/doc/example/a.c +6 -0
  1022. data/vendor/bundle/gems/rake-10.5.0/doc/example/b.c +6 -0
  1023. data/vendor/bundle/gems/rake-10.5.0/doc/example/main.c +11 -0
  1024. data/vendor/bundle/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
  1025. data/vendor/bundle/gems/rake-10.5.0/doc/jamis.rb +591 -0
  1026. data/vendor/bundle/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
  1027. data/vendor/bundle/gems/rake-10.5.0/doc/rake.1 +141 -0
  1028. data/vendor/bundle/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
  1029. data/vendor/bundle/gems/rake-10.5.0/doc/rational.rdoc +151 -0
  1030. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
  1031. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
  1032. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
  1033. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
  1034. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
  1035. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
  1036. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
  1037. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
  1038. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
  1039. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
  1040. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
  1041. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
  1042. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
  1043. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
  1044. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
  1045. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
  1046. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
  1047. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
  1048. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
  1049. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  1050. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
  1051. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
  1052. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
  1053. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
  1054. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
  1055. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
  1056. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
  1057. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
  1058. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
  1059. data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
  1060. data/vendor/bundle/gems/rake-10.5.0/lib/rake.rb +79 -0
  1061. data/vendor/bundle/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
  1062. data/vendor/bundle/gems/rake-10.5.0/lib/rake/application.rb +790 -0
  1063. data/vendor/bundle/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
  1064. data/vendor/bundle/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
  1065. data/vendor/bundle/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
  1066. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/.document +1 -0
  1067. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
  1068. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
  1069. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
  1070. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  1071. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
  1072. data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
  1073. data/vendor/bundle/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
  1074. data/vendor/bundle/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
  1075. data/vendor/bundle/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
  1076. data/vendor/bundle/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
  1077. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
  1078. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
  1079. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
  1080. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
  1081. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
  1082. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
  1083. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
  1084. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
  1085. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
  1086. data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
  1087. data/vendor/bundle/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
  1088. data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
  1089. data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
  1090. data/vendor/bundle/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
  1091. data/vendor/bundle/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
  1092. data/vendor/bundle/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
  1093. data/vendor/bundle/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
  1094. data/vendor/bundle/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
  1095. data/vendor/bundle/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
  1096. data/vendor/bundle/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
  1097. data/vendor/bundle/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
  1098. data/vendor/bundle/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
  1099. data/vendor/bundle/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
  1100. data/vendor/bundle/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
  1101. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
  1102. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
  1103. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
  1104. data/vendor/bundle/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
  1105. data/vendor/bundle/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1106. data/vendor/bundle/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
  1107. data/vendor/bundle/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
  1108. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task.rb +383 -0
  1109. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
  1110. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
  1111. data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
  1112. data/vendor/bundle/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
  1113. data/vendor/bundle/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
  1114. data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
  1115. data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
  1116. data/vendor/bundle/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
  1117. data/vendor/bundle/gems/rake-10.5.0/lib/rake/version.rb +7 -0
  1118. data/vendor/bundle/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
  1119. data/vendor/bundle/gems/rake-10.5.0/rakelib/publish.rake +20 -0
  1120. data/vendor/bundle/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
  1121. data/vendor/bundle/gems/rake-10.5.0/test/file_creation.rb +34 -0
  1122. data/vendor/bundle/gems/rake-10.5.0/test/helper.rb +129 -0
  1123. data/vendor/bundle/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
  1124. data/vendor/bundle/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
  1125. data/vendor/bundle/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
  1126. data/vendor/bundle/gems/rake-10.5.0/test/test_rake.rb +40 -0
  1127. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
  1128. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
  1129. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
  1130. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
  1131. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
  1132. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
  1133. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
  1134. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
  1135. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
  1136. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
  1137. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
  1138. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
  1139. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
  1140. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
  1141. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
  1142. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
  1143. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
  1144. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
  1145. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
  1146. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
  1147. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
  1148. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
  1149. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
  1150. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
  1151. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
  1152. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
  1153. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
  1154. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
  1155. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
  1156. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
  1157. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
  1158. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
  1159. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
  1160. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
  1161. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
  1162. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
  1163. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
  1164. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
  1165. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
  1166. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
  1167. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
  1168. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
  1169. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
  1170. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
  1171. data/vendor/bundle/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
  1172. data/vendor/bundle/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
  1173. data/vendor/bundle/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
  1174. data/vendor/bundle/gems/ruby-progressbar-1.10.0/LICENSE.txt +19 -0
  1175. data/vendor/bundle/gems/ruby-progressbar-1.10.0/README.md +38 -0
  1176. data/vendor/bundle/gems/ruby-progressbar-1.10.0/Rakefile +2 -0
  1177. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar.rb +18 -0
  1178. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/base.rb +183 -0
  1179. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/calculators/length.rb +100 -0
  1180. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/calculators/running_average.rb +9 -0
  1181. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components.rb +5 -0
  1182. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/bar.rb +102 -0
  1183. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/percentage.rb +29 -0
  1184. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/rate.rb +43 -0
  1185. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/time.rb +107 -0
  1186. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/components/title.rb +13 -0
  1187. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +4 -0
  1188. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format.rb +3 -0
  1189. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/formatter.rb +27 -0
  1190. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/molecule.rb +60 -0
  1191. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/format/string.rb +36 -0
  1192. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/output.rb +68 -0
  1193. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/non_tty.rb +47 -0
  1194. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/null.rb +33 -0
  1195. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/outputs/tty.rb +32 -0
  1196. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/progress.rb +118 -0
  1197. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/refinements.rb +1 -0
  1198. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/refinements/enumerator.rb +23 -0
  1199. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/throttle.rb +25 -0
  1200. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/time.rb +32 -0
  1201. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/timer.rb +72 -0
  1202. data/vendor/bundle/gems/ruby-progressbar-1.10.0/lib/ruby-progressbar/version.rb +3 -0
  1203. data/vendor/bundle/gems/sqlite3-1.3.13/API_CHANGES.rdoc +50 -0
  1204. data/vendor/bundle/gems/sqlite3-1.3.13/CHANGELOG.rdoc +292 -0
  1205. data/vendor/bundle/gems/sqlite3-1.3.13/ChangeLog.cvs +88 -0
  1206. data/vendor/bundle/gems/sqlite3-1.3.13/Gemfile +15 -0
  1207. data/vendor/bundle/gems/sqlite3-1.3.13/LICENSE +27 -0
  1208. data/vendor/bundle/gems/sqlite3-1.3.13/Manifest.txt +52 -0
  1209. data/vendor/bundle/gems/sqlite3-1.3.13/README.rdoc +118 -0
  1210. data/vendor/bundle/gems/sqlite3-1.3.13/Rakefile +10 -0
  1211. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/.RUBYARCHDIR.-.sqlite3.time +0 -0
  1212. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/Makefile +261 -0
  1213. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/backup.c +168 -0
  1214. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/backup.h +15 -0
  1215. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/backup.o +0 -0
  1216. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/database.c +888 -0
  1217. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/database.h +15 -0
  1218. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/database.o +0 -0
  1219. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/exception.c +94 -0
  1220. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/exception.h +8 -0
  1221. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/exception.o +0 -0
  1222. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/extconf.rb +71 -0
  1223. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/sqlite3.c +152 -0
  1224. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/sqlite3.o +0 -0
  1225. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/sqlite3_native.bundle +0 -0
  1226. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/sqlite3_ruby.h +52 -0
  1227. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/statement.c +447 -0
  1228. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/statement.h +16 -0
  1229. data/vendor/bundle/gems/sqlite3-1.3.13/ext/sqlite3/statement.o +0 -0
  1230. data/vendor/bundle/gems/sqlite3-1.3.13/faq/faq.rb +145 -0
  1231. data/vendor/bundle/gems/sqlite3-1.3.13/faq/faq.yml +426 -0
  1232. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3.rb +15 -0
  1233. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/constants.rb +49 -0
  1234. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/database.rb +591 -0
  1235. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/errors.rb +44 -0
  1236. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/pragmas.rb +588 -0
  1237. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/resultset.rb +195 -0
  1238. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/sqlite3_native.bundle +0 -0
  1239. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/statement.rb +144 -0
  1240. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/translator.rb +118 -0
  1241. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/value.rb +57 -0
  1242. data/vendor/bundle/gems/sqlite3-1.3.13/lib/sqlite3/version.rb +25 -0
  1243. data/vendor/bundle/gems/sqlite3-1.3.13/setup.rb +1333 -0
  1244. data/vendor/bundle/gems/sqlite3-1.3.13/tasks/faq.rake +9 -0
  1245. data/vendor/bundle/gems/sqlite3-1.3.13/tasks/gem.rake +38 -0
  1246. data/vendor/bundle/gems/sqlite3-1.3.13/tasks/native.rake +52 -0
  1247. data/vendor/bundle/gems/sqlite3-1.3.13/tasks/vendor_sqlite3.rake +97 -0
  1248. data/vendor/bundle/gems/sqlite3-1.3.13/test/helper.rb +18 -0
  1249. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_backup.rb +33 -0
  1250. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_collation.rb +82 -0
  1251. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_database.rb +430 -0
  1252. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_database_readonly.rb +36 -0
  1253. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_deprecated.rb +44 -0
  1254. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_encoding.rb +155 -0
  1255. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_integration.rb +576 -0
  1256. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_integration_open_close.rb +30 -0
  1257. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_integration_pending.rb +115 -0
  1258. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_integration_resultset.rb +159 -0
  1259. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_integration_statement.rb +194 -0
  1260. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_result_set.rb +37 -0
  1261. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_sqlite3.rb +21 -0
  1262. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_statement.rb +260 -0
  1263. data/vendor/bundle/gems/sqlite3-1.3.13/test/test_statement_execute.rb +35 -0
  1264. data/vendor/bundle/gems/thread_safe-0.3.6/.rspec +2 -0
  1265. data/vendor/bundle/gems/thread_safe-0.3.6/.travis.yml +46 -0
  1266. data/vendor/bundle/gems/thread_safe-0.3.6/.yardopts +13 -0
  1267. data/vendor/bundle/gems/thread_safe-0.3.6/Gemfile +20 -0
  1268. data/vendor/bundle/gems/thread_safe-0.3.6/LICENSE +144 -0
  1269. data/vendor/bundle/gems/thread_safe-0.3.6/README.md +60 -0
  1270. data/vendor/bundle/gems/thread_safe-0.3.6/Rakefile +62 -0
  1271. data/vendor/bundle/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
  1272. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
  1273. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
  1274. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
  1275. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
  1276. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
  1277. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  1278. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
  1279. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
  1280. data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
  1281. data/vendor/bundle/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
  1282. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
  1283. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
  1284. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
  1285. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
  1286. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
  1287. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
  1288. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
  1289. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
  1290. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
  1291. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
  1292. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
  1293. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
  1294. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
  1295. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
  1296. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
  1297. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
  1298. data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
  1299. data/vendor/bundle/gems/thread_safe-0.3.6/spec/.gitignore +0 -0
  1300. data/vendor/bundle/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
  1301. data/vendor/bundle/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
  1302. data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/.gitignore +0 -0
  1303. data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
  1304. data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
  1305. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/.gitignore +0 -0
  1306. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
  1307. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
  1308. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
  1309. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
  1310. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
  1311. data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
  1312. data/vendor/bundle/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
  1313. data/vendor/bundle/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
  1314. data/vendor/bundle/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
  1315. data/vendor/bundle/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
  1316. data/vendor/bundle/gems/tzinfo-1.2.5/.yardopts +6 -0
  1317. data/vendor/bundle/gems/tzinfo-1.2.5/CHANGES.md +786 -0
  1318. data/vendor/bundle/gems/tzinfo-1.2.5/LICENSE +19 -0
  1319. data/vendor/bundle/gems/tzinfo-1.2.5/README.md +151 -0
  1320. data/vendor/bundle/gems/tzinfo-1.2.5/Rakefile +107 -0
  1321. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo.rb +40 -0
  1322. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country.rb +196 -0
  1323. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb +31 -0
  1324. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb +42 -0
  1325. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_timezone.rb +135 -0
  1326. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb +190 -0
  1327. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone.rb +58 -0
  1328. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone_info.rb +55 -0
  1329. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/info_timezone.rb +30 -0
  1330. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone.rb +63 -0
  1331. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone_info.rb +26 -0
  1332. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb +77 -0
  1333. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_core_support.rb +146 -0
  1334. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_country_info.rb +74 -0
  1335. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb +136 -0
  1336. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/time_or_datetime.rb +340 -0
  1337. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb +669 -0
  1338. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_definition.rb +36 -0
  1339. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb +54 -0
  1340. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_info.rb +30 -0
  1341. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_offset.rb +101 -0
  1342. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_period.rb +245 -0
  1343. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_proxy.rb +105 -0
  1344. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition.rb +130 -0
  1345. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition_definition.rb +104 -0
  1346. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/transition_data_timezone_info.rb +274 -0
  1347. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_country_info.rb +37 -0
  1348. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb +488 -0
  1349. data/vendor/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_timezone_info.rb +296 -0
  1350. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_country.rb +234 -0
  1351. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_country_index_definition.rb +69 -0
  1352. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_country_info.rb +16 -0
  1353. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_country_timezone.rb +173 -0
  1354. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_data_source.rb +218 -0
  1355. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_data_timezone.rb +99 -0
  1356. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_data_timezone_info.rb +18 -0
  1357. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_info_timezone.rb +34 -0
  1358. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_linked_timezone.rb +155 -0
  1359. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_linked_timezone_info.rb +23 -0
  1360. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_offset_rationals.rb +23 -0
  1361. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_ruby_core_support.rb +168 -0
  1362. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_ruby_country_info.rb +110 -0
  1363. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_ruby_data_source.rb +143 -0
  1364. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_time_or_datetime.rb +654 -0
  1365. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone.rb +1350 -0
  1366. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_definition.rb +113 -0
  1367. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_index_definition.rb +73 -0
  1368. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_info.rb +11 -0
  1369. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_london.rb +143 -0
  1370. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_melbourne.rb +142 -0
  1371. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_new_york.rb +142 -0
  1372. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_offset.rb +126 -0
  1373. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_period.rb +555 -0
  1374. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_proxy.rb +136 -0
  1375. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_transition.rb +366 -0
  1376. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_transition_definition.rb +295 -0
  1377. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_timezone_utc.rb +27 -0
  1378. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_transition_data_timezone_info.rb +423 -0
  1379. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_zoneinfo_country_info.rb +78 -0
  1380. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_zoneinfo_data_source.rb +1195 -0
  1381. data/vendor/bundle/gems/tzinfo-1.2.5/test/tc_zoneinfo_timezone_info.rb +1232 -0
  1382. data/vendor/bundle/gems/tzinfo-1.2.5/test/test_utils.rb +163 -0
  1383. data/vendor/bundle/gems/tzinfo-1.2.5/test/ts_all.rb +7 -0
  1384. data/vendor/bundle/gems/tzinfo-1.2.5/test/ts_all_ruby.rb +5 -0
  1385. data/vendor/bundle/gems/tzinfo-1.2.5/test/ts_all_zoneinfo.rb +7 -0
  1386. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data.rb +8 -0
  1387. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  1388. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
  1389. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
  1390. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
  1391. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  1392. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  1393. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  1394. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
  1395. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
  1396. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
  1397. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
  1398. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
  1399. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
  1400. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
  1401. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
  1402. data/vendor/bundle/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/version.rb +14 -0
  1403. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  1404. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/America/New_York +0 -0
  1405. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Australia/Melbourne +0 -0
  1406. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/EST +0 -0
  1407. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Etc/UTC +0 -0
  1408. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Amsterdam +0 -0
  1409. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Andorra +0 -0
  1410. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Europe/London +0 -0
  1411. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Paris +0 -0
  1412. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Prague +0 -0
  1413. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/Factory +0 -0
  1414. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/iso3166.tab +275 -0
  1415. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/leapseconds +61 -0
  1416. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/posix/Europe/London +0 -0
  1417. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/posixrules +0 -0
  1418. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/right/Europe/London +0 -0
  1419. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/zone.tab +439 -0
  1420. data/vendor/bundle/gems/tzinfo-1.2.5/test/zoneinfo/zone1970.tab +369 -0
  1421. data/vendor/bundle/gems/tzinfo-1.2.5/tzinfo.gemspec +21 -0
  1422. data/vendor/bundle/specifications/activemodel-5.2.2.gemspec +34 -0
  1423. data/vendor/bundle/specifications/activerecord-5.2.2.gemspec +43 -0
  1424. data/vendor/bundle/specifications/activesupport-5.2.2.gemspec +44 -0
  1425. data/vendor/bundle/specifications/ansi-1.5.0.gemspec +49 -0
  1426. data/vendor/bundle/specifications/arel-9.0.0.gemspec +45 -0
  1427. data/vendor/bundle/specifications/builder-3.2.3.gemspec +21 -0
  1428. data/vendor/bundle/specifications/concurrent-ruby-1.1.4.gemspec +23 -0
  1429. data/vendor/bundle/specifications/i18n-1.3.0.gemspec +36 -0
  1430. data/vendor/bundle/specifications/minitest-5.11.3.gemspec +39 -0
  1431. data/vendor/bundle/specifications/minitest-reporters-1.3.5.gemspec +52 -0
  1432. data/vendor/bundle/specifications/rake-10.5.0.gemspec +43 -0
  1433. data/vendor/bundle/specifications/ruby-progressbar-1.10.0.gemspec +46 -0
  1434. data/vendor/bundle/specifications/sqlite3-1.3.13.gemspec +56 -0
  1435. data/vendor/bundle/specifications/thread_safe-0.3.6.gemspec +38 -0
  1436. data/vendor/bundle/specifications/tzinfo-1.2.5.gemspec +37 -0
  1437. metadata +1563 -0
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2005-2018 David Heinemeier Hansson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ = Active Support -- Utility classes and Ruby extensions from Rails
2
+
3
+ Active Support is a collection of utility classes and standard library
4
+ extensions that were found useful for the Rails framework. These additions
5
+ reside in this package so they can be loaded as needed in Ruby projects
6
+ outside of Rails.
7
+
8
+
9
+ == Download and installation
10
+
11
+ The latest version of Active Support can be installed with RubyGems:
12
+
13
+ $ gem install activesupport
14
+
15
+ Source code can be downloaded as part of the Rails project on GitHub:
16
+
17
+ * https://github.com/rails/rails/tree/5-2-stable/activesupport
18
+
19
+
20
+ == License
21
+
22
+ Active Support is released under the MIT license:
23
+
24
+ * https://opensource.org/licenses/MIT
25
+
26
+
27
+ == Support
28
+
29
+ API documentation is at:
30
+
31
+ * http://api.rubyonrails.org
32
+
33
+ Bug reports for the Ruby on Rails project can be filed here:
34
+
35
+ * https://github.com/rails/rails/issues
36
+
37
+ Feature requests should be discussed on the rails-core mailing list here:
38
+
39
+ * https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
@@ -0,0 +1,95 @@
1
+ # frozen_string_literal: true
2
+
3
+ #--
4
+ # Copyright (c) 2005-2018 David Heinemeier Hansson
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining
7
+ # a copy of this software and associated documentation files (the
8
+ # "Software"), to deal in the Software without restriction, including
9
+ # without limitation the rights to use, copy, modify, merge, publish,
10
+ # distribute, sublicense, and/or sell copies of the Software, and to
11
+ # permit persons to whom the Software is furnished to do so, subject to
12
+ # the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be
15
+ # included in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+ #++
25
+
26
+ require "securerandom"
27
+ require "active_support/dependencies/autoload"
28
+ require "active_support/version"
29
+ require "active_support/logger"
30
+ require "active_support/lazy_load_hooks"
31
+ require "active_support/core_ext/date_and_time/compatibility"
32
+
33
+ module ActiveSupport
34
+ extend ActiveSupport::Autoload
35
+
36
+ autoload :Concern
37
+ autoload :CurrentAttributes
38
+ autoload :Dependencies
39
+ autoload :DescendantsTracker
40
+ autoload :ExecutionWrapper
41
+ autoload :Executor
42
+ autoload :FileUpdateChecker
43
+ autoload :EventedFileUpdateChecker
44
+ autoload :LogSubscriber
45
+ autoload :Notifications
46
+ autoload :Reloader
47
+
48
+ eager_autoload do
49
+ autoload :BacktraceCleaner
50
+ autoload :ProxyObject
51
+ autoload :Benchmarkable
52
+ autoload :Cache
53
+ autoload :Callbacks
54
+ autoload :Configurable
55
+ autoload :Deprecation
56
+ autoload :Digest
57
+ autoload :Gzip
58
+ autoload :Inflector
59
+ autoload :JSON
60
+ autoload :KeyGenerator
61
+ autoload :MessageEncryptor
62
+ autoload :MessageVerifier
63
+ autoload :Multibyte
64
+ autoload :NumberHelper
65
+ autoload :OptionMerger
66
+ autoload :OrderedHash
67
+ autoload :OrderedOptions
68
+ autoload :StringInquirer
69
+ autoload :TaggedLogging
70
+ autoload :XmlMini
71
+ autoload :ArrayInquirer
72
+ end
73
+
74
+ autoload :Rescuable
75
+ autoload :SafeBuffer, "active_support/core_ext/string/output_safety"
76
+ autoload :TestCase
77
+
78
+ def self.eager_load!
79
+ super
80
+
81
+ NumberHelper.eager_load!
82
+ end
83
+
84
+ cattr_accessor :test_order # :nodoc:
85
+
86
+ def self.to_time_preserves_timezone
87
+ DateAndTime::Compatibility.preserve_timezone
88
+ end
89
+
90
+ def self.to_time_preserves_timezone=(value)
91
+ DateAndTime::Compatibility.preserve_timezone = value
92
+ end
93
+ end
94
+
95
+ autoload :I18n, "active_support/i18n"
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support"
4
+ require "active_support/time"
5
+ require "active_support/core_ext"
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveSupport
4
+ # Wrapping an array in an +ArrayInquirer+ gives a friendlier way to check
5
+ # its string-like contents:
6
+ #
7
+ # variants = ActiveSupport::ArrayInquirer.new([:phone, :tablet])
8
+ #
9
+ # variants.phone? # => true
10
+ # variants.tablet? # => true
11
+ # variants.desktop? # => false
12
+ class ArrayInquirer < Array
13
+ # Passes each element of +candidates+ collection to ArrayInquirer collection.
14
+ # The method returns true if any element from the ArrayInquirer collection
15
+ # is equal to the stringified or symbolized form of any element in the +candidates+ collection.
16
+ #
17
+ # If +candidates+ collection is not given, method returns true.
18
+ #
19
+ # variants = ActiveSupport::ArrayInquirer.new([:phone, :tablet])
20
+ #
21
+ # variants.any? # => true
22
+ # variants.any?(:phone, :tablet) # => true
23
+ # variants.any?('phone', 'desktop') # => true
24
+ # variants.any?(:desktop, :watch) # => false
25
+ def any?(*candidates)
26
+ if candidates.none?
27
+ super
28
+ else
29
+ candidates.any? do |candidate|
30
+ include?(candidate.to_sym) || include?(candidate.to_s)
31
+ end
32
+ end
33
+ end
34
+
35
+ private
36
+ def respond_to_missing?(name, include_private = false)
37
+ (name[-1] == "?") || super
38
+ end
39
+
40
+ def method_missing(name, *args)
41
+ if name[-1] == "?"
42
+ any?(name[0..-2])
43
+ else
44
+ super
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,105 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveSupport
4
+ # Backtraces often include many lines that are not relevant for the context
5
+ # under review. This makes it hard to find the signal amongst the backtrace
6
+ # noise, and adds debugging time. With a BacktraceCleaner, filters and
7
+ # silencers are used to remove the noisy lines, so that only the most relevant
8
+ # lines remain.
9
+ #
10
+ # Filters are used to modify lines of data, while silencers are used to remove
11
+ # lines entirely. The typical filter use case is to remove lengthy path
12
+ # information from the start of each line, and view file paths relevant to the
13
+ # app directory instead of the file system root. The typical silencer use case
14
+ # is to exclude the output of a noisy library from the backtrace, so that you
15
+ # can focus on the rest.
16
+ #
17
+ # bc = ActiveSupport::BacktraceCleaner.new
18
+ # bc.add_filter { |line| line.gsub(Rails.root.to_s, '') } # strip the Rails.root prefix
19
+ # bc.add_silencer { |line| line =~ /puma|rubygems/ } # skip any lines from puma or rubygems
20
+ # bc.clean(exception.backtrace) # perform the cleanup
21
+ #
22
+ # To reconfigure an existing BacktraceCleaner (like the default one in Rails)
23
+ # and show as much data as possible, you can always call
24
+ # <tt>BacktraceCleaner#remove_silencers!</tt>, which will restore the
25
+ # backtrace to a pristine state. If you need to reconfigure an existing
26
+ # BacktraceCleaner so that it does not filter or modify the paths of any lines
27
+ # of the backtrace, you can call <tt>BacktraceCleaner#remove_filters!</tt>
28
+ # These two methods will give you a completely untouched backtrace.
29
+ #
30
+ # Inspired by the Quiet Backtrace gem by thoughtbot.
31
+ class BacktraceCleaner
32
+ def initialize
33
+ @filters, @silencers = [], []
34
+ end
35
+
36
+ # Returns the backtrace after all filters and silencers have been run
37
+ # against it. Filters run first, then silencers.
38
+ def clean(backtrace, kind = :silent)
39
+ filtered = filter_backtrace(backtrace)
40
+
41
+ case kind
42
+ when :silent
43
+ silence(filtered)
44
+ when :noise
45
+ noise(filtered)
46
+ else
47
+ filtered
48
+ end
49
+ end
50
+ alias :filter :clean
51
+
52
+ # Adds a filter from the block provided. Each line in the backtrace will be
53
+ # mapped against this filter.
54
+ #
55
+ # # Will turn "/my/rails/root/app/models/person.rb" into "/app/models/person.rb"
56
+ # backtrace_cleaner.add_filter { |line| line.gsub(Rails.root, '') }
57
+ def add_filter(&block)
58
+ @filters << block
59
+ end
60
+
61
+ # Adds a silencer from the block provided. If the silencer returns +true+
62
+ # for a given line, it will be excluded from the clean backtrace.
63
+ #
64
+ # # Will reject all lines that include the word "puma", like "/gems/puma/server.rb" or "/app/my_puma_server/rb"
65
+ # backtrace_cleaner.add_silencer { |line| line =~ /puma/ }
66
+ def add_silencer(&block)
67
+ @silencers << block
68
+ end
69
+
70
+ # Removes all silencers, but leaves in the filters. Useful if your
71
+ # context of debugging suddenly expands as you suspect a bug in one of
72
+ # the libraries you use.
73
+ def remove_silencers!
74
+ @silencers = []
75
+ end
76
+
77
+ # Removes all filters, but leaves in the silencers. Useful if you suddenly
78
+ # need to see entire filepaths in the backtrace that you had already
79
+ # filtered out.
80
+ def remove_filters!
81
+ @filters = []
82
+ end
83
+
84
+ private
85
+ def filter_backtrace(backtrace)
86
+ @filters.each do |f|
87
+ backtrace = backtrace.map { |line| f.call(line) }
88
+ end
89
+
90
+ backtrace
91
+ end
92
+
93
+ def silence(backtrace)
94
+ @silencers.each do |s|
95
+ backtrace = backtrace.reject { |line| s.call(line) }
96
+ end
97
+
98
+ backtrace
99
+ end
100
+
101
+ def noise(backtrace)
102
+ backtrace - silence(backtrace)
103
+ end
104
+ end
105
+ end
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/core_ext/benchmark"
4
+ require "active_support/core_ext/hash/keys"
5
+
6
+ module ActiveSupport
7
+ module Benchmarkable
8
+ # Allows you to measure the execution time of a block in a template and
9
+ # records the result to the log. Wrap this block around expensive operations
10
+ # or possible bottlenecks to get a time reading for the operation. For
11
+ # example, let's say you thought your file processing method was taking too
12
+ # long; you could wrap it in a benchmark block.
13
+ #
14
+ # <% benchmark 'Process data files' do %>
15
+ # <%= expensive_files_operation %>
16
+ # <% end %>
17
+ #
18
+ # That would add something like "Process data files (345.2ms)" to the log,
19
+ # which you can then use to compare timings when optimizing your code.
20
+ #
21
+ # You may give an optional logger level (<tt>:debug</tt>, <tt>:info</tt>,
22
+ # <tt>:warn</tt>, <tt>:error</tt>) as the <tt>:level</tt> option. The
23
+ # default logger level value is <tt>:info</tt>.
24
+ #
25
+ # <% benchmark 'Low-level files', level: :debug do %>
26
+ # <%= lowlevel_files_operation %>
27
+ # <% end %>
28
+ #
29
+ # Finally, you can pass true as the third argument to silence all log
30
+ # activity (other than the timing information) from inside the block. This
31
+ # is great for boiling down a noisy block to just a single statement that
32
+ # produces one log line:
33
+ #
34
+ # <% benchmark 'Process data files', level: :info, silence: true do %>
35
+ # <%= expensive_and_chatty_files_operation %>
36
+ # <% end %>
37
+ def benchmark(message = "Benchmarking", options = {})
38
+ if logger
39
+ options.assert_valid_keys(:level, :silence)
40
+ options[:level] ||= :info
41
+
42
+ result = nil
43
+ ms = Benchmark.ms { result = options[:silence] ? logger.silence { yield } : yield }
44
+ logger.send(options[:level], "%s (%.1fms)" % [ message, ms ])
45
+ result
46
+ else
47
+ yield
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ begin
4
+ require "builder"
5
+ rescue LoadError => e
6
+ $stderr.puts "You don't have builder installed in your application. Please add it to your Gemfile and run bundle install"
7
+ raise e
8
+ end
@@ -0,0 +1,808 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "zlib"
4
+ require "active_support/core_ext/array/extract_options"
5
+ require "active_support/core_ext/array/wrap"
6
+ require "active_support/core_ext/module/attribute_accessors"
7
+ require "active_support/core_ext/numeric/bytes"
8
+ require "active_support/core_ext/numeric/time"
9
+ require "active_support/core_ext/object/to_param"
10
+ require "active_support/core_ext/string/inflections"
11
+
12
+ module ActiveSupport
13
+ # See ActiveSupport::Cache::Store for documentation.
14
+ module Cache
15
+ autoload :FileStore, "active_support/cache/file_store"
16
+ autoload :MemoryStore, "active_support/cache/memory_store"
17
+ autoload :MemCacheStore, "active_support/cache/mem_cache_store"
18
+ autoload :NullStore, "active_support/cache/null_store"
19
+ autoload :RedisCacheStore, "active_support/cache/redis_cache_store"
20
+
21
+ # These options mean something to all cache implementations. Individual cache
22
+ # implementations may support additional options.
23
+ UNIVERSAL_OPTIONS = [:namespace, :compress, :compress_threshold, :expires_in, :race_condition_ttl]
24
+
25
+ module Strategy
26
+ autoload :LocalCache, "active_support/cache/strategy/local_cache"
27
+ end
28
+
29
+ class << self
30
+ # Creates a new Store object according to the given options.
31
+ #
32
+ # If no arguments are passed to this method, then a new
33
+ # ActiveSupport::Cache::MemoryStore object will be returned.
34
+ #
35
+ # If you pass a Symbol as the first argument, then a corresponding cache
36
+ # store class under the ActiveSupport::Cache namespace will be created.
37
+ # For example:
38
+ #
39
+ # ActiveSupport::Cache.lookup_store(:memory_store)
40
+ # # => returns a new ActiveSupport::Cache::MemoryStore object
41
+ #
42
+ # ActiveSupport::Cache.lookup_store(:mem_cache_store)
43
+ # # => returns a new ActiveSupport::Cache::MemCacheStore object
44
+ #
45
+ # Any additional arguments will be passed to the corresponding cache store
46
+ # class's constructor:
47
+ #
48
+ # ActiveSupport::Cache.lookup_store(:file_store, '/tmp/cache')
49
+ # # => same as: ActiveSupport::Cache::FileStore.new('/tmp/cache')
50
+ #
51
+ # If the first argument is not a Symbol, then it will simply be returned:
52
+ #
53
+ # ActiveSupport::Cache.lookup_store(MyOwnCacheStore.new)
54
+ # # => returns MyOwnCacheStore.new
55
+ def lookup_store(*store_option)
56
+ store, *parameters = *Array.wrap(store_option).flatten
57
+
58
+ case store
59
+ when Symbol
60
+ retrieve_store_class(store).new(*parameters)
61
+ when nil
62
+ ActiveSupport::Cache::MemoryStore.new
63
+ else
64
+ store
65
+ end
66
+ end
67
+
68
+ # Expands out the +key+ argument into a key that can be used for the
69
+ # cache store. Optionally accepts a namespace, and all keys will be
70
+ # scoped within that namespace.
71
+ #
72
+ # If the +key+ argument provided is an array, or responds to +to_a+, then
73
+ # each of elements in the array will be turned into parameters/keys and
74
+ # concatenated into a single key. For example:
75
+ #
76
+ # ActiveSupport::Cache.expand_cache_key([:foo, :bar]) # => "foo/bar"
77
+ # ActiveSupport::Cache.expand_cache_key([:foo, :bar], "namespace") # => "namespace/foo/bar"
78
+ #
79
+ # The +key+ argument can also respond to +cache_key+ or +to_param+.
80
+ def expand_cache_key(key, namespace = nil)
81
+ expanded_cache_key = (namespace ? "#{namespace}/" : "").dup
82
+
83
+ if prefix = ENV["RAILS_CACHE_ID"] || ENV["RAILS_APP_VERSION"]
84
+ expanded_cache_key << "#{prefix}/"
85
+ end
86
+
87
+ expanded_cache_key << retrieve_cache_key(key)
88
+ expanded_cache_key
89
+ end
90
+
91
+ private
92
+ def retrieve_cache_key(key)
93
+ case
94
+ when key.respond_to?(:cache_key_with_version) then key.cache_key_with_version
95
+ when key.respond_to?(:cache_key) then key.cache_key
96
+ when key.is_a?(Array) then key.map { |element| retrieve_cache_key(element) }.to_param
97
+ when key.respond_to?(:to_a) then retrieve_cache_key(key.to_a)
98
+ else key.to_param
99
+ end.to_s
100
+ end
101
+
102
+ # Obtains the specified cache store class, given the name of the +store+.
103
+ # Raises an error when the store class cannot be found.
104
+ def retrieve_store_class(store)
105
+ # require_relative cannot be used here because the class might be
106
+ # provided by another gem, like redis-activesupport for example.
107
+ require "active_support/cache/#{store}"
108
+ rescue LoadError => e
109
+ raise "Could not find cache store adapter for #{store} (#{e})"
110
+ else
111
+ ActiveSupport::Cache.const_get(store.to_s.camelize)
112
+ end
113
+ end
114
+
115
+ # An abstract cache store class. There are multiple cache store
116
+ # implementations, each having its own additional features. See the classes
117
+ # under the ActiveSupport::Cache module, e.g.
118
+ # ActiveSupport::Cache::MemCacheStore. MemCacheStore is currently the most
119
+ # popular cache store for large production websites.
120
+ #
121
+ # Some implementations may not support all methods beyond the basic cache
122
+ # methods of +fetch+, +write+, +read+, +exist?+, and +delete+.
123
+ #
124
+ # ActiveSupport::Cache::Store can store any serializable Ruby object.
125
+ #
126
+ # cache = ActiveSupport::Cache::MemoryStore.new
127
+ #
128
+ # cache.read('city') # => nil
129
+ # cache.write('city', "Duckburgh")
130
+ # cache.read('city') # => "Duckburgh"
131
+ #
132
+ # Keys are always translated into Strings and are case sensitive. When an
133
+ # object is specified as a key and has a +cache_key+ method defined, this
134
+ # method will be called to define the key. Otherwise, the +to_param+
135
+ # method will be called. Hashes and Arrays can also be used as keys. The
136
+ # elements will be delimited by slashes, and the elements within a Hash
137
+ # will be sorted by key so they are consistent.
138
+ #
139
+ # cache.read('city') == cache.read(:city) # => true
140
+ #
141
+ # Nil values can be cached.
142
+ #
143
+ # If your cache is on a shared infrastructure, you can define a namespace
144
+ # for your cache entries. If a namespace is defined, it will be prefixed on
145
+ # to every key. The namespace can be either a static value or a Proc. If it
146
+ # is a Proc, it will be invoked when each key is evaluated so that you can
147
+ # use application logic to invalidate keys.
148
+ #
149
+ # cache.namespace = -> { @last_mod_time } # Set the namespace to a variable
150
+ # @last_mod_time = Time.now # Invalidate the entire cache by changing namespace
151
+ #
152
+ # Cached data larger than 1kB are compressed by default. To turn off
153
+ # compression, pass <tt>compress: false</tt> to the initializer or to
154
+ # individual +fetch+ or +write+ method calls. The 1kB compression
155
+ # threshold is configurable with the <tt>:compress_threshold</tt> option,
156
+ # specified in bytes.
157
+ class Store
158
+ cattr_accessor :logger, instance_writer: true
159
+
160
+ attr_reader :silence, :options
161
+ alias :silence? :silence
162
+
163
+ class << self
164
+ private
165
+ def retrieve_pool_options(options)
166
+ {}.tap do |pool_options|
167
+ pool_options[:size] = options.delete(:pool_size) if options[:pool_size]
168
+ pool_options[:timeout] = options.delete(:pool_timeout) if options[:pool_timeout]
169
+ end
170
+ end
171
+
172
+ def ensure_connection_pool_added!
173
+ require "connection_pool"
174
+ rescue LoadError => e
175
+ $stderr.puts "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
176
+ raise e
177
+ end
178
+ end
179
+
180
+ # Creates a new cache. The options will be passed to any write method calls
181
+ # except for <tt>:namespace</tt> which can be used to set the global
182
+ # namespace for the cache.
183
+ def initialize(options = nil)
184
+ @options = options ? options.dup : {}
185
+ end
186
+
187
+ # Silences the logger.
188
+ def silence!
189
+ @silence = true
190
+ self
191
+ end
192
+
193
+ # Silences the logger within a block.
194
+ def mute
195
+ previous_silence, @silence = defined?(@silence) && @silence, true
196
+ yield
197
+ ensure
198
+ @silence = previous_silence
199
+ end
200
+
201
+ # Fetches data from the cache, using the given key. If there is data in
202
+ # the cache with the given key, then that data is returned.
203
+ #
204
+ # If there is no such data in the cache (a cache miss), then +nil+ will be
205
+ # returned. However, if a block has been passed, that block will be passed
206
+ # the key and executed in the event of a cache miss. The return value of the
207
+ # block will be written to the cache under the given cache key, and that
208
+ # return value will be returned.
209
+ #
210
+ # cache.write('today', 'Monday')
211
+ # cache.fetch('today') # => "Monday"
212
+ #
213
+ # cache.fetch('city') # => nil
214
+ # cache.fetch('city') do
215
+ # 'Duckburgh'
216
+ # end
217
+ # cache.fetch('city') # => "Duckburgh"
218
+ #
219
+ # You may also specify additional options via the +options+ argument.
220
+ # Setting <tt>force: true</tt> forces a cache "miss," meaning we treat
221
+ # the cache value as missing even if it's present. Passing a block is
222
+ # required when +force+ is true so this always results in a cache write.
223
+ #
224
+ # cache.write('today', 'Monday')
225
+ # cache.fetch('today', force: true) { 'Tuesday' } # => 'Tuesday'
226
+ # cache.fetch('today', force: true) # => ArgumentError
227
+ #
228
+ # The +:force+ option is useful when you're calling some other method to
229
+ # ask whether you should force a cache write. Otherwise, it's clearer to
230
+ # just call <tt>Cache#write</tt>.
231
+ #
232
+ # Setting <tt>compress: false</tt> disables compression of the cache entry.
233
+ #
234
+ # Setting <tt>:expires_in</tt> will set an expiration time on the cache.
235
+ # All caches support auto-expiring content after a specified number of
236
+ # seconds. This value can be specified as an option to the constructor
237
+ # (in which case all entries will be affected), or it can be supplied to
238
+ # the +fetch+ or +write+ method to effect just one entry.
239
+ #
240
+ # cache = ActiveSupport::Cache::MemoryStore.new(expires_in: 5.minutes)
241
+ # cache.write(key, value, expires_in: 1.minute) # Set a lower value for one entry
242
+ #
243
+ # Setting <tt>:version</tt> verifies the cache stored under <tt>name</tt>
244
+ # is of the same version. nil is returned on mismatches despite contents.
245
+ # This feature is used to support recyclable cache keys.
246
+ #
247
+ # Setting <tt>:race_condition_ttl</tt> is very useful in situations where
248
+ # a cache entry is used very frequently and is under heavy load. If a
249
+ # cache expires and due to heavy load several different processes will try
250
+ # to read data natively and then they all will try to write to cache. To
251
+ # avoid that case the first process to find an expired cache entry will
252
+ # bump the cache expiration time by the value set in <tt>:race_condition_ttl</tt>.
253
+ # Yes, this process is extending the time for a stale value by another few
254
+ # seconds. Because of extended life of the previous cache, other processes
255
+ # will continue to use slightly stale data for a just a bit longer. In the
256
+ # meantime that first process will go ahead and will write into cache the
257
+ # new value. After that all the processes will start getting the new value.
258
+ # The key is to keep <tt>:race_condition_ttl</tt> small.
259
+ #
260
+ # If the process regenerating the entry errors out, the entry will be
261
+ # regenerated after the specified number of seconds. Also note that the
262
+ # life of stale cache is extended only if it expired recently. Otherwise
263
+ # a new value is generated and <tt>:race_condition_ttl</tt> does not play
264
+ # any role.
265
+ #
266
+ # # Set all values to expire after one minute.
267
+ # cache = ActiveSupport::Cache::MemoryStore.new(expires_in: 1.minute)
268
+ #
269
+ # cache.write('foo', 'original value')
270
+ # val_1 = nil
271
+ # val_2 = nil
272
+ # sleep 60
273
+ #
274
+ # Thread.new do
275
+ # val_1 = cache.fetch('foo', race_condition_ttl: 10.seconds) do
276
+ # sleep 1
277
+ # 'new value 1'
278
+ # end
279
+ # end
280
+ #
281
+ # Thread.new do
282
+ # val_2 = cache.fetch('foo', race_condition_ttl: 10.seconds) do
283
+ # 'new value 2'
284
+ # end
285
+ # end
286
+ #
287
+ # cache.fetch('foo') # => "original value"
288
+ # sleep 10 # First thread extended the life of cache by another 10 seconds
289
+ # cache.fetch('foo') # => "new value 1"
290
+ # val_1 # => "new value 1"
291
+ # val_2 # => "original value"
292
+ #
293
+ # Other options will be handled by the specific cache store implementation.
294
+ # Internally, #fetch calls #read_entry, and calls #write_entry on a cache
295
+ # miss. +options+ will be passed to the #read and #write calls.
296
+ #
297
+ # For example, MemCacheStore's #write method supports the +:raw+
298
+ # option, which tells the memcached server to store all values as strings.
299
+ # We can use this option with #fetch too:
300
+ #
301
+ # cache = ActiveSupport::Cache::MemCacheStore.new
302
+ # cache.fetch("foo", force: true, raw: true) do
303
+ # :bar
304
+ # end
305
+ # cache.fetch('foo') # => "bar"
306
+ def fetch(name, options = nil)
307
+ if block_given?
308
+ options = merged_options(options)
309
+ key = normalize_key(name, options)
310
+
311
+ entry = nil
312
+ instrument(:read, name, options) do |payload|
313
+ cached_entry = read_entry(key, options) unless options[:force]
314
+ entry = handle_expired_entry(cached_entry, key, options)
315
+ entry = nil if entry && entry.mismatched?(normalize_version(name, options))
316
+ payload[:super_operation] = :fetch if payload
317
+ payload[:hit] = !!entry if payload
318
+ end
319
+
320
+ if entry
321
+ get_entry_value(entry, name, options)
322
+ else
323
+ save_block_result_to_cache(name, options) { |_name| yield _name }
324
+ end
325
+ elsif options && options[:force]
326
+ raise ArgumentError, "Missing block: Calling `Cache#fetch` with `force: true` requires a block."
327
+ else
328
+ read(name, options)
329
+ end
330
+ end
331
+
332
+ # Reads data from the cache, using the given key. If there is data in
333
+ # the cache with the given key, then that data is returned. Otherwise,
334
+ # +nil+ is returned.
335
+ #
336
+ # Note, if data was written with the <tt>:expires_in<tt> or <tt>:version</tt> options,
337
+ # both of these conditions are applied before the data is returned.
338
+ #
339
+ # Options are passed to the underlying cache implementation.
340
+ def read(name, options = nil)
341
+ options = merged_options(options)
342
+ key = normalize_key(name, options)
343
+ version = normalize_version(name, options)
344
+
345
+ instrument(:read, name, options) do |payload|
346
+ entry = read_entry(key, options)
347
+
348
+ if entry
349
+ if entry.expired?
350
+ delete_entry(key, options)
351
+ payload[:hit] = false if payload
352
+ nil
353
+ elsif entry.mismatched?(version)
354
+ payload[:hit] = false if payload
355
+ nil
356
+ else
357
+ payload[:hit] = true if payload
358
+ entry.value
359
+ end
360
+ else
361
+ payload[:hit] = false if payload
362
+ nil
363
+ end
364
+ end
365
+ end
366
+
367
+ # Reads multiple values at once from the cache. Options can be passed
368
+ # in the last argument.
369
+ #
370
+ # Some cache implementation may optimize this method.
371
+ #
372
+ # Returns a hash mapping the names provided to the values found.
373
+ def read_multi(*names)
374
+ options = names.extract_options!
375
+ options = merged_options(options)
376
+
377
+ instrument :read_multi, names, options do |payload|
378
+ read_multi_entries(names, options).tap do |results|
379
+ payload[:hits] = results.keys
380
+ end
381
+ end
382
+ end
383
+
384
+ # Cache Storage API to write multiple values at once.
385
+ def write_multi(hash, options = nil)
386
+ options = merged_options(options)
387
+
388
+ instrument :write_multi, hash, options do |payload|
389
+ entries = hash.each_with_object({}) do |(name, value), memo|
390
+ memo[normalize_key(name, options)] = Entry.new(value, options.merge(version: normalize_version(name, options)))
391
+ end
392
+
393
+ write_multi_entries entries, options
394
+ end
395
+ end
396
+
397
+ # Fetches data from the cache, using the given keys. If there is data in
398
+ # the cache with the given keys, then that data is returned. Otherwise,
399
+ # the supplied block is called for each key for which there was no data,
400
+ # and the result will be written to the cache and returned.
401
+ # Therefore, you need to pass a block that returns the data to be written
402
+ # to the cache. If you do not want to write the cache when the cache is
403
+ # not found, use #read_multi.
404
+ #
405
+ # Options are passed to the underlying cache implementation.
406
+ #
407
+ # Returns a hash with the data for each of the names. For example:
408
+ #
409
+ # cache.write("bim", "bam")
410
+ # cache.fetch_multi("bim", "unknown_key") do |key|
411
+ # "Fallback value for key: #{key}"
412
+ # end
413
+ # # => { "bim" => "bam",
414
+ # # "unknown_key" => "Fallback value for key: unknown_key" }
415
+ #
416
+ def fetch_multi(*names)
417
+ raise ArgumentError, "Missing block: `Cache#fetch_multi` requires a block." unless block_given?
418
+
419
+ options = names.extract_options!
420
+ options = merged_options(options)
421
+
422
+ instrument :read_multi, names, options do |payload|
423
+ read_multi_entries(names, options).tap do |results|
424
+ payload[:hits] = results.keys
425
+ payload[:super_operation] = :fetch_multi
426
+
427
+ writes = {}
428
+
429
+ (names - results.keys).each do |name|
430
+ results[name] = writes[name] = yield(name)
431
+ end
432
+
433
+ write_multi writes, options
434
+ end
435
+ end
436
+ end
437
+
438
+ # Writes the value to the cache, with the key.
439
+ #
440
+ # Options are passed to the underlying cache implementation.
441
+ def write(name, value, options = nil)
442
+ options = merged_options(options)
443
+
444
+ instrument(:write, name, options) do
445
+ entry = Entry.new(value, options.merge(version: normalize_version(name, options)))
446
+ write_entry(normalize_key(name, options), entry, options)
447
+ end
448
+ end
449
+
450
+ # Deletes an entry in the cache. Returns +true+ if an entry is deleted.
451
+ #
452
+ # Options are passed to the underlying cache implementation.
453
+ def delete(name, options = nil)
454
+ options = merged_options(options)
455
+
456
+ instrument(:delete, name) do
457
+ delete_entry(normalize_key(name, options), options)
458
+ end
459
+ end
460
+
461
+ # Returns +true+ if the cache contains an entry for the given key.
462
+ #
463
+ # Options are passed to the underlying cache implementation.
464
+ def exist?(name, options = nil)
465
+ options = merged_options(options)
466
+
467
+ instrument(:exist?, name) do
468
+ entry = read_entry(normalize_key(name, options), options)
469
+ (entry && !entry.expired? && !entry.mismatched?(normalize_version(name, options))) || false
470
+ end
471
+ end
472
+
473
+ # Deletes all entries with keys matching the pattern.
474
+ #
475
+ # Options are passed to the underlying cache implementation.
476
+ #
477
+ # All implementations may not support this method.
478
+ def delete_matched(matcher, options = nil)
479
+ raise NotImplementedError.new("#{self.class.name} does not support delete_matched")
480
+ end
481
+
482
+ # Increments an integer value in the cache.
483
+ #
484
+ # Options are passed to the underlying cache implementation.
485
+ #
486
+ # All implementations may not support this method.
487
+ def increment(name, amount = 1, options = nil)
488
+ raise NotImplementedError.new("#{self.class.name} does not support increment")
489
+ end
490
+
491
+ # Decrements an integer value in the cache.
492
+ #
493
+ # Options are passed to the underlying cache implementation.
494
+ #
495
+ # All implementations may not support this method.
496
+ def decrement(name, amount = 1, options = nil)
497
+ raise NotImplementedError.new("#{self.class.name} does not support decrement")
498
+ end
499
+
500
+ # Cleanups the cache by removing expired entries.
501
+ #
502
+ # Options are passed to the underlying cache implementation.
503
+ #
504
+ # All implementations may not support this method.
505
+ def cleanup(options = nil)
506
+ raise NotImplementedError.new("#{self.class.name} does not support cleanup")
507
+ end
508
+
509
+ # Clears the entire cache. Be careful with this method since it could
510
+ # affect other processes if shared cache is being used.
511
+ #
512
+ # The options hash is passed to the underlying cache implementation.
513
+ #
514
+ # All implementations may not support this method.
515
+ def clear(options = nil)
516
+ raise NotImplementedError.new("#{self.class.name} does not support clear")
517
+ end
518
+
519
+ private
520
+ # Adds the namespace defined in the options to a pattern designed to
521
+ # match keys. Implementations that support delete_matched should call
522
+ # this method to translate a pattern that matches names into one that
523
+ # matches namespaced keys.
524
+ def key_matcher(pattern, options) # :doc:
525
+ prefix = options[:namespace].is_a?(Proc) ? options[:namespace].call : options[:namespace]
526
+ if prefix
527
+ source = pattern.source
528
+ if source.start_with?("^")
529
+ source = source[1, source.length]
530
+ else
531
+ source = ".*#{source[0, source.length]}"
532
+ end
533
+ Regexp.new("^#{Regexp.escape(prefix)}:#{source}", pattern.options)
534
+ else
535
+ pattern
536
+ end
537
+ end
538
+
539
+ # Reads an entry from the cache implementation. Subclasses must implement
540
+ # this method.
541
+ def read_entry(key, options)
542
+ raise NotImplementedError.new
543
+ end
544
+
545
+ # Writes an entry to the cache implementation. Subclasses must implement
546
+ # this method.
547
+ def write_entry(key, entry, options)
548
+ raise NotImplementedError.new
549
+ end
550
+
551
+ # Reads multiple entries from the cache implementation. Subclasses MAY
552
+ # implement this method.
553
+ def read_multi_entries(names, options)
554
+ results = {}
555
+ names.each do |name|
556
+ key = normalize_key(name, options)
557
+ version = normalize_version(name, options)
558
+ entry = read_entry(key, options)
559
+
560
+ if entry
561
+ if entry.expired?
562
+ delete_entry(key, options)
563
+ elsif entry.mismatched?(version)
564
+ # Skip mismatched versions
565
+ else
566
+ results[name] = entry.value
567
+ end
568
+ end
569
+ end
570
+ results
571
+ end
572
+
573
+ # Writes multiple entries to the cache implementation. Subclasses MAY
574
+ # implement this method.
575
+ def write_multi_entries(hash, options)
576
+ hash.each do |key, entry|
577
+ write_entry key, entry, options
578
+ end
579
+ end
580
+
581
+ # Deletes an entry from the cache implementation. Subclasses must
582
+ # implement this method.
583
+ def delete_entry(key, options)
584
+ raise NotImplementedError.new
585
+ end
586
+
587
+ # Merges the default options with ones specific to a method call.
588
+ def merged_options(call_options)
589
+ if call_options
590
+ options.merge(call_options)
591
+ else
592
+ options.dup
593
+ end
594
+ end
595
+
596
+ # Expands and namespaces the cache key. May be overridden by
597
+ # cache stores to do additional normalization.
598
+ def normalize_key(key, options = nil)
599
+ namespace_key expanded_key(key), options
600
+ end
601
+
602
+ # Prefix the key with a namespace string:
603
+ #
604
+ # namespace_key 'foo', namespace: 'cache'
605
+ # # => 'cache:foo'
606
+ #
607
+ # With a namespace block:
608
+ #
609
+ # namespace_key 'foo', namespace: -> { 'cache' }
610
+ # # => 'cache:foo'
611
+ def namespace_key(key, options = nil)
612
+ options = merged_options(options)
613
+ namespace = options[:namespace]
614
+
615
+ if namespace.respond_to?(:call)
616
+ namespace = namespace.call
617
+ end
618
+
619
+ if namespace
620
+ "#{namespace}:#{key}"
621
+ else
622
+ key
623
+ end
624
+ end
625
+
626
+ # Expands key to be a consistent string value. Invokes +cache_key+ if
627
+ # object responds to +cache_key+. Otherwise, +to_param+ method will be
628
+ # called. If the key is a Hash, then keys will be sorted alphabetically.
629
+ def expanded_key(key)
630
+ return key.cache_key.to_s if key.respond_to?(:cache_key)
631
+
632
+ case key
633
+ when Array
634
+ if key.size > 1
635
+ key = key.collect { |element| expanded_key(element) }
636
+ else
637
+ key = key.first
638
+ end
639
+ when Hash
640
+ key = key.sort_by { |k, _| k.to_s }.collect { |k, v| "#{k}=#{v}" }
641
+ end
642
+
643
+ key.to_param
644
+ end
645
+
646
+ def normalize_version(key, options = nil)
647
+ (options && options[:version].try(:to_param)) || expanded_version(key)
648
+ end
649
+
650
+ def expanded_version(key)
651
+ case
652
+ when key.respond_to?(:cache_version) then key.cache_version.to_param
653
+ when key.is_a?(Array) then key.map { |element| expanded_version(element) }.compact.to_param
654
+ when key.respond_to?(:to_a) then expanded_version(key.to_a)
655
+ end
656
+ end
657
+
658
+ def instrument(operation, key, options = nil)
659
+ log { "Cache #{operation}: #{normalize_key(key, options)}#{options.blank? ? "" : " (#{options.inspect})"}" }
660
+
661
+ payload = { key: key }
662
+ payload.merge!(options) if options.is_a?(Hash)
663
+ ActiveSupport::Notifications.instrument("cache_#{operation}.active_support", payload) { yield(payload) }
664
+ end
665
+
666
+ def log
667
+ return unless logger && logger.debug? && !silence?
668
+ logger.debug(yield)
669
+ end
670
+
671
+ def handle_expired_entry(entry, key, options)
672
+ if entry && entry.expired?
673
+ race_ttl = options[:race_condition_ttl].to_i
674
+ if (race_ttl > 0) && (Time.now.to_f - entry.expires_at <= race_ttl)
675
+ # When an entry has a positive :race_condition_ttl defined, put the stale entry back into the cache
676
+ # for a brief period while the entry is being recalculated.
677
+ entry.expires_at = Time.now + race_ttl
678
+ write_entry(key, entry, expires_in: race_ttl * 2)
679
+ else
680
+ delete_entry(key, options)
681
+ end
682
+ entry = nil
683
+ end
684
+ entry
685
+ end
686
+
687
+ def get_entry_value(entry, name, options)
688
+ instrument(:fetch_hit, name, options) {}
689
+ entry.value
690
+ end
691
+
692
+ def save_block_result_to_cache(name, options)
693
+ result = instrument(:generate, name, options) do
694
+ yield(name)
695
+ end
696
+
697
+ write(name, result, options)
698
+ result
699
+ end
700
+ end
701
+
702
+ # This class is used to represent cache entries. Cache entries have a value, an optional
703
+ # expiration time, and an optional version. The expiration time is used to support the :race_condition_ttl option
704
+ # on the cache. The version is used to support the :version option on the cache for rejecting
705
+ # mismatches.
706
+ #
707
+ # Since cache entries in most instances will be serialized, the internals of this class are highly optimized
708
+ # using short instance variable names that are lazily defined.
709
+ class Entry # :nodoc:
710
+ attr_reader :version
711
+
712
+ DEFAULT_COMPRESS_LIMIT = 1.kilobyte
713
+
714
+ # Creates a new cache entry for the specified value. Options supported are
715
+ # +:compress+, +:compress_threshold+, +:version+ and +:expires_in+.
716
+ def initialize(value, compress: true, compress_threshold: DEFAULT_COMPRESS_LIMIT, version: nil, expires_in: nil, **)
717
+ @value = value
718
+ @version = version
719
+ @created_at = Time.now.to_f
720
+ @expires_in = expires_in && expires_in.to_f
721
+
722
+ compress!(compress_threshold) if compress
723
+ end
724
+
725
+ def value
726
+ compressed? ? uncompress(@value) : @value
727
+ end
728
+
729
+ def mismatched?(version)
730
+ @version && version && @version != version
731
+ end
732
+
733
+ # Checks if the entry is expired. The +expires_in+ parameter can override
734
+ # the value set when the entry was created.
735
+ def expired?
736
+ @expires_in && @created_at + @expires_in <= Time.now.to_f
737
+ end
738
+
739
+ def expires_at
740
+ @expires_in ? @created_at + @expires_in : nil
741
+ end
742
+
743
+ def expires_at=(value)
744
+ if value
745
+ @expires_in = value.to_f - @created_at
746
+ else
747
+ @expires_in = nil
748
+ end
749
+ end
750
+
751
+ # Returns the size of the cached value. This could be less than
752
+ # <tt>value.size</tt> if the data is compressed.
753
+ def size
754
+ case value
755
+ when NilClass
756
+ 0
757
+ when String
758
+ @value.bytesize
759
+ else
760
+ @s ||= Marshal.dump(@value).bytesize
761
+ end
762
+ end
763
+
764
+ # Duplicates the value in a class. This is used by cache implementations that don't natively
765
+ # serialize entries to protect against accidental cache modifications.
766
+ def dup_value!
767
+ if @value && !compressed? && !(@value.is_a?(Numeric) || @value == true || @value == false)
768
+ if @value.is_a?(String)
769
+ @value = @value.dup
770
+ else
771
+ @value = Marshal.load(Marshal.dump(@value))
772
+ end
773
+ end
774
+ end
775
+
776
+ private
777
+ def compress!(compress_threshold)
778
+ case @value
779
+ when nil, true, false, Numeric
780
+ uncompressed_size = 0
781
+ when String
782
+ uncompressed_size = @value.bytesize
783
+ else
784
+ serialized = Marshal.dump(@value)
785
+ uncompressed_size = serialized.bytesize
786
+ end
787
+
788
+ if uncompressed_size >= compress_threshold
789
+ serialized ||= Marshal.dump(@value)
790
+ compressed = Zlib::Deflate.deflate(serialized)
791
+
792
+ if compressed.bytesize < uncompressed_size
793
+ @value = compressed
794
+ @compressed = true
795
+ end
796
+ end
797
+ end
798
+
799
+ def compressed?
800
+ defined?(@compressed)
801
+ end
802
+
803
+ def uncompress(value)
804
+ Marshal.load(Zlib::Inflate.inflate(value))
805
+ end
806
+ end
807
+ end
808
+ end