pract6 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1558) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gem/credentials +2 -0
  4. data/.gem/ruby/2.3.0/bin/bundle +22 -0
  5. data/.gem/ruby/2.3.0/bin/bundler +22 -0
  6. data/.gem/ruby/2.3.0/bin/rackup +22 -0
  7. data/.gem/ruby/2.3.0/cache/activesupport-5.1.4.gem +0 -0
  8. data/.gem/ruby/2.3.0/cache/bundler-1.15.4.gem +0 -0
  9. data/.gem/ruby/2.3.0/cache/bundler-1.16.0.pre.3.gem +0 -0
  10. data/.gem/ruby/2.3.0/cache/coderay-1.1.2.gem +0 -0
  11. data/.gem/ruby/2.3.0/cache/concurrent-ruby-1.0.5.gem +0 -0
  12. data/.gem/ruby/2.3.0/cache/ffi-1.9.18.gem +0 -0
  13. data/.gem/ruby/2.3.0/cache/i18n-0.8.6.gem +0 -0
  14. data/.gem/ruby/2.3.0/cache/mini_portile2-2.3.0.gem +0 -0
  15. data/.gem/ruby/2.3.0/cache/nokogiri-1.8.1.gem +0 -0
  16. data/.gem/ruby/2.3.0/cache/rack-2.0.3.gem +0 -0
  17. data/.gem/ruby/2.3.0/cache/rack-test-0.7.0.gem +0 -0
  18. data/.gem/ruby/2.3.0/cache/rainbow-2.2.2.gem +0 -0
  19. data/.gem/ruby/2.3.0/cache/rdoc-5.1.0.gem +0 -0
  20. data/.gem/ruby/2.3.0/cache/rspec-support-3.7.0.gem +0 -0
  21. data/.gem/ruby/2.3.0/cache/thread_safe-0.3.6.gem +0 -0
  22. data/.gem/ruby/2.3.0/cache/tzinfo-1.2.3.gem +0 -0
  23. data/.gem/ruby/2.3.0/extensions/x86_64-linux/2.3.0/nokogiri-1.8.1/gem_make.out +5 -0
  24. data/.gem/ruby/2.3.0/extensions/x86_64-linux/2.3.0/rainbow-2.2.2/gem_make.out +8 -0
  25. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/CHANGELOG.md +749 -0
  26. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/MIT-LICENSE +20 -0
  27. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/README.rdoc +39 -0
  28. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support.rb +103 -0
  29. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/all.rb +3 -0
  30. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/array_inquirer.rb +46 -0
  31. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/backtrace_cleaner.rb +103 -0
  32. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/benchmarkable.rb +49 -0
  33. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/builder.rb +6 -0
  34. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache.rb +694 -0
  35. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/file_store.rb +195 -0
  36. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/mem_cache_store.rb +197 -0
  37. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/memory_store.rb +167 -0
  38. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/null_store.rb +41 -0
  39. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/strategy/local_cache.rb +163 -0
  40. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/strategy/local_cache_middleware.rb +43 -0
  41. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb +856 -0
  42. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/concern.rb +142 -0
  43. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/concurrency/share_lock.rb +225 -0
  44. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/configurable.rb +148 -0
  45. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext.rb +3 -0
  46. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array.rb +7 -0
  47. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/access.rb +90 -0
  48. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/conversions.rb +211 -0
  49. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/extract_options.rb +29 -0
  50. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/grouping.rb +107 -0
  51. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/inquiry.rb +17 -0
  52. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
  53. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/wrap.rb +46 -0
  54. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/benchmark.rb +14 -0
  55. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/big_decimal.rb +1 -0
  56. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/big_decimal/conversions.rb +12 -0
  57. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class.rb +2 -0
  58. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/attribute.rb +128 -0
  59. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/attribute_accessors.rb +4 -0
  60. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/subclasses.rb +55 -0
  61. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date.rb +5 -0
  62. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/acts_like.rb +8 -0
  63. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/blank.rb +12 -0
  64. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/calculations.rb +143 -0
  65. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/conversions.rb +95 -0
  66. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/zones.rb +6 -0
  67. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/calculations.rb +340 -0
  68. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/compatibility.rb +14 -0
  69. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/zones.rb +39 -0
  70. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time.rb +5 -0
  71. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/acts_like.rb +14 -0
  72. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/blank.rb +12 -0
  73. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/calculations.rb +209 -0
  74. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/compatibility.rb +16 -0
  75. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/conversions.rb +105 -0
  76. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/digest/uuid.rb +51 -0
  77. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/enumerable.rb +157 -0
  78. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/file.rb +1 -0
  79. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/file/atomic.rb +68 -0
  80. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash.rb +9 -0
  81. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/compact.rb +27 -0
  82. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/conversions.rb +261 -0
  83. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/deep_merge.rb +38 -0
  84. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/except.rb +22 -0
  85. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/indifferent_access.rb +22 -0
  86. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/keys.rb +170 -0
  87. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/reverse_merge.rb +22 -0
  88. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/slice.rb +48 -0
  89. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/transform_values.rb +30 -0
  90. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer.rb +3 -0
  91. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/inflections.rb +29 -0
  92. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/multiple.rb +10 -0
  93. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/time.rb +29 -0
  94. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel.rb +4 -0
  95. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  96. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/concern.rb +12 -0
  97. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/reporting.rb +43 -0
  98. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/singleton_class.rb +6 -0
  99. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/load_error.rb +14 -0
  100. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/marshal.rb +22 -0
  101. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module.rb +11 -0
  102. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/aliasing.rb +29 -0
  103. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/anonymous.rb +28 -0
  104. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attr_internal.rb +36 -0
  105. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attribute_accessors.rb +218 -0
  106. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +148 -0
  107. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/concerning.rb +135 -0
  108. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/delegation.rb +285 -0
  109. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/deprecation.rb +23 -0
  110. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/introspection.rb +60 -0
  111. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/reachable.rb +8 -0
  112. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/remove_method.rb +35 -0
  113. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/name_error.rb +31 -0
  114. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric.rb +4 -0
  115. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/bytes.rb +64 -0
  116. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/conversions.rb +138 -0
  117. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/inquiry.rb +26 -0
  118. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/time.rb +74 -0
  119. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object.rb +14 -0
  120. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/acts_like.rb +10 -0
  121. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/blank.rb +145 -0
  122. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/conversions.rb +4 -0
  123. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/deep_dup.rb +53 -0
  124. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/duplicable.rb +154 -0
  125. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/inclusion.rb +27 -0
  126. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/instance_variables.rb +28 -0
  127. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/json.rb +219 -0
  128. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/to_param.rb +1 -0
  129. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/to_query.rb +84 -0
  130. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/try.rb +146 -0
  131. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/with_options.rb +80 -0
  132. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range.rb +4 -0
  133. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/conversions.rb +31 -0
  134. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/each.rb +21 -0
  135. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/include_range.rb +23 -0
  136. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/overlaps.rb +8 -0
  137. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/regexp.rb +9 -0
  138. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/securerandom.rb +23 -0
  139. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string.rb +13 -0
  140. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/access.rb +104 -0
  141. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/behavior.rb +6 -0
  142. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/conversions.rb +57 -0
  143. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/exclude.rb +11 -0
  144. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/filters.rb +102 -0
  145. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/indent.rb +43 -0
  146. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/inflections.rb +240 -0
  147. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/inquiry.rb +13 -0
  148. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/multibyte.rb +53 -0
  149. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/output_safety.rb +259 -0
  150. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  151. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/strip.rb +23 -0
  152. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/zones.rb +14 -0
  153. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time.rb +5 -0
  154. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/acts_like.rb +8 -0
  155. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/calculations.rb +307 -0
  156. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/compatibility.rb +14 -0
  157. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/conversions.rb +70 -0
  158. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/zones.rb +111 -0
  159. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/uri.rb +24 -0
  160. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb +753 -0
  161. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies/autoload.rb +77 -0
  162. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies/interlock.rb +55 -0
  163. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation.rb +44 -0
  164. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/behaviors.rb +90 -0
  165. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/constant_accessor.rb +50 -0
  166. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/instance_delegator.rb +37 -0
  167. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/method_wrappers.rb +70 -0
  168. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/proxy_wrappers.rb +151 -0
  169. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/reporting.rb +112 -0
  170. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/descendants_tracker.rb +60 -0
  171. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration.rb +420 -0
  172. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration/iso8601_parser.rb +123 -0
  173. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration/iso8601_serializer.rb +53 -0
  174. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/evented_file_update_checker.rb +203 -0
  175. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/execution_wrapper.rb +126 -0
  176. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/executor.rb +6 -0
  177. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/file_update_checker.rb +161 -0
  178. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/gem_version.rb +15 -0
  179. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/gzip.rb +36 -0
  180. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/hash_with_indifferent_access.rb +341 -0
  181. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/i18n.rb +13 -0
  182. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/i18n_railtie.rb +116 -0
  183. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflections.rb +70 -0
  184. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector.rb +7 -0
  185. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/inflections.rb +244 -0
  186. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/methods.rb +391 -0
  187. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/transliterate.rb +109 -0
  188. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json.rb +2 -0
  189. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json/decoding.rb +74 -0
  190. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json/encoding.rb +128 -0
  191. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/key_generator.rb +71 -0
  192. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/lazy_load_hooks.rb +76 -0
  193. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/locale/en.yml +135 -0
  194. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/log_subscriber.rb +111 -0
  195. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/log_subscriber/test_helper.rb +104 -0
  196. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger.rb +106 -0
  197. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger_silence.rb +28 -0
  198. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger_thread_safe_level.rb +31 -0
  199. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/message_encryptor.rb +156 -0
  200. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/message_verifier.rb +134 -0
  201. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte.rb +21 -0
  202. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte/chars.rb +233 -0
  203. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte/unicode.rb +392 -0
  204. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications.rb +214 -0
  205. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications/fanout.rb +157 -0
  206. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications/instrumenter.rb +91 -0
  207. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper.rb +369 -0
  208. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_converter.rb +182 -0
  209. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_currency_converter.rb +44 -0
  210. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_delimited_converter.rb +27 -0
  211. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_human_converter.rb +66 -0
  212. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_human_size_converter.rb +57 -0
  213. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_percentage_converter.rb +12 -0
  214. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_phone_converter.rb +56 -0
  215. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_rounded_converter.rb +72 -0
  216. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/rounding_helper.rb +64 -0
  217. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/option_merger.rb +25 -0
  218. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/ordered_hash.rb +48 -0
  219. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/ordered_options.rb +83 -0
  220. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/per_thread_registry.rb +58 -0
  221. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/proxy_object.rb +13 -0
  222. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/rails.rb +33 -0
  223. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/railtie.rb +51 -0
  224. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/reloader.rb +129 -0
  225. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/rescuable.rb +173 -0
  226. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/security_utils.rb +27 -0
  227. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/string_inquirer.rb +32 -0
  228. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/subscriber.rb +124 -0
  229. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/tagged_logging.rb +77 -0
  230. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/test_case.rb +71 -0
  231. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/assertions.rb +197 -0
  232. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/autorun.rb +5 -0
  233. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/constant_lookup.rb +49 -0
  234. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/declarative.rb +26 -0
  235. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/deprecation.rb +37 -0
  236. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/file_fixtures.rb +34 -0
  237. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/isolation.rb +106 -0
  238. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/method_call_assertions.rb +41 -0
  239. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/setup_and_teardown.rb +50 -0
  240. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/stream.rb +42 -0
  241. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/tagged_logging.rb +25 -0
  242. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/time_helpers.rb +170 -0
  243. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/time.rb +18 -0
  244. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/time_with_zone.rb +513 -0
  245. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/values/time_zone.rb +550 -0
  246. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/values/unicode_tables.dat +0 -0
  247. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/version.rb +8 -0
  248. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini.rb +207 -0
  249. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/jdom.rb +181 -0
  250. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/libxml.rb +78 -0
  251. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/libxmlsax.rb +81 -0
  252. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/nokogiri.rb +81 -0
  253. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/nokogirisax.rb +84 -0
  254. data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/rexml.rb +128 -0
  255. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/CHANGELOG.md +2833 -0
  256. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/LICENSE.md +23 -0
  257. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/README.md +59 -0
  258. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundle +31 -0
  259. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundle_ruby +60 -0
  260. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundler +4 -0
  261. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler.rb +543 -0
  262. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/build_metadata.rb +38 -0
  263. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/capistrano.rb +22 -0
  264. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli.rb +746 -0
  265. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/add.rb +25 -0
  266. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/binstubs.rb +43 -0
  267. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/cache.rb +36 -0
  268. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/check.rb +38 -0
  269. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/clean.rb +25 -0
  270. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/common.rb +102 -0
  271. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/config.rb +119 -0
  272. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/console.rb +43 -0
  273. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/doctor.rb +94 -0
  274. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/exec.rb +105 -0
  275. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/gem.rb +249 -0
  276. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/info.rb +50 -0
  277. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/init.rb +46 -0
  278. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/inject.rb +60 -0
  279. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/install.rb +214 -0
  280. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/issue.rb +40 -0
  281. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/list.rb +22 -0
  282. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/lock.rb +63 -0
  283. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/open.rb +26 -0
  284. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/outdated.rb +260 -0
  285. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/package.rb +49 -0
  286. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/platform.rb +46 -0
  287. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/plugin.rb +24 -0
  288. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/pristine.rb +43 -0
  289. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/show.rb +75 -0
  290. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/update.rb +89 -0
  291. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/viz.rb +31 -0
  292. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client.rb +109 -0
  293. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client/cache.rb +120 -0
  294. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client/updater.rb +107 -0
  295. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compatibility_guard.rb +14 -0
  296. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/constants.rb +7 -0
  297. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/current_ruby.rb +86 -0
  298. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/definition.rb +985 -0
  299. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dep_proxy.rb +48 -0
  300. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dependency.rb +138 -0
  301. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/deployment.rb +69 -0
  302. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/deprecate.rb +33 -0
  303. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dsl.rb +599 -0
  304. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/endpoint_specification.rb +141 -0
  305. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/env.rb +153 -0
  306. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/environment_preserver.rb +59 -0
  307. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/errors.rb +158 -0
  308. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/feature_flag.rb +67 -0
  309. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher.rb +312 -0
  310. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/base.rb +52 -0
  311. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/compact_index.rb +126 -0
  312. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/dependency.rb +82 -0
  313. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/downloader.rb +79 -0
  314. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/index.rb +52 -0
  315. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/friendly_errors.rb +127 -0
  316. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_helper.rb +202 -0
  317. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_helpers.rb +101 -0
  318. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_remote_fetcher.rb +43 -0
  319. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_tasks.rb +7 -0
  320. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_version_promoter.rb +176 -0
  321. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gemdeps.rb +29 -0
  322. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/graph.rb +152 -0
  323. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/index.rb +213 -0
  324. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/injector.rb +94 -0
  325. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/inline.rb +74 -0
  326. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer.rb +281 -0
  327. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/gem_installer.rb +78 -0
  328. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/parallel_installer.rb +228 -0
  329. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/standalone.rb +53 -0
  330. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lazy_specification.rb +123 -0
  331. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lockfile_generator.rb +95 -0
  332. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lockfile_parser.rb +256 -0
  333. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/match_platform.rb +24 -0
  334. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/mirror.rb +223 -0
  335. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin.rb +285 -0
  336. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/api.rb +81 -0
  337. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/api/source.rb +307 -0
  338. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/dsl.rb +53 -0
  339. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/index.rb +157 -0
  340. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer.rb +96 -0
  341. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer/git.rb +38 -0
  342. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer/rubygems.rb +27 -0
  343. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/source_list.rb +27 -0
  344. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/process_lock.rb +24 -0
  345. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/psyched_yaml.rb +28 -0
  346. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/remote_specification.rb +114 -0
  347. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/resolver.rb +367 -0
  348. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/resolver/spec_group.rb +111 -0
  349. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/retry.rb +66 -0
  350. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ruby_dsl.rb +18 -0
  351. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ruby_version.rb +152 -0
  352. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_ext.rb +210 -0
  353. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_gem_installer.rb +99 -0
  354. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_integration.rb +891 -0
  355. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/runtime.rb +318 -0
  356. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/settings.rb +442 -0
  357. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/settings/validator.rb +79 -0
  358. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/setup.rb +28 -0
  359. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/shared_helpers.rb +351 -0
  360. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/similarity_detector.rb +63 -0
  361. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source.rb +94 -0
  362. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/gemspec.rb +18 -0
  363. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/git.rb +329 -0
  364. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/git/git_proxy.rb +256 -0
  365. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/metadata.rb +63 -0
  366. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/path.rb +249 -0
  367. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/path/installer.rb +74 -0
  368. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/rubygems.rb +532 -0
  369. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/rubygems/remote.rb +66 -0
  370. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source_list.rb +186 -0
  371. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/spec_set.rb +189 -0
  372. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/.document +1 -0
  373. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/certificate_manager.rb +66 -0
  374. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  375. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
  376. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
  377. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/stub_specification.rb +108 -0
  378. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable +21 -0
  379. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable.bundler +105 -0
  380. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable.standalone +14 -0
  381. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Gemfile +7 -0
  382. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/gems.rb +8 -0
  383. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/.travis.yml.tt +5 -0
  384. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
  385. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/Gemfile.tt +6 -0
  386. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
  387. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/README.md.tt +47 -0
  388. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/Rakefile.tt +29 -0
  389. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/bin/console.tt +14 -0
  390. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/bin/setup.tt +8 -0
  391. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  392. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
  393. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  394. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  395. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/gitignore.tt +20 -0
  396. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
  397. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  398. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/newgem.gemspec.tt +49 -0
  399. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/rspec.tt +3 -0
  400. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +9 -0
  401. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -0
  402. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
  403. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
  404. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui.rb +9 -0
  405. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/rg_proxy.rb +19 -0
  406. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/shell.rb +144 -0
  407. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/silent.rb +69 -0
  408. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/uri_credentials_filter.rb +37 -0
  409. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
  410. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
  411. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
  412. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
  413. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +81 -0
  414. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
  415. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
  416. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
  417. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
  418. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
  419. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
  420. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
  421. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
  422. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
  423. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +126 -0
  424. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +138 -0
  425. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
  426. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +101 -0
  427. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +67 -0
  428. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
  429. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +46 -0
  430. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
  431. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +27 -0
  432. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1233 -0
  433. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +129 -0
  434. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor.rb +509 -0
  435. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions.rb +321 -0
  436. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +104 -0
  437. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +60 -0
  438. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
  439. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
  440. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +364 -0
  441. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
  442. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/base.rb +679 -0
  443. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/command.rb +135 -0
  444. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +97 -0
  445. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
  446. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
  447. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/error.rb +32 -0
  448. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
  449. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/invocation.rb +177 -0
  450. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
  451. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
  452. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  453. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  454. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +70 -0
  455. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
  456. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/option.rb +146 -0
  457. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/options.rb +221 -0
  458. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
  459. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/runner.rb +324 -0
  460. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
  461. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +437 -0
  462. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
  463. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
  464. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/util.rb +268 -0
  465. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
  466. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_fileutils.rb +9 -0
  467. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_molinillo.rb +4 -0
  468. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_persistent.rb +52 -0
  469. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_thor.rb +8 -0
  470. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/version.rb +28 -0
  471. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/version_ranges.rb +76 -0
  472. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vlad.rb +17 -0
  473. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/worker.rb +106 -0
  474. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/yaml_serializer.rb +90 -0
  475. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.1 +43 -0
  476. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.1.txt +40 -0
  477. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.ronn +29 -0
  478. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.1 +40 -0
  479. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.1.txt +48 -0
  480. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.ronn +43 -0
  481. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.1 +31 -0
  482. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.1.txt +32 -0
  483. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.ronn +26 -0
  484. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.1 +24 -0
  485. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.1.txt +26 -0
  486. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.ronn +18 -0
  487. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.1 +455 -0
  488. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.1.txt +491 -0
  489. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.ronn +372 -0
  490. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.1 +165 -0
  491. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.1.txt +178 -0
  492. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.ronn +152 -0
  493. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.1 +80 -0
  494. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.1.txt +91 -0
  495. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.ronn +78 -0
  496. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.1 +20 -0
  497. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.1.txt +21 -0
  498. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.ronn +17 -0
  499. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.1 +20 -0
  500. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.1.txt +24 -0
  501. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.ronn +18 -0
  502. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.1 +33 -0
  503. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.1.txt +32 -0
  504. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.ronn +22 -0
  505. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.1 +305 -0
  506. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.1.txt +385 -0
  507. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.ronn +369 -0
  508. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.1 +20 -0
  509. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.1.txt +21 -0
  510. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.ronn +15 -0
  511. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.1 +84 -0
  512. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.1.txt +93 -0
  513. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.ronn +94 -0
  514. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.1 +32 -0
  515. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.1.txt +29 -0
  516. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.ronn +19 -0
  517. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.1 +151 -0
  518. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.1.txt +127 -0
  519. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.ronn +107 -0
  520. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.1 +55 -0
  521. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.1.txt +79 -0
  522. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.ronn +72 -0
  523. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.1 +61 -0
  524. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.1.txt +57 -0
  525. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.ronn +42 -0
  526. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.1 +34 -0
  527. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.1.txt +44 -0
  528. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.ronn +34 -0
  529. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.1 +23 -0
  530. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.1.txt +25 -0
  531. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.ronn +20 -0
  532. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.1 +390 -0
  533. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.1.txt +386 -0
  534. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.ronn +346 -0
  535. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.1 +39 -0
  536. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.1.txt +38 -0
  537. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.ronn +30 -0
  538. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.1 +132 -0
  539. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.1.txt +113 -0
  540. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.ronn +108 -0
  541. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5 +679 -0
  542. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5.ronn +506 -0
  543. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5.txt +636 -0
  544. data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/index.txt +23 -0
  545. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/CHANGELOG.md +387 -0
  546. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/LICENSE.txt +21 -0
  547. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/README.md +247 -0
  548. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent.rb +130 -0
  549. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/agent.rb +587 -0
  550. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/array.rb +39 -0
  551. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/async.rb +445 -0
  552. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atom.rb +222 -0
  553. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
  554. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_boolean.rb +122 -0
  555. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_fixnum.rb +139 -0
  556. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_reference.rb +51 -0
  557. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/count_down_latch.rb +100 -0
  558. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
  559. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/event.rb +109 -0
  560. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_count_down_latch.rb +39 -0
  561. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
  562. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_boolean.rb +60 -0
  563. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
  564. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_count_down_latch.rb +43 -0
  565. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
  566. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/read_write_lock.rb +253 -0
  567. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/reentrant_read_write_lock.rb +377 -0
  568. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
  569. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/semaphore.rb +145 -0
  570. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/thread_local_var.rb +104 -0
  571. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/concurrent_update_error.rb +8 -0
  572. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/direct_update.rb +81 -0
  573. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby+truffle.rb +2 -0
  574. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby.rb +16 -0
  575. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/mutex_atomic.rb +61 -0
  576. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  577. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/rbx.rb +22 -0
  578. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/ruby.rb +32 -0
  579. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomics.rb +53 -0
  580. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  581. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  582. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  583. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
  584. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
  585. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb +141 -0
  586. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
  587. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  588. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
  589. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/deprecation.rb +34 -0
  590. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/dereferenceable.rb +73 -0
  591. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/logging.rb +27 -0
  592. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/obligation.rb +220 -0
  593. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/observable.rb +110 -0
  594. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/configuration.rb +188 -0
  595. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/constants.rb +8 -0
  596. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/dataflow.rb +80 -0
  597. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/delay.rb +197 -0
  598. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/edge.rb +26 -0
  599. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/errors.rb +69 -0
  600. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/exchanger.rb +356 -0
  601. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/abstract_executor_service.rb +134 -0
  602. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/cached_thread_pool.rb +62 -0
  603. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/executor_service.rb +185 -0
  604. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
  605. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/immediate_executor.rb +66 -0
  606. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
  607. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_executor_service.rb +100 -0
  608. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
  609. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_thread_pool_executor.rb +120 -0
  610. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_executor_service.rb +78 -0
  611. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
  612. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
  613. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/safe_task_executor.rb +35 -0
  614. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serial_executor_service.rb +34 -0
  615. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution.rb +107 -0
  616. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
  617. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/simple_executor_service.rb +100 -0
  618. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/single_thread_executor.rb +56 -0
  619. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/thread_pool_executor.rb +87 -0
  620. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/timer_set.rb +175 -0
  621. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executors.rb +20 -0
  622. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/future.rb +138 -0
  623. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/hash.rb +36 -0
  624. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/immutable_struct.rb +93 -0
  625. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/ivar.rb +208 -0
  626. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/lazy_register.rb +81 -0
  627. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/map.rb +240 -0
  628. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/maybe.rb +229 -0
  629. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mutable_struct.rb +228 -0
  630. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mvar.rb +242 -0
  631. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/options.rb +42 -0
  632. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/promise.rb +547 -0
  633. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/scheduled_task.rb +318 -0
  634. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/settable_struct.rb +128 -0
  635. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization.rb +31 -0
  636. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
  637. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_object.rb +24 -0
  638. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_struct.rb +157 -0
  639. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/condition.rb +58 -0
  640. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
  641. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_object.rb +44 -0
  642. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lock.rb +34 -0
  643. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lockable_object.rb +74 -0
  644. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_lockable_object.rb +71 -0
  645. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_object.rb +43 -0
  646. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/object.rb +153 -0
  647. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
  648. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_object.rb +48 -0
  649. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_lockable_object.rb +9 -0
  650. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_object.rb +31 -0
  651. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/volatile.rb +34 -0
  652. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
  653. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util.rb +16 -0
  654. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/adder.rb +74 -0
  655. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/array_hash_rbx.rb +30 -0
  656. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
  657. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  658. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/striped64.rb +241 -0
  659. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/volatile.rb +75 -0
  660. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  661. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/timer_task.rb +331 -0
  662. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tuple.rb +86 -0
  663. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tvar.rb +258 -0
  664. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/at_exit.rb +97 -0
  665. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/engine.rb +56 -0
  666. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/monotonic_time.rb +58 -0
  667. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_extension_loader.rb +73 -0
  668. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_integer.rb +53 -0
  669. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/processor_counter.rb +160 -0
  670. data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/version.rb +4 -0
  671. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/MIT-LICENSE +20 -0
  672. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/README.md +84 -0
  673. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-3.2.x +9 -0
  674. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.0.x +9 -0
  675. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.1.x +9 -0
  676. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.2.x +9 -0
  677. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-5.0.x +9 -0
  678. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-master +9 -0
  679. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n.rb +343 -0
  680. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend.rb +18 -0
  681. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/base.rb +230 -0
  682. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/cache.rb +114 -0
  683. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/cascade.rb +54 -0
  684. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/chain.rb +97 -0
  685. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/fallbacks.rb +84 -0
  686. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/flatten.rb +113 -0
  687. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/gettext.rb +81 -0
  688. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/interpolation_compiler.rb +121 -0
  689. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/key_value.rb +100 -0
  690. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/memoize.rb +46 -0
  691. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/metadata.rb +69 -0
  692. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/pluralization.rb +53 -0
  693. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/simple.rb +87 -0
  694. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/transliterator.rb +106 -0
  695. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/config.rb +142 -0
  696. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/hash.rb +29 -0
  697. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/kernel/suppress_warnings.rb +8 -0
  698. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/string/interpolate.rb +9 -0
  699. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/exceptions.rb +104 -0
  700. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext.rb +26 -0
  701. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext/helpers.rb +73 -0
  702. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext/po_parser.rb +329 -0
  703. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/interpolate/ruby.rb +37 -0
  704. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale.rb +6 -0
  705. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/fallbacks.rb +96 -0
  706. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag.rb +28 -0
  707. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/parents.rb +22 -0
  708. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/rfc4646.rb +74 -0
  709. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/simple.rb +39 -0
  710. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests.rb +12 -0
  711. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/basics.rb +60 -0
  712. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/defaults.rb +48 -0
  713. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/interpolation.rb +153 -0
  714. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/link.rb +56 -0
  715. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization.rb +19 -0
  716. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/date.rb +95 -0
  717. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/date_time.rb +82 -0
  718. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/procs.rb +116 -0
  719. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/time.rb +81 -0
  720. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/lookup.rb +81 -0
  721. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/pluralization.rb +35 -0
  722. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/procs.rb +55 -0
  723. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/version.rb +3 -0
  724. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/all_features_test.rb +58 -0
  725. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/cascade_test.rb +28 -0
  726. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/chain_test.rb +24 -0
  727. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/fallbacks_test.rb +30 -0
  728. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/key_value_test.rb +24 -0
  729. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/memoize_test.rb +56 -0
  730. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/override_test.rb +42 -0
  731. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/pluralization_test.rb +30 -0
  732. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/simple_test.rb +28 -0
  733. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/cache_test.rb +108 -0
  734. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/cascade_test.rb +86 -0
  735. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/chain_test.rb +91 -0
  736. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/exceptions_test.rb +36 -0
  737. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/fallbacks_test.rb +206 -0
  738. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/interpolation_compiler_test.rb +118 -0
  739. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/key_value_test.rb +43 -0
  740. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/memoize_test.rb +47 -0
  741. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/metadata_test.rb +48 -0
  742. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/pluralization_test.rb +45 -0
  743. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/simple_test.rb +84 -0
  744. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/transliterator_test.rb +84 -0
  745. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/core_ext/hash_test.rb +42 -0
  746. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/gettext/api_test.rb +214 -0
  747. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/gettext/backend_test.rb +92 -0
  748. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/exceptions_test.rb +117 -0
  749. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/gettext_plural_keys_test.rb +20 -0
  750. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/interpolate_test.rb +91 -0
  751. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/load_path_test.rb +34 -0
  752. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n_test.rb +446 -0
  753. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/fallbacks_test.rb +133 -0
  754. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/tag/rfc4646_test.rb +143 -0
  755. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/tag/simple_test.rb +32 -0
  756. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/run_all.rb +20 -0
  757. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/de.po +82 -0
  758. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/en.rb +3 -0
  759. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/en.yml +3 -0
  760. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/invalid/empty.yml +0 -0
  761. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/invalid/syntax.yml +4 -0
  762. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/plurals.rb +113 -0
  763. data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_helper.rb +55 -0
  764. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.concourse.yml +83 -0
  765. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.gitignore +7 -0
  766. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.travis.yml +15 -0
  767. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/CHANGELOG.md +202 -0
  768. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/Gemfile +4 -0
  769. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/LICENSE.txt +20 -0
  770. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/README.md +245 -0
  771. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/Rakefile +29 -0
  772. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/appveyor.yml +25 -0
  773. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/mini_portile.yml +160 -0
  774. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/tasks/rake-test/task.ps1 +13 -0
  775. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/tasks/rake-test/task.sh +13 -0
  776. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2.rb +3 -0
  777. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/mini_portile.rb +551 -0
  778. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
  779. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/version.rb +3 -0
  780. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/mini_portile2.gemspec +42 -0
  781. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/git/config +4 -0
  782. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data +1 -0
  783. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data.asc +9 -0
  784. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
  785. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/patch 1.diff +7 -0
  786. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test mini portile-1.0.0/configure +11 -0
  787. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
  788. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-cmake-1.0/hello.c +4 -0
  789. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-download-archive.tar.gz +1 -0
  790. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/helper.rb +60 -0
  791. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_cmake.rb +64 -0
  792. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_cook.rb +115 -0
  793. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_digest.rb +215 -0
  794. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_download.rb +71 -0
  795. data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_proxy.rb +121 -0
  796. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.autotest +22 -0
  797. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.cross_rubies +6 -0
  798. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.editorconfig +17 -0
  799. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.gemtest +0 -0
  800. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.travis.yml +63 -0
  801. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/CHANGELOG.md +1280 -0
  802. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/CONTRIBUTING.md +42 -0
  803. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/C_CODING_STYLE.rdoc +33 -0
  804. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Gemfile +23 -0
  805. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Gemfile-libxml-ruby +3 -0
  806. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/LICENSE-DEPENDENCIES.md +1612 -0
  807. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/LICENSE.md +31 -0
  808. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Manifest.txt +362 -0
  809. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/README.md +173 -0
  810. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ROADMAP.md +111 -0
  811. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Rakefile +357 -0
  812. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/STANDARD_RESPONSES.md +47 -0
  813. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Y_U_NO_GEMSPEC.md +155 -0
  814. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/appveyor.yml +24 -0
  815. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/bin/nokogiri +118 -0
  816. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/build_all +44 -0
  817. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/dependencies.yml +69 -0
  818. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/depend +358 -0
  819. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/extconf.rb +675 -0
  820. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_document.c +170 -0
  821. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_document.h +10 -0
  822. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_element_description.c +279 -0
  823. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_element_description.h +10 -0
  824. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_entity_lookup.c +32 -0
  825. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_entity_lookup.h +8 -0
  826. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_parser_context.c +116 -0
  827. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_parser_context.h +11 -0
  828. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_push_parser.c +87 -0
  829. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_push_parser.h +9 -0
  830. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/nokogiri.c +141 -0
  831. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/nokogiri.h +121 -0
  832. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attr.c +98 -0
  833. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attr.h +9 -0
  834. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attribute_decl.c +70 -0
  835. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attribute_decl.h +9 -0
  836. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_cdata.c +60 -0
  837. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_cdata.h +9 -0
  838. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_comment.c +69 -0
  839. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_comment.h +9 -0
  840. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document.c +606 -0
  841. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document.h +23 -0
  842. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document_fragment.c +48 -0
  843. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document_fragment.h +10 -0
  844. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_dtd.c +202 -0
  845. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_dtd.h +10 -0
  846. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_content.c +123 -0
  847. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_content.h +10 -0
  848. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_decl.c +69 -0
  849. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_decl.h +9 -0
  850. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_encoding_handler.c +79 -0
  851. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_encoding_handler.h +8 -0
  852. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_decl.c +110 -0
  853. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_decl.h +10 -0
  854. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_reference.c +52 -0
  855. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_reference.h +9 -0
  856. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_io.c +60 -0
  857. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_io.h +11 -0
  858. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  859. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  860. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_namespace.c +117 -0
  861. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_namespace.h +13 -0
  862. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node.c +1682 -0
  863. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node.h +13 -0
  864. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node_set.c +485 -0
  865. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node_set.h +13 -0
  866. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_processing_instruction.c +56 -0
  867. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_processing_instruction.h +9 -0
  868. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_reader.c +668 -0
  869. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_reader.h +10 -0
  870. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_relax_ng.c +161 -0
  871. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_relax_ng.h +9 -0
  872. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser.c +310 -0
  873. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser.h +39 -0
  874. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser_context.c +262 -0
  875. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser_context.h +10 -0
  876. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_push_parser.c +159 -0
  877. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_push_parser.h +9 -0
  878. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_schema.c +205 -0
  879. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_schema.h +9 -0
  880. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_syntax_error.c +64 -0
  881. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_syntax_error.h +13 -0
  882. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_text.c +52 -0
  883. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_text.h +9 -0
  884. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_xpath_context.c +298 -0
  885. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_xpath_context.h +10 -0
  886. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xslt_stylesheet.c +270 -0
  887. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xslt_stylesheet.h +14 -0
  888. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri.rb +144 -0
  889. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css.rb +27 -0
  890. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/node.rb +52 -0
  891. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser.rb +732 -0
  892. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser.y +261 -0
  893. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser_extras.rb +91 -0
  894. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/syntax_error.rb +7 -0
  895. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/tokenizer.rb +152 -0
  896. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/tokenizer.rex +55 -0
  897. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/xpath_visitor.rb +223 -0
  898. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/decorators/slop.rb +42 -0
  899. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html.rb +37 -0
  900. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/builder.rb +35 -0
  901. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/document.rb +335 -0
  902. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/document_fragment.rb +39 -0
  903. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/element_description.rb +23 -0
  904. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/element_description_defaults.rb +671 -0
  905. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/entity_lookup.rb +13 -0
  906. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/parser.rb +62 -0
  907. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/parser_context.rb +16 -0
  908. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/push_parser.rb +36 -0
  909. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/syntax_error.rb +4 -0
  910. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/version.rb +109 -0
  911. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml.rb +74 -0
  912. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/attr.rb +14 -0
  913. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/attribute_decl.rb +18 -0
  914. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/builder.rb +443 -0
  915. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/cdata.rb +11 -0
  916. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/character_data.rb +7 -0
  917. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/document.rb +285 -0
  918. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/document_fragment.rb +149 -0
  919. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/dtd.rb +32 -0
  920. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/element_content.rb +36 -0
  921. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/element_decl.rb +13 -0
  922. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/entity_decl.rb +19 -0
  923. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/namespace.rb +13 -0
  924. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node.rb +834 -0
  925. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node/save_options.rb +61 -0
  926. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node_set.rb +327 -0
  927. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/notation.rb +6 -0
  928. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/parse_options.rb +120 -0
  929. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp.rb +2 -0
  930. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp/character_data.rb +18 -0
  931. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp/node.rb +56 -0
  932. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/processing_instruction.rb +8 -0
  933. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/reader.rb +112 -0
  934. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/relax_ng.rb +32 -0
  935. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax.rb +4 -0
  936. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/document.rb +171 -0
  937. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/parser.rb +122 -0
  938. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  939. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  940. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/schema.rb +63 -0
  941. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/searchable.rb +230 -0
  942. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/syntax_error.rb +70 -0
  943. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/text.rb +9 -0
  944. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath.rb +10 -0
  945. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  946. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath_context.rb +16 -0
  947. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xslt.rb +56 -0
  948. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xslt/stylesheet.rb +25 -0
  949. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/xsd/xmlparser/nokogiri.rb +102 -0
  950. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/patches/sort-patches-by-date +25 -0
  951. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ports/archives/libxml2-2.9.5.tar.gz +0 -0
  952. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ports/archives/libxslt-1.1.30.tar.gz +0 -0
  953. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/suppressions/README.txt +1 -0
  954. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/suppressions/nokogiri_ruby-2.supp +10 -0
  955. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/tasks/test.rb +100 -0
  956. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_nthiness.rb +226 -0
  957. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_parser.rb +369 -0
  958. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_tokenizer.rb +215 -0
  959. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_xpath_visitor.rb +96 -0
  960. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/decorators/test_slop.rb +23 -0
  961. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/2ch.html +108 -0
  962. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/GH_1042.html +18 -0
  963. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/address_book.rlx +12 -0
  964. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/address_book.xml +10 -0
  965. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/atom.xml +344 -0
  966. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/bar/bar.xsd +4 -0
  967. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/bogus.xml +0 -0
  968. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/dont_hurt_em_why.xml +422 -0
  969. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/encoding.html +82 -0
  970. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/encoding.xhtml +84 -0
  971. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/exslt.xml +8 -0
  972. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/exslt.xslt +35 -0
  973. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/foo/foo.xsd +4 -0
  974. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/metacharset.html +10 -0
  975. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/namespace_pressure_test.xml +1684 -0
  976. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/noencoding.html +47 -0
  977. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/po.xml +32 -0
  978. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/po.xsd +66 -0
  979. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/saml20assertion_schema.xsd +283 -0
  980. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/saml20protocol_schema.xsd +302 -0
  981. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/xenc_schema.xsd +146 -0
  982. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/xmldsig_schema.xsd +318 -0
  983. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis.html +10 -0
  984. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis.xml +5 -0
  985. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis_no_charset.html +9 -0
  986. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/slow-xpath.xml +25509 -0
  987. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/snuggles.xml +3 -0
  988. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.dtd +10 -0
  989. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.xml +59 -0
  990. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.xslt +32 -0
  991. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/bar.xml +2 -0
  992. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/document.dtd +4 -0
  993. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/document.xml +6 -0
  994. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/tlm.html +851 -0
  995. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/to_be_xincluded.xml +2 -0
  996. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/valid_bar.xml +2 -0
  997. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/xinclude.xml +4 -0
  998. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/helper.rb +191 -0
  999. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_parser.rb +168 -0
  1000. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_parser_context.rb +46 -0
  1001. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_push_parser.rb +87 -0
  1002. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_builder.rb +164 -0
  1003. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document.rb +712 -0
  1004. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document_encoding.rb +143 -0
  1005. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document_fragment.rb +304 -0
  1006. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_element_description.rb +105 -0
  1007. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_named_characters.rb +14 -0
  1008. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_node.rb +212 -0
  1009. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_node_encoding.rb +85 -0
  1010. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
  1011. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_aliased_default.rb +24 -0
  1012. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
  1013. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_cloned_doc.rb +31 -0
  1014. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
  1015. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_parsed_doc.rb +80 -0
  1016. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_preservation.rb +31 -0
  1017. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_convert_xpath.rb +135 -0
  1018. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_css_cache.rb +45 -0
  1019. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_encoding_handler.rb +48 -0
  1020. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_memory_leak.rb +156 -0
  1021. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_nokogiri.rb +138 -0
  1022. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_soap4r_sax.rb +52 -0
  1023. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_xslt_transforms.rb +314 -0
  1024. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/node/test_save_options.rb +28 -0
  1025. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/node/test_subclass.rb +44 -0
  1026. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_parser.rb +394 -0
  1027. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_parser_context.rb +115 -0
  1028. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_push_parser.rb +205 -0
  1029. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_attr.rb +74 -0
  1030. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_attribute_decl.rb +86 -0
  1031. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_builder.rb +341 -0
  1032. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_c14n.rb +180 -0
  1033. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_cdata.rb +54 -0
  1034. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_comment.rb +40 -0
  1035. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document.rb +982 -0
  1036. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document_encoding.rb +31 -0
  1037. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document_fragment.rb +298 -0
  1038. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_dtd.rb +187 -0
  1039. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_dtd_encoding.rb +31 -0
  1040. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_element_content.rb +56 -0
  1041. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_element_decl.rb +73 -0
  1042. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_entity_decl.rb +122 -0
  1043. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_entity_reference.rb +251 -0
  1044. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_namespace.rb +96 -0
  1045. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node.rb +1242 -0
  1046. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_attributes.rb +115 -0
  1047. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_encoding.rb +69 -0
  1048. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_inheritance.rb +32 -0
  1049. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_reparenting.rb +563 -0
  1050. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_set.rb +782 -0
  1051. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_parse_options.rb +64 -0
  1052. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_processing_instruction.rb +30 -0
  1053. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_reader.rb +608 -0
  1054. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_reader_encoding.rb +134 -0
  1055. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_relax_ng.rb +60 -0
  1056. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_schema.rb +142 -0
  1057. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_syntax_error.rb +36 -0
  1058. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_text.rb +60 -0
  1059. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_unparented_node.rb +483 -0
  1060. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_xinclude.rb +83 -0
  1061. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_xpath.rb +462 -0
  1062. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xslt/test_custom_functions.rb +133 -0
  1063. data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xslt/test_exception_handling.rb +37 -0
  1064. data/.gem/ruby/2.3.0/gems/rack-2.0.3/COPYING +18 -0
  1065. data/.gem/ruby/2.3.0/gems/rack-2.0.3/HISTORY.md +505 -0
  1066. data/.gem/ruby/2.3.0/gems/rack-2.0.3/README.rdoc +304 -0
  1067. data/.gem/ruby/2.3.0/gems/rack-2.0.3/Rakefile +116 -0
  1068. data/.gem/ruby/2.3.0/gems/rack-2.0.3/SPEC +263 -0
  1069. data/.gem/ruby/2.3.0/gems/rack-2.0.3/bin/rackup +4 -0
  1070. data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack.png +0 -0
  1071. data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack.svg +150 -0
  1072. data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack_logo.svg +164 -0
  1073. data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rdoc.css +412 -0
  1074. data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/lobster.ru +4 -0
  1075. data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/protectedlobster.rb +14 -0
  1076. data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/protectedlobster.ru +8 -0
  1077. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack.rb +147 -0
  1078. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/abstract/handler.rb +37 -0
  1079. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/abstract/request.rb +47 -0
  1080. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/basic.rb +58 -0
  1081. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/md5.rb +129 -0
  1082. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/nonce.rb +51 -0
  1083. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/params.rb +52 -0
  1084. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/request.rb +41 -0
  1085. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/body_proxy.rb +44 -0
  1086. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/builder.rb +164 -0
  1087. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/cascade.rb +52 -0
  1088. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/chunked.rb +69 -0
  1089. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/common_logger.rb +72 -0
  1090. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/conditional_get.rb +79 -0
  1091. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/config.rb +20 -0
  1092. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/content_length.rb +37 -0
  1093. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/content_type.rb +29 -0
  1094. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/deflater.rb +119 -0
  1095. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/directory.rb +179 -0
  1096. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/etag.rb +74 -0
  1097. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/events.rb +154 -0
  1098. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/file.rb +176 -0
  1099. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler.rb +99 -0
  1100. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/cgi.rb +60 -0
  1101. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/fastcgi.rb +100 -0
  1102. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/lsws.rb +61 -0
  1103. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/scgi.rb +70 -0
  1104. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/thin.rb +36 -0
  1105. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/webrick.rb +120 -0
  1106. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/head.rb +25 -0
  1107. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lint.rb +760 -0
  1108. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lobster.rb +70 -0
  1109. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lock.rb +22 -0
  1110. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/logger.rb +18 -0
  1111. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/media_type.rb +38 -0
  1112. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/method_override.rb +46 -0
  1113. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/mime.rb +677 -0
  1114. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/mock.rb +196 -0
  1115. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart.rb +63 -0
  1116. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/generator.rb +93 -0
  1117. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/parser.rb +367 -0
  1118. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/uploaded_file.rb +33 -0
  1119. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/null_logger.rb +37 -0
  1120. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/query_parser.rb +192 -0
  1121. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/recursive.rb +62 -0
  1122. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/reloader.rb +110 -0
  1123. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/request.rb +487 -0
  1124. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/response.rb +235 -0
  1125. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/rewindable_input.rb +93 -0
  1126. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/runtime.rb +32 -0
  1127. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/sendfile.rb +158 -0
  1128. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/server.rb +395 -0
  1129. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/abstract/id.rb +445 -0
  1130. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/cookie.rb +195 -0
  1131. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/memcache.rb +93 -0
  1132. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/pool.rb +76 -0
  1133. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/show_exceptions.rb +386 -0
  1134. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/show_status.rb +113 -0
  1135. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/static.rb +175 -0
  1136. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/tempfile_reaper.rb +22 -0
  1137. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/urlmap.rb +91 -0
  1138. data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/utils.rb +620 -0
  1139. data/.gem/ruby/2.3.0/gems/rack-2.0.3/rack.gemspec +35 -0
  1140. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/an_underscore_app.rb +5 -0
  1141. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/anything.rb +5 -0
  1142. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/comment.ru +4 -0
  1143. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/end.ru +5 -0
  1144. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/line.ru +1 -0
  1145. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/options.ru +2 -0
  1146. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/folder/test.js +1 -0
  1147. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/fonts/font.eot +1 -0
  1148. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/images/image.png +1 -0
  1149. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/index.html +1 -0
  1150. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/javascripts/app.js +1 -0
  1151. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/stylesheets/app.css +1 -0
  1152. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/lighttpd.conf +26 -0
  1153. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/rackup_stub.rb +6 -0
  1154. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/sample_rackup.ru +5 -0
  1155. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test +9 -0
  1156. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test+directory/test+file +1 -0
  1157. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.fcgi +9 -0
  1158. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.gz +0 -0
  1159. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.ru +5 -0
  1160. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/gemloader.rb +10 -0
  1161. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/helper.rb +34 -0
  1162. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/bad_robots +259 -0
  1163. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/binary +0 -0
  1164. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/content_type_and_no_filename +6 -0
  1165. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/empty +10 -0
  1166. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/fail_16384_nofile +814 -0
  1167. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/file1.txt +1 -0
  1168. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_and_modification_param +7 -0
  1169. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_and_no_name +6 -0
  1170. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_encoded_words +7 -0
  1171. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_escaped_quotes +6 -0
  1172. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_escaped_quotes_and_modification_param +7 -0
  1173. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_null_byte +7 -0
  1174. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_percent_escaped_quotes +6 -0
  1175. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_single_quote +7 -0
  1176. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages +6 -0
  1177. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages2 +6 -0
  1178. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages3 +6 -0
  1179. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_quotes +6 -0
  1180. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/ie +6 -0
  1181. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/invalid_character +6 -0
  1182. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/mixed_files +21 -0
  1183. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/nested +10 -0
  1184. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/none +9 -0
  1185. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/quoted +15 -0
  1186. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/rack-logo.png +0 -0
  1187. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/semicolon +6 -0
  1188. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/text +15 -0
  1189. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/three_files_three_fields +31 -0
  1190. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/unity3d_wwwform +11 -0
  1191. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/webkit +32 -0
  1192. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/rackup/config.ru +31 -0
  1193. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/registering_handler/rack/handler/registering_myself.rb +8 -0
  1194. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_auth_basic.rb +89 -0
  1195. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_auth_digest.rb +260 -0
  1196. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_body_proxy.rb +85 -0
  1197. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_builder.rb +233 -0
  1198. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_cascade.rb +63 -0
  1199. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_cgi.rb +84 -0
  1200. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_chunked.rb +103 -0
  1201. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_common_logger.rb +95 -0
  1202. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_conditional_get.rb +103 -0
  1203. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_config.rb +23 -0
  1204. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_content_length.rb +86 -0
  1205. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_content_type.rb +46 -0
  1206. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_deflater.rb +375 -0
  1207. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_directory.rb +148 -0
  1208. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_etag.rb +108 -0
  1209. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_events.rb +133 -0
  1210. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_fastcgi.rb +85 -0
  1211. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_file.rb +264 -0
  1212. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_handler.rb +57 -0
  1213. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_head.rb +46 -0
  1214. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lint.rb +515 -0
  1215. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lobster.rb +59 -0
  1216. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lock.rb +194 -0
  1217. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_logger.rb +24 -0
  1218. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_media_type.rb +42 -0
  1219. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_method_override.rb +96 -0
  1220. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_mime.rb +51 -0
  1221. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_mock.rb +359 -0
  1222. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_multipart.rb +722 -0
  1223. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_null_logger.rb +21 -0
  1224. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_recursive.rb +75 -0
  1225. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_request.rb +1393 -0
  1226. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_response.rb +510 -0
  1227. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_rewindable_input.rb +128 -0
  1228. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_runtime.rb +50 -0
  1229. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_sendfile.rb +125 -0
  1230. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_server.rb +193 -0
  1231. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_abstract_id.rb +31 -0
  1232. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_abstract_session_hash.rb +45 -0
  1233. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_cookie.rb +442 -0
  1234. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_memcache.rb +320 -0
  1235. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_pool.rb +210 -0
  1236. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_show_exceptions.rb +80 -0
  1237. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_show_status.rb +104 -0
  1238. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_static.rb +184 -0
  1239. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_tempfile_reaper.rb +64 -0
  1240. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_thin.rb +96 -0
  1241. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_urlmap.rb +237 -0
  1242. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_utils.rb +742 -0
  1243. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_version.rb +11 -0
  1244. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_webrick.rb +209 -0
  1245. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/another/index.html +1 -0
  1246. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/foo.html +1 -0
  1247. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/index.html +1 -0
  1248. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/testrequest.rb +78 -0
  1249. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
  1250. data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
  1251. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/History.md +191 -0
  1252. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/MIT-LICENSE.txt +19 -0
  1253. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/README.md +110 -0
  1254. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/mock_session.rb +66 -0
  1255. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test.rb +323 -0
  1256. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/cookie_jar.rb +198 -0
  1257. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/methods.rb +83 -0
  1258. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/mock_digest_request.rb +29 -0
  1259. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/uploaded_file.rb +64 -0
  1260. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/utils.rb +156 -0
  1261. data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/version.rb +5 -0
  1262. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.gitignore +17 -0
  1263. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.rubocop.yml +14 -0
  1264. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.travis.yml +22 -0
  1265. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Changelog.md +87 -0
  1266. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Gemfile +23 -0
  1267. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Guardfile +9 -0
  1268. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/LICENSE +20 -0
  1269. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/README.markdown +217 -0
  1270. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Rakefile +6 -0
  1271. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/ext/Rakefile +1 -0
  1272. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/ext/mkrf_conf.rb +22 -0
  1273. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow.rb +24 -0
  1274. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/color.rb +144 -0
  1275. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/ext/string.rb +56 -0
  1276. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/global.rb +21 -0
  1277. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/legacy.rb +15 -0
  1278. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb +41 -0
  1279. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/presenter.rb +135 -0
  1280. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/string_utils.rb +20 -0
  1281. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/version.rb +3 -0
  1282. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/wrapper.rb +22 -0
  1283. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/x11_color_names.rb +152 -0
  1284. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/rainbow.gemspec +26 -0
  1285. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/instance_spec.rb +35 -0
  1286. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/rainbow_spec.rb +160 -0
  1287. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/string_spec.rb +84 -0
  1288. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/spec_helper.rb +6 -0
  1289. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/support/presenter_shared_examples.rb +9 -0
  1290. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/color_spec.rb +301 -0
  1291. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/namespace_spec.rb +31 -0
  1292. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/null_presenter_spec.rb +111 -0
  1293. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/presenter_spec.rb +201 -0
  1294. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/string_utils_spec.rb +62 -0
  1295. data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/wrapper_spec.rb +34 -0
  1296. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.rspec +2 -0
  1297. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.travis.yml +46 -0
  1298. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.yardopts +13 -0
  1299. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/Gemfile +20 -0
  1300. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/LICENSE +144 -0
  1301. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/README.md +60 -0
  1302. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/Rakefile +62 -0
  1303. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
  1304. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
  1305. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
  1306. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
  1307. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
  1308. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
  1309. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  1310. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
  1311. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
  1312. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
  1313. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
  1314. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
  1315. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
  1316. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
  1317. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
  1318. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
  1319. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
  1320. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
  1321. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
  1322. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
  1323. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
  1324. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
  1325. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
  1326. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
  1327. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
  1328. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
  1329. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
  1330. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
  1331. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/.gitignore +0 -0
  1332. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
  1333. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
  1334. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/.gitignore +0 -0
  1335. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
  1336. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
  1337. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/.gitignore +0 -0
  1338. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
  1339. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
  1340. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
  1341. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
  1342. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
  1343. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
  1344. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
  1345. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
  1346. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
  1347. data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
  1348. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/.yardopts +6 -0
  1349. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/CHANGES.md +770 -0
  1350. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/LICENSE +19 -0
  1351. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/README.md +151 -0
  1352. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/Rakefile +107 -0
  1353. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo.rb +40 -0
  1354. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country.rb +196 -0
  1355. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_index_definition.rb +31 -0
  1356. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_info.rb +42 -0
  1357. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_timezone.rb +123 -0
  1358. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_source.rb +190 -0
  1359. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_timezone.rb +58 -0
  1360. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_timezone_info.rb +55 -0
  1361. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/info_timezone.rb +30 -0
  1362. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/linked_timezone.rb +63 -0
  1363. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/linked_timezone_info.rb +26 -0
  1364. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/offset_rationals.rb +77 -0
  1365. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_core_support.rb +146 -0
  1366. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_country_info.rb +70 -0
  1367. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_data_source.rb +136 -0
  1368. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/time_or_datetime.rb +333 -0
  1369. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone.rb +669 -0
  1370. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_definition.rb +36 -0
  1371. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_index_definition.rb +54 -0
  1372. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_info.rb +30 -0
  1373. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_offset.rb +78 -0
  1374. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_period.rb +221 -0
  1375. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_proxy.rb +99 -0
  1376. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_transition.rb +120 -0
  1377. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_transition_definition.rb +101 -0
  1378. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/transition_data_timezone_info.rb +274 -0
  1379. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb +35 -0
  1380. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_data_source.rb +487 -0
  1381. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_timezone_info.rb +294 -0
  1382. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country.rb +236 -0
  1383. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_index_definition.rb +69 -0
  1384. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_info.rb +16 -0
  1385. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_timezone.rb +161 -0
  1386. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_source.rb +218 -0
  1387. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_timezone.rb +99 -0
  1388. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_timezone_info.rb +18 -0
  1389. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_info_timezone.rb +34 -0
  1390. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_linked_timezone.rb +155 -0
  1391. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_linked_timezone_info.rb +23 -0
  1392. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_offset_rationals.rb +23 -0
  1393. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_core_support.rb +168 -0
  1394. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_country_info.rb +80 -0
  1395. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_data_source.rb +143 -0
  1396. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_time_or_datetime.rb +639 -0
  1397. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone.rb +1350 -0
  1398. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_definition.rb +113 -0
  1399. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_index_definition.rb +73 -0
  1400. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_info.rb +11 -0
  1401. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_london.rb +143 -0
  1402. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_melbourne.rb +142 -0
  1403. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_new_york.rb +142 -0
  1404. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_offset.rb +126 -0
  1405. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_period.rb +548 -0
  1406. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_proxy.rb +127 -0
  1407. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_transition.rb +352 -0
  1408. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_transition_definition.rb +284 -0
  1409. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_utc.rb +27 -0
  1410. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_transition_data_timezone_info.rb +423 -0
  1411. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_country_info.rb +64 -0
  1412. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_data_source.rb +1193 -0
  1413. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_timezone_info.rb +1128 -0
  1414. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/test_utils.rb +134 -0
  1415. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all.rb +7 -0
  1416. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all_ruby.rb +5 -0
  1417. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all_zoneinfo.rb +7 -0
  1418. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data.rb +8 -0
  1419. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  1420. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
  1421. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
  1422. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
  1423. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  1424. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  1425. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  1426. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
  1427. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
  1428. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
  1429. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
  1430. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
  1431. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
  1432. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
  1433. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
  1434. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/version.rb +14 -0
  1435. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  1436. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/America/New_York +0 -0
  1437. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Australia/Melbourne +0 -0
  1438. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/EST +0 -0
  1439. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Etc/UTC +0 -0
  1440. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Amsterdam +0 -0
  1441. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Andorra +0 -0
  1442. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/London +0 -0
  1443. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Paris +0 -0
  1444. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Prague +0 -0
  1445. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Factory +0 -0
  1446. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/iso3166.tab +275 -0
  1447. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/posix/Europe/London +0 -0
  1448. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/posixrules +0 -0
  1449. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/right/Europe/London +0 -0
  1450. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/zone.tab +439 -0
  1451. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/zone1970.tab +369 -0
  1452. data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/tzinfo.gemspec +21 -0
  1453. data/.gem/ruby/2.3.0/specifications/activesupport-5.1.4.gemspec +43 -0
  1454. data/.gem/ruby/2.3.0/specifications/bundler-1.16.0.pre.3.gemspec +52 -0
  1455. data/.gem/ruby/2.3.0/specifications/concurrent-ruby-1.0.5.gemspec +23 -0
  1456. data/.gem/ruby/2.3.0/specifications/i18n-0.8.6.gemspec +22 -0
  1457. data/.gem/ruby/2.3.0/specifications/mini_portile2-2.3.0.gemspec +48 -0
  1458. data/.gem/ruby/2.3.0/specifications/rack-2.0.3.gemspec +45 -0
  1459. data/.gem/ruby/2.3.0/specifications/rack-test-0.7.0.gemspec +53 -0
  1460. data/.gem/ruby/2.3.0/specifications/thread_safe-0.3.6.gemspec +38 -0
  1461. data/.gem/ruby/2.3.0/specifications/tzinfo-1.2.3.gemspec +37 -0
  1462. data/.gem/specs/api.rubygems.org%443/latest_specs.4.8 +0 -0
  1463. data/.gem/specs/api.rubygems.org%443/prerelease_specs.4.8 +0 -0
  1464. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/activesupport-5.1.4.gemspec +0 -0
  1465. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundle-0.0.1.gemspec +0 -0
  1466. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundler-1.15.4.gemspec +0 -0
  1467. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundler-1.16.0.pre.3.gemspec +0 -0
  1468. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/coderay-1.1.2.gemspec +0 -0
  1469. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/concurrent-ruby-1.0.5.gemspec +0 -0
  1470. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/ffi-1.9.18.gemspec +0 -0
  1471. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/i18n-0.8.6.gemspec +0 -0
  1472. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/mini_portile2-2.3.0.gemspec +0 -0
  1473. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/nokogiri-1.8.1.gemspec +0 -0
  1474. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/pry-0.11.1.gemspec +0 -0
  1475. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rack-2.0.3.gemspec +0 -0
  1476. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rack-test-0.7.0.gemspec +0 -0
  1477. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rails-5.1.4.gemspec +0 -0
  1478. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rainbow-2.2.2.gemspec +0 -0
  1479. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rdoc-5.1.0.gemspec +0 -0
  1480. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rspec-3.7.0.gemspec +0 -0
  1481. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rspec-support-3.7.0.gemspec +0 -0
  1482. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rubocop-0.50.0.gemspec +0 -0
  1483. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/thread_safe-0.3.6.gemspec +0 -0
  1484. data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/tzinfo-1.2.3.gemspec +0 -0
  1485. data/.gem/specs/api.rubygems.org%443/specs.4.8 +0 -0
  1486. data/.gitignore +11 -0
  1487. data/.rspec +3 -0
  1488. data/.travis.yml +5 -0
  1489. data/Gemfile +6 -0
  1490. data/Gemfile.lock +111 -0
  1491. data/Guardfile +82 -0
  1492. data/README.md +33 -0
  1493. data/Rakefile +6 -0
  1494. data/bin/console +14 -0
  1495. data/bin/setup +8 -0
  1496. data/docs/Alimento.html +344 -0
  1497. data/docs/Bebidas.html +103 -0
  1498. data/docs/Carnes.html +103 -0
  1499. data/docs/Frutas.html +103 -0
  1500. data/docs/Grasos.html +103 -0
  1501. data/docs/Hiperglucemicos.html +103 -0
  1502. data/docs/Lacteos.html +103 -0
  1503. data/docs/List.html +377 -0
  1504. data/docs/Object.html +117 -0
  1505. data/docs/Pescados.html +103 -0
  1506. data/docs/Pract6.html +110 -0
  1507. data/docs/Verduras.html +103 -0
  1508. data/docs/created.rid +4 -0
  1509. data/docs/css/fonts.css +167 -0
  1510. data/docs/css/rdoc.css +590 -0
  1511. data/docs/fonts/Lato-Light.ttf +0 -0
  1512. data/docs/fonts/Lato-LightItalic.ttf +0 -0
  1513. data/docs/fonts/Lato-Regular.ttf +0 -0
  1514. data/docs/fonts/Lato-RegularItalic.ttf +0 -0
  1515. data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
  1516. data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
  1517. data/docs/images/add.png +0 -0
  1518. data/docs/images/arrow_up.png +0 -0
  1519. data/docs/images/brick.png +0 -0
  1520. data/docs/images/brick_link.png +0 -0
  1521. data/docs/images/bug.png +0 -0
  1522. data/docs/images/bullet_black.png +0 -0
  1523. data/docs/images/bullet_toggle_minus.png +0 -0
  1524. data/docs/images/bullet_toggle_plus.png +0 -0
  1525. data/docs/images/date.png +0 -0
  1526. data/docs/images/delete.png +0 -0
  1527. data/docs/images/find.png +0 -0
  1528. data/docs/images/loadingAnimation.gif +0 -0
  1529. data/docs/images/macFFBgHack.png +0 -0
  1530. data/docs/images/package.png +0 -0
  1531. data/docs/images/page_green.png +0 -0
  1532. data/docs/images/page_white_text.png +0 -0
  1533. data/docs/images/page_white_width.png +0 -0
  1534. data/docs/images/plugin.png +0 -0
  1535. data/docs/images/ruby.png +0 -0
  1536. data/docs/images/tag_blue.png +0 -0
  1537. data/docs/images/tag_green.png +0 -0
  1538. data/docs/images/transparent.png +0 -0
  1539. data/docs/images/wrench.png +0 -0
  1540. data/docs/images/wrench_orange.png +0 -0
  1541. data/docs/images/zoom.png +0 -0
  1542. data/docs/index.html +103 -0
  1543. data/docs/js/darkfish.js +161 -0
  1544. data/docs/js/jquery.js +4 -0
  1545. data/docs/js/navigation.js +142 -0
  1546. data/docs/js/navigation.js.gz +0 -0
  1547. data/docs/js/search.js +109 -0
  1548. data/docs/js/search_index.js +1 -0
  1549. data/docs/js/search_index.js.gz +0 -0
  1550. data/docs/js/searcher.js +229 -0
  1551. data/docs/js/searcher.js.gz +0 -0
  1552. data/docs/table_of_contents.html +131 -0
  1553. data/lib/pract6.rb +7 -0
  1554. data/lib/pract6/Alimento.rb +185 -0
  1555. data/lib/pract6/List.rb +143 -0
  1556. data/lib/pract6/version.rb +3 -0
  1557. data/pract6.gemspec +39 -0
  1558. metadata +1698 -0
@@ -0,0 +1,81 @@
1
+ require "libxml"
2
+ require "active_support/core_ext/object/blank"
3
+ require "stringio"
4
+
5
+ module ActiveSupport
6
+ module XmlMini_LibXMLSAX #:nodoc:
7
+ extend self
8
+
9
+ # Class that will build the hash while the XML document
10
+ # is being parsed using SAX events.
11
+ class HashBuilder
12
+ include LibXML::XML::SaxParser::Callbacks
13
+
14
+ CONTENT_KEY = "__content__".freeze
15
+ HASH_SIZE_KEY = "__hash_size__".freeze
16
+
17
+ attr_reader :hash
18
+
19
+ def current_hash
20
+ @hash_stack.last
21
+ end
22
+
23
+ def on_start_document
24
+ @hash = { CONTENT_KEY => "" }
25
+ @hash_stack = [@hash]
26
+ end
27
+
28
+ def on_end_document
29
+ @hash = @hash_stack.pop
30
+ @hash.delete(CONTENT_KEY)
31
+ end
32
+
33
+ def on_start_element(name, attrs = {})
34
+ new_hash = { CONTENT_KEY => "" }.merge!(attrs)
35
+ new_hash[HASH_SIZE_KEY] = new_hash.size + 1
36
+
37
+ case current_hash[name]
38
+ when Array then current_hash[name] << new_hash
39
+ when Hash then current_hash[name] = [current_hash[name], new_hash]
40
+ when nil then current_hash[name] = new_hash
41
+ end
42
+
43
+ @hash_stack.push(new_hash)
44
+ end
45
+
46
+ def on_end_element(name)
47
+ if current_hash.length > current_hash.delete(HASH_SIZE_KEY) && current_hash[CONTENT_KEY].blank? || current_hash[CONTENT_KEY] == ""
48
+ current_hash.delete(CONTENT_KEY)
49
+ end
50
+ @hash_stack.pop
51
+ end
52
+
53
+ def on_characters(string)
54
+ current_hash[CONTENT_KEY] << string
55
+ end
56
+
57
+ alias_method :on_cdata_block, :on_characters
58
+ end
59
+
60
+ attr_accessor :document_class
61
+ self.document_class = HashBuilder
62
+
63
+ def parse(data)
64
+ if !data.respond_to?(:read)
65
+ data = StringIO.new(data || "")
66
+ end
67
+
68
+ if data.eof?
69
+ {}
70
+ else
71
+ LibXML::XML::Error.set_handler(&LibXML::XML::Error::QUIET_HANDLER)
72
+ parser = LibXML::XML::SaxParser.io(data)
73
+ document = document_class.new
74
+
75
+ parser.callbacks = document
76
+ parser.parse
77
+ document.hash
78
+ end
79
+ end
80
+ end
81
+ end
@@ -0,0 +1,81 @@
1
+ begin
2
+ require "nokogiri"
3
+ rescue LoadError => e
4
+ $stderr.puts "You don't have nokogiri installed in your application. Please add it to your Gemfile and run bundle install"
5
+ raise e
6
+ end
7
+ require "active_support/core_ext/object/blank"
8
+ require "stringio"
9
+
10
+ module ActiveSupport
11
+ module XmlMini_Nokogiri #:nodoc:
12
+ extend self
13
+
14
+ # Parse an XML Document string or IO into a simple hash using libxml / nokogiri.
15
+ # data::
16
+ # XML Document string or IO to parse
17
+ def parse(data)
18
+ if !data.respond_to?(:read)
19
+ data = StringIO.new(data || "")
20
+ end
21
+
22
+ if data.eof?
23
+ {}
24
+ else
25
+ doc = Nokogiri::XML(data)
26
+ raise doc.errors.first if doc.errors.length > 0
27
+ doc.to_hash
28
+ end
29
+ end
30
+
31
+ module Conversions #:nodoc:
32
+ module Document #:nodoc:
33
+ def to_hash
34
+ root.to_hash
35
+ end
36
+ end
37
+
38
+ module Node #:nodoc:
39
+ CONTENT_ROOT = "__content__".freeze
40
+
41
+ # Convert XML document to hash.
42
+ #
43
+ # hash::
44
+ # Hash to merge the converted element into.
45
+ def to_hash(hash = {})
46
+ node_hash = {}
47
+
48
+ # Insert node hash into parent hash correctly.
49
+ case hash[name]
50
+ when Array then hash[name] << node_hash
51
+ when Hash then hash[name] = [hash[name], node_hash]
52
+ when nil then hash[name] = node_hash
53
+ end
54
+
55
+ # Handle child elements
56
+ children.each do |c|
57
+ if c.element?
58
+ c.to_hash(node_hash)
59
+ elsif c.text? || c.cdata?
60
+ node_hash[CONTENT_ROOT] ||= ""
61
+ node_hash[CONTENT_ROOT] << c.content
62
+ end
63
+ end
64
+
65
+ # Remove content node if it is blank and there are child tags
66
+ if node_hash.length > 1 && node_hash[CONTENT_ROOT].blank?
67
+ node_hash.delete(CONTENT_ROOT)
68
+ end
69
+
70
+ # Handle attributes
71
+ attribute_nodes.each { |a| node_hash[a.node_name] = a.value }
72
+
73
+ hash
74
+ end
75
+ end
76
+ end
77
+
78
+ Nokogiri::XML::Document.include(Conversions::Document)
79
+ Nokogiri::XML::Node.include(Conversions::Node)
80
+ end
81
+ end
@@ -0,0 +1,84 @@
1
+ begin
2
+ require "nokogiri"
3
+ rescue LoadError => e
4
+ $stderr.puts "You don't have nokogiri installed in your application. Please add it to your Gemfile and run bundle install"
5
+ raise e
6
+ end
7
+ require "active_support/core_ext/object/blank"
8
+ require "stringio"
9
+
10
+ module ActiveSupport
11
+ module XmlMini_NokogiriSAX #:nodoc:
12
+ extend self
13
+
14
+ # Class that will build the hash while the XML document
15
+ # is being parsed using SAX events.
16
+ class HashBuilder < Nokogiri::XML::SAX::Document
17
+ CONTENT_KEY = "__content__".freeze
18
+ HASH_SIZE_KEY = "__hash_size__".freeze
19
+
20
+ attr_reader :hash
21
+
22
+ def current_hash
23
+ @hash_stack.last
24
+ end
25
+
26
+ def start_document
27
+ @hash = {}
28
+ @hash_stack = [@hash]
29
+ end
30
+
31
+ def end_document
32
+ raise "Parse stack not empty!" if @hash_stack.size > 1
33
+ end
34
+
35
+ def error(error_message)
36
+ raise error_message
37
+ end
38
+
39
+ def start_element(name, attrs = [])
40
+ new_hash = { CONTENT_KEY => "" }.merge!(Hash[attrs])
41
+ new_hash[HASH_SIZE_KEY] = new_hash.size + 1
42
+
43
+ case current_hash[name]
44
+ when Array then current_hash[name] << new_hash
45
+ when Hash then current_hash[name] = [current_hash[name], new_hash]
46
+ when nil then current_hash[name] = new_hash
47
+ end
48
+
49
+ @hash_stack.push(new_hash)
50
+ end
51
+
52
+ def end_element(name)
53
+ if current_hash.length > current_hash.delete(HASH_SIZE_KEY) && current_hash[CONTENT_KEY].blank? || current_hash[CONTENT_KEY] == ""
54
+ current_hash.delete(CONTENT_KEY)
55
+ end
56
+ @hash_stack.pop
57
+ end
58
+
59
+ def characters(string)
60
+ current_hash[CONTENT_KEY] << string
61
+ end
62
+
63
+ alias_method :cdata_block, :characters
64
+ end
65
+
66
+ attr_accessor :document_class
67
+ self.document_class = HashBuilder
68
+
69
+ def parse(data)
70
+ if !data.respond_to?(:read)
71
+ data = StringIO.new(data || "")
72
+ end
73
+
74
+ if data.eof?
75
+ {}
76
+ else
77
+ document = document_class.new
78
+ parser = Nokogiri::XML::SAX::Parser.new(document)
79
+ parser.parse(data)
80
+ document.hash
81
+ end
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,128 @@
1
+ require "active_support/core_ext/kernel/reporting"
2
+ require "active_support/core_ext/object/blank"
3
+ require "stringio"
4
+
5
+ module ActiveSupport
6
+ module XmlMini_REXML #:nodoc:
7
+ extend self
8
+
9
+ CONTENT_KEY = "__content__".freeze
10
+
11
+ # Parse an XML Document string or IO into a simple hash.
12
+ #
13
+ # Same as XmlSimple::xml_in but doesn't shoot itself in the foot,
14
+ # and uses the defaults from Active Support.
15
+ #
16
+ # data::
17
+ # XML Document string or IO to parse
18
+ def parse(data)
19
+ if !data.respond_to?(:read)
20
+ data = StringIO.new(data || "")
21
+ end
22
+
23
+ if data.eof?
24
+ {}
25
+ else
26
+ silence_warnings { require "rexml/document" } unless defined?(REXML::Document)
27
+ doc = REXML::Document.new(data)
28
+
29
+ if doc.root
30
+ merge_element!({}, doc.root, XmlMini.depth)
31
+ else
32
+ raise REXML::ParseException,
33
+ "The document #{doc.to_s.inspect} does not have a valid root"
34
+ end
35
+ end
36
+ end
37
+
38
+ private
39
+ # Convert an XML element and merge into the hash
40
+ #
41
+ # hash::
42
+ # Hash to merge the converted element into.
43
+ # element::
44
+ # XML element to merge into hash
45
+ def merge_element!(hash, element, depth)
46
+ raise REXML::ParseException, "The document is too deep" if depth == 0
47
+ merge!(hash, element.name, collapse(element, depth))
48
+ end
49
+
50
+ # Actually converts an XML document element into a data structure.
51
+ #
52
+ # element::
53
+ # The document element to be collapsed.
54
+ def collapse(element, depth)
55
+ hash = get_attributes(element)
56
+
57
+ if element.has_elements?
58
+ element.each_element { |child| merge_element!(hash, child, depth - 1) }
59
+ merge_texts!(hash, element) unless empty_content?(element)
60
+ hash
61
+ else
62
+ merge_texts!(hash, element)
63
+ end
64
+ end
65
+
66
+ # Merge all the texts of an element into the hash
67
+ #
68
+ # hash::
69
+ # Hash to add the converted element to.
70
+ # element::
71
+ # XML element whose texts are to me merged into the hash
72
+ def merge_texts!(hash, element)
73
+ unless element.has_text?
74
+ hash
75
+ else
76
+ # must use value to prevent double-escaping
77
+ texts = ""
78
+ element.texts.each { |t| texts << t.value }
79
+ merge!(hash, CONTENT_KEY, texts)
80
+ end
81
+ end
82
+
83
+ # Adds a new key/value pair to an existing Hash. If the key to be added
84
+ # already exists and the existing value associated with key is not
85
+ # an Array, it will be wrapped in an Array. Then the new value is
86
+ # appended to that Array.
87
+ #
88
+ # hash::
89
+ # Hash to add key/value pair to.
90
+ # key::
91
+ # Key to be added.
92
+ # value::
93
+ # Value to be associated with key.
94
+ def merge!(hash, key, value)
95
+ if hash.has_key?(key)
96
+ if hash[key].instance_of?(Array)
97
+ hash[key] << value
98
+ else
99
+ hash[key] = [hash[key], value]
100
+ end
101
+ elsif value.instance_of?(Array)
102
+ hash[key] = [value]
103
+ else
104
+ hash[key] = value
105
+ end
106
+ hash
107
+ end
108
+
109
+ # Converts the attributes array of an XML element into a hash.
110
+ # Returns an empty Hash if node has no attributes.
111
+ #
112
+ # element::
113
+ # XML element to extract attributes from.
114
+ def get_attributes(element)
115
+ attributes = {}
116
+ element.attributes.each { |n, v| attributes[n] = v }
117
+ attributes
118
+ end
119
+
120
+ # Determines if a document element has text content
121
+ #
122
+ # element::
123
+ # XML element to be checked.
124
+ def empty_content?(element)
125
+ element.texts.join.blank?
126
+ end
127
+ end
128
+ end
@@ -0,0 +1,2833 @@
1
+ ## 1.16.0.pre.3 (2017-10-04)
2
+
3
+ Features:
4
+
5
+ - the output from `bundle env` includes more information, particularly both the compiled & loaded versions of OpenSSL (@indirect)
6
+
7
+ Bugfixes:
8
+
9
+ - fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
10
+ - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
11
+ - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
12
+ - the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)
13
+
14
+ ## 1.16.0.pre.2 (2017-09-06)
15
+
16
+ Bugfixes:
17
+
18
+ - handle when a connection is missing a socket when warning about OpenSSL version (@greysteil)
19
+ - the description for the `rake release` task now reflects `$RUBYGEMS_HOST` (@wadetandy)
20
+ - fix a bug where `bundle update` would regress transitive dependencies (@greysteil)
21
+
22
+ ## 1.16.0.pre.1 (2017-09-04)
23
+
24
+ Features:
25
+
26
+ - allow using non-branch symbolic refs in a git source (#4845, @segiddins)
27
+ - allow absolute paths in the `cache path` setting (#5627, @mal)
28
+ - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
29
+ - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
30
+ - allow passing gem names to `bundle pristine` (@segiddins)
31
+ - `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
32
+ - add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
33
+ - gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
34
+ - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
35
+ - speed up no-op installations (#5842, @segiddins)
36
+ - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
37
+ - add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
38
+ - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
39
+ - add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
40
+ - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
41
+ - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
42
+
43
+ Bugfixes:
44
+
45
+ - allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
46
+ - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
47
+ - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
48
+ - ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
49
+ - ensure `bundle pristine` removes files added to a git gem (@segiddins)
50
+ - load plugin files from path gems before gem installation (#5429, @segiddins)
51
+ - ensure gems containing manpages are properly set up (#5730, @segiddins)
52
+ - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
53
+ - allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
54
+ - show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
55
+ - add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
56
+ - ensure that specifications always return an array for `#extensions` (@greysteil)
57
+ - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
58
+ - ensure that all gemfiles are included in `bundle env` (@segiddins)
59
+ - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
60
+ - avoid global namespace pollution when loading gems (#5958, @shyouhei)
61
+ - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
62
+ - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
63
+ - fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
64
+
65
+ ## 1.15.4 (2017-08-19)
66
+
67
+ Bugfixes:
68
+
69
+ - handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
70
+ - bundler will fail gracefully when the bundle path contains the system path separator (#5485, ajwann)
71
+ - failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
72
+ - `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
73
+
74
+ ## 1.15.3 (2017-07-21)
75
+
76
+ Bugfixes:
77
+
78
+ - ensure that empty strings passed to `bundle config` are serialized & parsed properly (#5881, @segiddins)
79
+ - avoid printing an outdated version warning when running a parseable command (@segiddins)
80
+
81
+ ## 1.15.2 (2017-07-17)
82
+
83
+ Features:
84
+
85
+ - new gemfiles created by bundler will include an explicit `github` git source that uses `https` (@segiddins)
86
+
87
+ Bugfixes:
88
+
89
+ - inline gemfiles work when `BUNDLE_BIN` is set (#5847, @segiddins)
90
+ - avoid using the old dependency API when there are no changes to the compact index files (#5373, @greysteil)
91
+ - fail gracefully when the full index serves gemspecs with invalid dependencies (#5797, @segiddins)
92
+ - support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
93
+ - `bundle config` will print settings as the type they are interpreted as (@segiddins)
94
+ - respect the `no_proxy` environment variable when making network requests (#5781, @jakauppila)
95
+ - commands invoked with `--verbose` will not have default flags printed (@segiddins)
96
+ - allow `bundle viz` to work when another gem has a requirable `grapviz` file (#5707, @segiddins)
97
+ - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order (#5696, @segiddins)
98
+
99
+ ## 1.15.1 (2017-06-02)
100
+
101
+ Bugfixes:
102
+
103
+ - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
104
+ - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
105
+ - `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
106
+ - `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)
107
+
108
+ ## 1.15.0 (2017-05-19)
109
+
110
+ This space intentionally left blank.
111
+
112
+ ## 1.15.0.pre.4 (2017-05-10)
113
+
114
+ Bugfixes:
115
+
116
+ - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
117
+ - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
118
+
119
+ ## 1.15.0.pre.3 (2017-04-30)
120
+
121
+ Bugfixes:
122
+
123
+ - avoid redundant blank lines in the readme generated by `bundle gem` (@koic)
124
+ - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
125
+ - print a helpful error message when an activated default gem conflicts with
126
+ a gem in the gemfile (@segiddins)
127
+ - only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)
128
+
129
+ ## 1.15.0.pre.2 (2017-04-23)
130
+
131
+ Bugfixes:
132
+
133
+ - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
134
+ - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
135
+ - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)
136
+
137
+ ## 1.15.0.pre.1 (2017-04-16)
138
+
139
+ Features:
140
+
141
+ - print a notification when a newer version of bundler is available (#4683, @segiddins)
142
+ - add man pages for all bundler commands (#4988, @feministy)
143
+ - add the `bundle info` command (@fredrb, @colby-swandale)
144
+ - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
145
+ - if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
146
+ - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
147
+ - print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
148
+ - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
149
+ - add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
150
+ - add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
151
+ - add the `bundle add` command to add a gem to the gemfile (@denniss)
152
+ - add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
153
+ - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
154
+
155
+ Performance:
156
+
157
+ - speed up gemfile initialization by storing locked dependencies as a hash (@jules2689)
158
+ - speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689)
159
+ - only validate git gems when they are downloaded, instead of every time `Bundler.setup` is run (@segiddins)
160
+ - avoid regenerating the lockfile when nothing has changed (@segiddins)
161
+ - avoid diffing large arrays when no sources in the gemfile have changed (@segiddins)
162
+ - avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins)
163
+
164
+ Bugfixes:
165
+
166
+ - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
167
+ - print out a stack trace after an interrupt when running in debug mode (@segiddins)
168
+ - print out when bundler starts fetching a gem from a remote server (@segiddins)
169
+ - fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
170
+ - suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
171
+ - ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
172
+ - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
173
+ - ensure `socket` is required before being referenced (#5533, @rafaelfranca)
174
+ - allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
175
+ - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
176
+ - print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
177
+ - allow interrupts to exit the process after gems have been installed (@segiddins)
178
+ - print the underlying error when downloading gem metadata fails (#5579, @segiddins)
179
+ - avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)
180
+
181
+ ## 1.14.6 (2017-03-03)
182
+
183
+ Bugfixes:
184
+
185
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
186
+ - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
187
+ - fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
188
+ - ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
189
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
190
+
191
+ ## 1.14.5 (2017-02-22)
192
+
193
+ Bugfixes:
194
+
195
+ - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
196
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
197
+ - enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
198
+ - use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
199
+ - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
200
+ - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
201
+ - handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
202
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
203
+ - avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
204
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
205
+
206
+ ## 1.14.4 (2017-02-12)
207
+
208
+ Bugfixes:
209
+
210
+ - fail gracefully when attempting to overwrite an existing directory with `bundle gem` (#5358, @nodo)
211
+ - fix a resolver bug that would cause bundler to report conflicts that it could resolve (#5359, #5362, @segiddins)
212
+ - set native extension build arguments for git gems (#5401, @segiddins)
213
+ - fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
214
+ - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing (#5380, @segiddins)
215
+ - show `bundle inject` usage when too many arguments are passed (#5384, @Shekharrajak)
216
+ - stop `bundle show --outdated` from implicitly running `bundle update` (#5375, @colby-swandale)
217
+ - allow the temporary home directory fallback to work for multiple users (@svoop)
218
+
219
+ ## 1.14.3 (2017-01-24)
220
+
221
+ Bugfixes:
222
+
223
+ - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
224
+ - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)
225
+
226
+ ## 1.14.2 (2017-01-22)
227
+
228
+ Bugfixes:
229
+
230
+ - fix using `force_ruby_platform` on windows (#5344, @segiddins)
231
+ - fix an incorrect version conflict error when using `gemspec` on multiple platforms (#5340, @segiddins)
232
+
233
+ ## 1.14.1 (2017-01-21)
234
+
235
+ Bugfixes:
236
+
237
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
238
+
239
+ ## 1.14.0 (2017-01-20)
240
+
241
+ Bugfixes:
242
+
243
+ - ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
244
+ (#5238, @segiddins)
245
+ - fix `bundler/inline` when `BUNDLE_GEMFILE=""` (#5079, @segiddins)
246
+
247
+ ## 1.14.0.pre.2 (2017-01-11)
248
+
249
+ Bugfixes:
250
+
251
+ - allow not selecting a gem when running `bundle open` (#5301, @segiddins)
252
+ - support installing gems from git branches that contain shell metacharacters (#5295, @segiddins)
253
+ - fix a resolver error that could leave dependencies unresolved (#5294, @segiddins)
254
+ - fix a stack overflow error when invoking commands (#5296, @segiddins)
255
+
256
+ ## 1.14.0.pre.1 (2016-12-29)
257
+
258
+ Features:
259
+
260
+ - `bundle doctor` first runs `bundle check` (@segiddins)
261
+ - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
262
+ - gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
263
+ - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
264
+ - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
265
+ - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
266
+ - always prompt the user for a password when using `sudo` (#3006, @segiddins)
267
+ - support running without a home directory (#4778, @segiddins)
268
+ - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
269
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
270
+ - add conservative update options to `bundle lock` (#4912, @chrismo)
271
+ - improve `bundle outdated` output to group gems by group (@ryanfox1985)
272
+ - add conservative update options to `bundle update` (#5065, #5076, @chrismo)
273
+ - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
274
+ - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
275
+ - add support for the `ruby_25` gemfile filter (@amatsuda)
276
+ - when installing with a lockfile that is missing dependencies, allow installation to proceed (but without parallelism) (@segiddins)
277
+
278
+ Performance:
279
+
280
+ - improve `require "bundler"` performance by ~5x (@segiddins)
281
+ - allow install gems in parallel when running on rubygems 2+
282
+
283
+ Bugfixes:
284
+
285
+ - config files with CRLF line endings can be read (#4435, @segiddins)
286
+ - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
287
+ - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
288
+ - fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
289
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
290
+ - `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
291
+ - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
292
+ - print friendly filesystem access errors in the new index (@segiddins)
293
+ - print a helpful error when running out of memory on jruby (#4673, @segiddins)
294
+ - load all rubygems plugins when installing gems (#2824, @segiddins)
295
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
296
+ - local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
297
+ - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
298
+ - print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
299
+ - ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
300
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
301
+ - allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
302
+ - ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
303
+ - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
304
+ - fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
305
+ - fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
306
+ - fix `bundle lock --add-platform ruby` (#5230, @segiddins)
307
+ - print gem post-install messages when running `bundle update` (@smathy)
308
+ - ensure errors due to a retries are all separated by a newline (@segiddins)
309
+ - print out the bundle path in gem not found errors (#4854, @diegosteiner)
310
+ - fail gracefully when creating threads fails (@segiddins)
311
+ - avoid downloading metadata for gems that are only development dependencies (@Paxa)
312
+
313
+ ## 1.13.7 (2016-12-25)
314
+
315
+ Features:
316
+
317
+ - add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
318
+
319
+ ## 1.13.6 (2016-10-22)
320
+
321
+ Bugfixes:
322
+
323
+ - make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins)
324
+
325
+ ## 1.13.5 (2016-10-15)
326
+
327
+ Bugfixes:
328
+
329
+ - Ensure a locked pre-release spec can always be re-resolved (#5089, @segiddins)
330
+
331
+ ## 1.13.4 (2016-10-11)
332
+
333
+ Bugfixes:
334
+
335
+ - stop printing warning when compact index versions file is rewritten (#5064, @indirect)
336
+ - fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
337
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
338
+ - make `update` options for major, minor, and patch updates consistent (#4934, @chrismo)
339
+
340
+ ## 1.13.3 (2016-10-10)
341
+
342
+ Bugfixes:
343
+
344
+ - add support for weak etags to the new index (@segiddins)
345
+
346
+ ## 1.13.2 (2016-09-30)
347
+
348
+ Bugfixes:
349
+
350
+ - allow `Settings` to be initialized without a root directory (@m1k3)
351
+ - allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
352
+ - avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
353
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
354
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
355
+ - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
356
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
357
+
358
+ Performance:
359
+
360
+ - avoid parsing the lockfile twice when evaluating gemfiles (@segiddins)
361
+
362
+ ## 1.13.1 (2016-09-13)
363
+
364
+ Bugfixes:
365
+
366
+ - ensure that `Gem::Source` is available, fixing several exceptions (#4944, @dekellum)
367
+ - ensure that dependency resolution works when multiple gems have the same dependency (#4961, @segiddins)
368
+
369
+ ## 1.13.0 (2016-09-05)
370
+
371
+ This space deliberately left blank.
372
+
373
+ ## 1.13.0.rc.2 (2016-08-21)
374
+
375
+ Features:
376
+
377
+ - add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
378
+ - add `doctor` command to help with issues like unlinked compiled gems (#4765, @mistydemeo)
379
+ - rework the `update` command, providing fine-grained control via flags (#4676, @chrismo)
380
+ - add URI to http response output in debug mode (#4808, @NickLaMuro)
381
+ - add manpage for `binstubs` command (#4847, @Zorbash)
382
+ - support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
383
+ - print gem installation errors after other install output (#4834, @segiddins)
384
+ - add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
385
+ - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
386
+ - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
387
+
388
+ Bugfixes:
389
+
390
+ - retry gem downloads (#4846, @jkeiser)
391
+ - improve the CompactIndex to handle capitalized legacy gems (#4867, @segiddins)
392
+ - re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
393
+ - respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
394
+ - allow `rake release` to sign git tags (#4743, @eagletmt)
395
+ - set process titles when using `#load` during `exec` (@yob)
396
+ - recognize JRuby shebangs for using `#load` during `exec` (@ojab)
397
+ - handle world-writable home directories (#4726, @allenzhao)
398
+ - support multi-platform gems via the `gemspec` Gemfile method (#4798, @segiddins)
399
+ - print dots correctly for CompactIndex fetcher (@NickLaMuro)
400
+ - set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
401
+ - rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
402
+ - show help only when `-h` or `--help` is passed to Bundler, not to `exec` (#4801, @segiddins)
403
+ - handle symlinks to binstubs created by `--standalone` (#4782, @terinjokes)
404
+
405
+ ## 1.13.0.rc.1 (2016-06-27)
406
+
407
+ Features:
408
+
409
+ - when `bundle config major_deprecations` or `BUNDLE_MAJOR_DEPRECATIONS` is set, deprecation warnings for bundler 2 will be printed (@segiddins)
410
+ - when running with `--verbose`, bundler will print the reason it is re-resolving a gemfile (@segiddins)
411
+
412
+ Bugfixes:
413
+
414
+ - fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
415
+ - fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
416
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
417
+ - stop changing the load path to require the vendored postit when trampolining (@segiddins)
418
+ - ensure relative paths are properly printed after completing an installation (@jenseng)
419
+ - fix re-resolving when there are multiple unchanged path sources (@segiddins)
420
+ - de-init submodules when running git 2.9 and requesting a git gem without submodules (@segiddins)
421
+
422
+ ## 1.13.0.pre.1 (2016-06-20)
423
+
424
+ Performance:
425
+
426
+ - speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
427
+ - generally reduce object allocations when using bundler (@segiddins)
428
+ - speed up bin generation for path gems with many files (#2846, @segiddins)
429
+ - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
430
+
431
+ Features:
432
+
433
+ - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
434
+ - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
435
+ - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
436
+ - support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
437
+ - colorize updated gem versions (#4334, @bronzdoc)
438
+ - add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
439
+ - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
440
+ - use a custom YAML serializer to make config file consistent (@segiddins)
441
+ - filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
442
+ - support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
443
+ - fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
444
+ - automatically install an inline gemfile when gems are missing locally (@segiddins)
445
+ - allow conflicts for gems resolved via `gemspec` (@segiddins)
446
+ - add `--add-platform` option to `bundle lock` (@segiddins)
447
+ - fail gracefully when a resolved spec's `required_ruby_version` or `required_rubygems_version` is incompatible (@segiddins)
448
+
449
+ Bugfixes:
450
+
451
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
452
+ - add support for quoted paths in `$PATH` (#4323, @segiddins)
453
+ - check out missing git repos that are not being installed (#3981, @asutoshpalai)
454
+ - write `bundler/setup.rb` to a consistent path (@glennpratt)
455
+ - open editor in `bundle open` with a clean environment (@sj26)
456
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
457
+ - fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
458
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
459
+ - fix loading config files with very long values (#4370, @segiddins)
460
+ - only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
461
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
462
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
463
+
464
+ ## 1.12.6 (2016-10-10)
465
+
466
+ Bugfixes:
467
+ - add support for weak etags to the new index (@segiddins)
468
+
469
+ ## 1.12.5 (2016-05-25)
470
+
471
+ Bugfixes:
472
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
473
+ - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
474
+ - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
475
+
476
+ ## 1.12.4 (2016-05-16)
477
+
478
+ Bugfixes:
479
+ - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
480
+ - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
481
+ - fix installing built-in specs with `--standalone` (#4557, @segiddins)
482
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
483
+
484
+ ## 1.12.3 (2016-05-06)
485
+
486
+ Bugfixes:
487
+ - fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
488
+ - fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
489
+
490
+ ## 1.12.2 (2016-05-04)
491
+
492
+ Bugfixes:
493
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
494
+ - fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
495
+
496
+ ## 1.12.1 (2016-04-30)
497
+
498
+ Bugfixes:
499
+ - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
500
+ - fix computation of new index file local checksums on Windows (#4472, @mwrock)
501
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
502
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
503
+
504
+ ## 1.12.0 (2016-04-28)
505
+
506
+ This space intentionally left blank.
507
+
508
+ ## 1.12.0.rc.4 (2016-04-21)
509
+
510
+ Bugfixes:
511
+
512
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
513
+
514
+ ## 1.12.0.rc.3 (2016-04-19)
515
+
516
+ Bugfixes:
517
+
518
+ - don't allow new attributes to dirty a lockfile when running `bundle exec`, `-rbundler/setup`, or `bundle check` (@segiddins)
519
+
520
+ ## 1.12.0.rc.2 (2016-04-15)
521
+
522
+ Features:
523
+
524
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
525
+
526
+ Bugfixes:
527
+
528
+ - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
529
+ - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
530
+ - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
531
+
532
+ ## 1.12.0.rc (2016-03-13)
533
+
534
+ Performance:
535
+
536
+ - Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
537
+
538
+ Bugfixes:
539
+
540
+ - handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
541
+ - support binstubs from RubyGems 2.6 (#4341, @segiddins)
542
+ - handle quotes present in in PATH (#4326, @segiddins)
543
+
544
+ ## 1.12.0.pre.2 (2016-02-26)
545
+
546
+ Performance:
547
+
548
+ - speed up `bundle exec` by `load`ing the executable whenever possible, saving roughly .2 seconds per invocation (@segiddins)
549
+
550
+ Features:
551
+
552
+ - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
553
+ - add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
554
+ - add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
555
+
556
+ Bugfixes:
557
+
558
+ - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
559
+ - give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
560
+ - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
561
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
562
+ - give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
563
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
564
+ - give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
565
+ - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
566
+ - fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
567
+ - give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
568
+ - skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
569
+ - fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
570
+
571
+ ## 1.12.0.pre.1 (2016-02-09)
572
+
573
+ Performance:
574
+
575
+ - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
576
+ - speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
577
+
578
+ Features:
579
+
580
+ - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
581
+ - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
582
+ - support probing a mirror with a fallback timeout (#4128, @pcarranza)
583
+ - add `--full-index` option to `bundle lock` (@segiddins)
584
+ - support running with frozen string literals (@deepj, @segiddins)
585
+ - add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
586
+ - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
587
+ - add support for ruby 2.4 (#4266, @segiddins)
588
+ - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
589
+
590
+ Bugfixes:
591
+
592
+ - fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
593
+ - fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
594
+ - give a better error message when a given git commit can't be found (#4140, @doy)
595
+ - give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
596
+ - give a better error message when reading a bundler config file fails (@segiddins)
597
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
598
+ - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
599
+ - give a better error message when ssl isn't available (#4054, @RochesterinNYC)
600
+ - print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
601
+ - give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
602
+ - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
603
+ - ignore colorized output from `git` when determining the current branch (#4056, @agis-)
604
+ - fix storing the shared gems config option as a boolean (@vassilevsky)
605
+ - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
606
+ - fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
607
+ - avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
608
+ - ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
609
+ - give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
610
+ - preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
611
+ - ensure standalone file paths are relative to the project root (#4144, @glennpratt)
612
+
613
+ ## 1.11.2 (2015-12-15)
614
+
615
+ Bugfixes:
616
+
617
+ - _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
618
+
619
+ ## 1.11.1 (2015-12-15)
620
+
621
+ Bugfixes:
622
+
623
+ - lazy-load Psych, again (#4149, @indirect)
624
+ - allow gemspec gems on other platforms (#4150, @indirect)
625
+ - fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
626
+ - stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
627
+
628
+ ## 1.11.0 (2015-12-12)
629
+
630
+ (this space intentionally left blank)
631
+
632
+ ## 1.11.0.pre.2 (2015-12-06)
633
+
634
+ Bugfixes:
635
+
636
+ - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
637
+ - fix a crash when pushing a gem via `rake release` (@segiddins)
638
+
639
+ ## 1.11.0.pre.1 (2015-11-29)
640
+
641
+ Features:
642
+
643
+ - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
644
+ - the git remote for `rake release` is now customizable (@skateman)
645
+ - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
646
+ - add support for showing help for plugin commands (@tf)
647
+ - send `X-Gemfile-Source` header to source mirrors (@agis-)
648
+ - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
649
+ - add support for using bundler setting to add private access credentials for git sources (@frsyuki)
650
+ - take into consideration HTTP proxy settings in `.gemrc` (@PG-kura)
651
+ - allow specifying a gem host to push to in the `GEM_HOST` environment variable (@pmenglund)
652
+ - when gempec `required_ruby_version` is available and the Gemfile specifies a ruby version, resolve for the given ruby version (@segiddins)
653
+ - allow setting a `silence_root_warning` setting to silence the warning when `bundle install` is run as root (@blackxored)
654
+ - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
655
+ - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
656
+ - added support for MRI 2.3 (@amatsuda)
657
+ - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
658
+ - include git revision hash when printing a git source (#3433, @agis-)
659
+ - improve hint when a resolution conflict occurs (@seanlinsley)
660
+ - show a friendly error when a git ref is not found (#3879, @agis-)
661
+ - improve error message when sources are not absolute URIs (#3925, @agis-)
662
+ - add `pkg` to rake's clobber list (#3676, @jasonkarns)
663
+ - retry fetching specs when fetching version metadata fails (@jingweno)
664
+
665
+ Bugfixes:
666
+
667
+ - avoid showing bundler version warning messages twice (@fotanus)
668
+ - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
669
+ - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
670
+ - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
671
+ - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
672
+ - fix the `bundle gem` readme when no tests are generated (@roseweixel)
673
+ - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
674
+ - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
675
+ - fix trying to cache a gem that has no source (@EduardoBautista)
676
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
677
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
678
+ - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
679
+ - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
680
+ - fix not retrying on zlib errors (#4047, @andremedeiros)
681
+ - fix a warning being shown for using `URI.encode` (@EduardoBautista)
682
+ - fix handling of fatal HTTP errors (#3830, @indirect)
683
+ - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
684
+ - fix caching gems with a path with the same prefix as the bundled application (@indirect)
685
+ - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
686
+ - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
687
+ - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
688
+ - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
689
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
690
+ - also print gemspecs in `bundle env` output (@agis-)
691
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
692
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
693
+ - fix handling invalid RubyGems configuration files (#4042, @agis-)
694
+ - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
695
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
696
+
697
+ Performance:
698
+
699
+ - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
700
+ - drop string allocations when searching for gems (@jrafanie)
701
+
702
+ ## 1.10.6 (2015-07-22)
703
+
704
+ Workarounds:
705
+
706
+ - only warn on invalid gemspecs (@indirect)
707
+
708
+ Bugfixes:
709
+
710
+ - fix installing dependencies in the correct order (#3799, @pducks32)
711
+ - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
712
+ - fix `install_if` conditionals when using the block form (@danieltdt)
713
+
714
+ ## 1.10.5 (2015-06-24)
715
+
716
+ Workarounds:
717
+
718
+ - don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
719
+
720
+ Bugfixes:
721
+
722
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
723
+ - speed up resolver for path and git gems (@segiddins)
724
+ - fix `install --force` to not reinstall Bundler (#3743, @karlo57)
725
+
726
+ ## 1.10.4 (2015-06-16)
727
+
728
+ Workarounds:
729
+
730
+ - don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
731
+
732
+ Bugfixes:
733
+
734
+ - display "with native extensions" log output correctly (@ivantsepp)
735
+ - alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
736
+
737
+ ## 1.10.3 (2015-06-03)
738
+
739
+ Bugfixes:
740
+
741
+ - allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
742
+ - fix regression in `rake install` (#3701, #3705, @segiddins)
743
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
744
+ - fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
745
+
746
+ ## 1.10.2 (2015-05-29)
747
+
748
+ Bugfixes:
749
+
750
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
751
+
752
+ ## 1.10.1 (2015-05-28)
753
+
754
+ Bugfixes:
755
+
756
+ - silence ruby warning when running CLI commands (@segiddins)
757
+ - validate gemspecs in non-packaging mode (#3681, @segiddins)
758
+ - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
759
+
760
+ ## 1.10.0 (2015-05-28)
761
+
762
+ (this space intentionally left blank)
763
+
764
+ ## 1.10.0.rc (2015-05-16)
765
+
766
+ Features:
767
+
768
+ - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
769
+ - track CI platforms running Bundler (#3646, @fotanus)
770
+
771
+ Bugfixes:
772
+
773
+ - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
774
+ - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
775
+ - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
776
+ - Without groups saved via `config` are no longer ignored when the `--without` flag is used
777
+
778
+ ## 1.10.0.pre.2 (2015-05-07)
779
+
780
+ Bugfixes:
781
+
782
+ - make BUNDLED WITH backwards compatible (#3623, @segiddins)
783
+
784
+ ## 1.10.0.pre.1 (2015-05-05)
785
+
786
+ Bugfixes:
787
+
788
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
789
+
790
+ ## 1.10.0.pre (2015-05-03)
791
+
792
+ Features:
793
+
794
+ - support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
795
+ - add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
796
+ - improved error reports for Gemfile errors (#3480, @segiddins)
797
+ - `lock` command (#3437, @segiddins)
798
+ - add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
799
+ - improve `gem` minitest template (#3513, #3515, @arthurnn)
800
+ - add `install --force` to re-install installed gems (#3519, @segiddins)
801
+ - show more `outdated` information, including groups (@smlance, @indirect)
802
+ - add optional groups to the Gemfile (#3531, @jhass)
803
+ - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
804
+ - make timeouts and retries configurable via `config` (#3601, @pducks32)
805
+ - add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
806
+
807
+ Bugfixes:
808
+
809
+ - standalone mode now uses builtin gems correctly (#3610, @segiddins)
810
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
811
+ - remember all y/n answers when generating gems (#3579, @pducks32)
812
+
813
+ Performance:
814
+
815
+ - use RubyGems stub specifications when possible (#3580, @segiddins)
816
+
817
+ Deprecations:
818
+
819
+ - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
820
+
821
+ ## 1.9.10 (2015-06-22)
822
+
823
+ Features:
824
+
825
+ - the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
826
+
827
+ ## 1.9.9 (2015-05-16)
828
+
829
+ Bugfixes:
830
+
831
+ - read mirror and credential settings from older versions (#3557, @Strech)
832
+
833
+ ## 1.9.8 (2015-05-12)
834
+
835
+ Bugfixes:
836
+
837
+ - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
838
+
839
+ ## 1.9.7 (2015-05-11)
840
+
841
+ Bugfixes:
842
+
843
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
844
+
845
+ ## 1.9.6 (2015-05-02)
846
+
847
+ Bugfixes:
848
+
849
+ - use RubyGems spec stubs if available (@segiddins)
850
+ - allow creating gems with names containing two dashes (#3483, @janlelis)
851
+ - allow creating gems with names extending constants (#3603, @amatsuda)
852
+
853
+ ## 1.9.5 (2015-04-29)
854
+
855
+ Bugfixes:
856
+
857
+ - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
858
+
859
+ ## 1.9.4 (2015-04-13)
860
+
861
+ Bugfixes:
862
+
863
+ - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
864
+ - improve error when gems are missing (#3564, @sealocal)
865
+
866
+ ## 1.9.3 (2015-04-12)
867
+
868
+ Bugfixes:
869
+
870
+ - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
871
+ - install 'universal' gems on Windows (#3066, @jdmundrawala)
872
+ - stop passing --local during `rake install` task (#3236, @indirect)
873
+ - guard against all possible accidental public gem pushes (#3533, @indirect)
874
+
875
+ ## 1.9.2 (2015-03-30)
876
+
877
+ Bugfixes:
878
+
879
+ - ensure gem executables are executable (#3517, #3511, @indirect)
880
+ - fix warnings in Molinillo (#3516, @segiddins)
881
+ - ensure duplicate dependencies do not propagate (#3522, @segiddins)
882
+ - keep gems locked when updating another gem from the same source (#3520, @indirect)
883
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
884
+
885
+ ## 1.9.1 (2015-03-21)
886
+
887
+ Bugfixes:
888
+
889
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
890
+
891
+ ## 1.9.0 (2015-03-20)
892
+
893
+ ## 1.9.0.rc (2015-03-13)
894
+
895
+ Bugfixes:
896
+
897
+ - make Bundler.which stop finding directories (@nohoho)
898
+ - handle Bundler prereleases correctly (#3470, @segiddins)
899
+ - add before_install to .travis.yml template for new gems (@kodnin)
900
+
901
+ ## 1.9.0.pre.1 (2015-03-11)
902
+
903
+ Bugfixes:
904
+
905
+ - make `gem` command work again (@arthurnn)
906
+
907
+ ## 1.9.0.pre (2015-03-11)
908
+
909
+ Features:
910
+
911
+ - prefer gemspecs closest to the directory root (#3428, @segiddins)
912
+ - debug log for API request limits (#3452, @neerfri)
913
+
914
+ "Features":
915
+
916
+ - Molinillo resolver, shared with CocoaPods (@segiddins)
917
+ - updated Thor to v0.19.1 (@segiddins)
918
+
919
+ ## 1.8.9 (2015-05-02)
920
+
921
+ Bugfixes:
922
+
923
+ - Use RubyGems spec stubs if available (@segiddins)
924
+
925
+ ## 1.8.8 (2015-04-29)
926
+
927
+ Bugfixes:
928
+
929
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
930
+
931
+ ## 1.8.7 (2015-04-07)
932
+
933
+ Bugfixes:
934
+
935
+ - stop suppressing errors inside gems that get required (#3549, @indirect)
936
+
937
+ ## 1.8.6 (2015-03-30)
938
+
939
+ Bugfixes:
940
+
941
+ - keep gems locked when updating another gem from the same source (#3250, @indirect)
942
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
943
+
944
+ ## 1.8.5 (2015-03-11)
945
+
946
+ Bugfixes:
947
+
948
+ - remove MIT license from gemspec when removing license file (@indirect)
949
+ - respect 'no' immediately as well as saving it in `gem` config (@kirs)
950
+
951
+ ## 1.8.4 (2015-03-05)
952
+
953
+ Bugfixes:
954
+
955
+ - document --all-platforms option (#3449, @moeffju)
956
+ - find gems from all sources on exec after install (#3450, @TimMoore)
957
+
958
+ ## 1.8.3 (2015-02-24)
959
+
960
+ Bugfixes:
961
+
962
+ - handle boolean values for gem settings (@EduardoBautista)
963
+ - stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
964
+
965
+ ## 1.8.2 (2015-02-14)
966
+
967
+ Bugfixes:
968
+
969
+ - allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
970
+
971
+ ## 1.8.1 (2015-02-13)
972
+
973
+ Bugfixes:
974
+
975
+ - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
976
+ - set gemspec bindir correctly (#3392, @TimMoore)
977
+ - request lockfile deletion when it is malformed (#3396, @indirect)
978
+ - explain problem when mirror config is missing (#3386, @indirect)
979
+ - explain problem when caching causes permission error (#3390, @indirect)
980
+ - normalize URLs in config keys (#3391, @indirect)
981
+
982
+ ## 1.8.0 (2015-02-10)
983
+
984
+ Bugfixes:
985
+
986
+ - gemfile `github` blocks now work (#3379, @indirect)
987
+
988
+ Bugfixes from v1.7.13:
989
+
990
+ - look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
991
+ - look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
992
+ - request dependencies for no more than 100 gems at a time (#3367, @segiddins)
993
+
994
+ ## 1.8.0.rc (2015-01-26)
995
+
996
+ Features:
997
+
998
+ - add `config disable_multisource` option to ensure sources can't compete (@indirect)
999
+
1000
+ Bugfixes:
1001
+
1002
+ - don't add extra quotes around long, quoted config values (@aroben, #3338)
1003
+
1004
+ Security:
1005
+
1006
+ - warn when more than one top-level source is present (@indirect)
1007
+
1008
+ ## 1.8.0.pre (2015-01-26)
1009
+
1010
+ Features:
1011
+
1012
+ - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
1013
+ - adds a `--no-install` flag to `bundle package` (@d-reinhold)
1014
+ - add `bundle config auto_install true` to install automatically (@smashwilson)
1015
+ - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
1016
+ - prevent whitespace in gem declarations with clear messaging (@benlakey)
1017
+ - tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
1018
+ - tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
1019
+ - change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
1020
+ - add `package --all-platforms` to cache gems for each known platform (@ccutrer)
1021
+ - speed up `exec` when running commands on the $PATH (@kirs)
1022
+ - add gem code of conduct file and option (@kirs)
1023
+ - add config settings for gem license and tests (@kirs)
1024
+ - add `bin/setup` and `bin/console` to new gems (@indirect)
1025
+ - include configured user-agent in network requests (@indirect)
1026
+ - support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
1027
+ - add `package --cache-path` and `config cache_path` for cache location (@jnraine)
1028
+ - allow `config` to work even when a Gemfile is not present (@dholdren)
1029
+ - add `config gemfile /path` for other Gemfile locations (@dholdren)
1030
+ - add `github` method alonside the `git` method (@BenMorganIO)
1031
+
1032
+ Bugfixes:
1033
+
1034
+ - reduce memory usage with threaded parallel workers (@Who828)
1035
+ - support read-only git gems (@pmahoney)
1036
+ - various resolver performance improvements (@dubek)
1037
+ - untaint git gem paths for Rubygems compatibility (@tdtds)
1038
+
1039
+ Documentation:
1040
+
1041
+ - add missing Gemfile global `path` explanation (@agenteo)
1042
+
1043
+ ## 1.7.15 (2015-04-29)
1044
+
1045
+ Bugfixes:
1046
+
1047
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1048
+
1049
+ ## 1.7.14 (2015-03-30)
1050
+
1051
+ Bugfixes:
1052
+
1053
+ - Keep gems locked when updating another gem from the same source (#3250, @indirect)
1054
+ - Don't add extra quotes around long, quoted config values (@aroben, #3338)
1055
+
1056
+ ## 1.7.13 (2015-02-07)
1057
+
1058
+ Bugfixes:
1059
+
1060
+ - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
1061
+ - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
1062
+ - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
1063
+
1064
+ ## 1.7.12 (2015-01-08)
1065
+
1066
+ Bugfixes:
1067
+
1068
+ - Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
1069
+
1070
+ ## 1.7.11 (2015-01-04)
1071
+
1072
+ Bugfixes:
1073
+
1074
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
1075
+
1076
+ ## 1.7.10 (2014-12-29)
1077
+
1078
+ Bugfixes:
1079
+
1080
+ - Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
1081
+
1082
+ Features(?):
1083
+
1084
+ - Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
1085
+
1086
+ ## 1.7.9 (2014-12-09)
1087
+
1088
+ Bugfixes:
1089
+
1090
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
1091
+ - Ensure bundle update installs the newer version of the gem (#3089, @Who828)
1092
+ - Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
1093
+
1094
+ ## 1.7.8 (2014-12-06)
1095
+
1096
+ Bugfixes:
1097
+
1098
+ - Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
1099
+
1100
+ ## 1.7.7 (2014-11-19)
1101
+
1102
+ Bugfixes:
1103
+
1104
+ - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
1105
+ - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
1106
+ - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
1107
+
1108
+ ## 1.7.6 (2014-11-11)
1109
+
1110
+ Bugfixes:
1111
+
1112
+ - CA certificates that work with all OpenSSLs (@luislavena, @indirect)
1113
+
1114
+ ## 1.7.5 (2014-11-10)
1115
+
1116
+ Bugfixes:
1117
+
1118
+ - Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
1119
+ - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
1120
+
1121
+ ## 1.7.4 (2014-10-19)
1122
+
1123
+ Bugfixes:
1124
+
1125
+ - Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
1126
+ - Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
1127
+ - Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
1128
+ - Stop asking gem servers for gems already found locally (#2909, @dubek)
1129
+
1130
+ ## 1.7.3 (2014-09-14)
1131
+
1132
+ Bugfixes:
1133
+
1134
+ - `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
1135
+ - Fix various Ruby warnings (@piotrsanarki, @indirect)
1136
+
1137
+ ## 1.7.2 (2014-08-23)
1138
+
1139
+ Bugfixes:
1140
+
1141
+ - Revert gem source sorting in lock files (@indirect)
1142
+
1143
+ ## 1.7.1 (2014-08-20)
1144
+
1145
+ Bugfixes:
1146
+
1147
+ - Install gems from one source needed by gems in another source (@indirect)
1148
+ - Install the same gem versions even after some are installed (@TimMoore)
1149
+ - Download specs only when installing from servers (@indirect)
1150
+
1151
+ ## 1.7.0 (2014-08-13)
1152
+
1153
+ Security:
1154
+
1155
+ - Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
1156
+
1157
+ Features:
1158
+
1159
+ - Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
1160
+ - Added the `:source` option to `gem` to specify a source (@TimMoore)
1161
+
1162
+ Bugfixes:
1163
+
1164
+ - Warn on ambiguous gems available from more than one source (@TimMoore)
1165
+
1166
+ ## 1.6.7 (2014-10-19)
1167
+
1168
+ Features:
1169
+
1170
+ - warn to upgrade when using useless source blocks (@danfinnie)
1171
+
1172
+ Documentation:
1173
+
1174
+ - explain how to use gem server credentials via ENV (@hwartig)
1175
+
1176
+ ## 1.6.6 (2014-08-23)
1177
+
1178
+ Bugfixes:
1179
+
1180
+ - restore Gemfile credentials to Gemfile.lock (@indirect)
1181
+
1182
+ ## 1.6.5 (2014-07-23)
1183
+
1184
+ Bugfixes:
1185
+
1186
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
1187
+
1188
+ ## 1.6.4 (2014-07-17)
1189
+
1190
+ Bugfixes:
1191
+
1192
+ - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
1193
+ - work when installed git gems are not writable (#3092, @pmahoney)
1194
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
1195
+ - don't include config source credentials in the lockfile (Lars Haugseth)
1196
+ - use threads for jobs on Rubinius (@YorickPeterse)
1197
+ - skip dependencies from other platforms (@mvz)
1198
+ - work when Rubygems was built without SSL (@andremedeiros)
1199
+
1200
+ ## 1.6.3 (2014-06-16)
1201
+
1202
+ Bugfixes:
1203
+
1204
+ - fix regression when resolving many conflicts (#2994, @Who828)
1205
+ - use local gemspec for builtin gems during install --local (#3041, @Who828)
1206
+ - don't warn about sudo when installing on Windows (#2984, @indirect)
1207
+ - shell escape `bundle open` arguments (@indirect)
1208
+
1209
+ ## 1.6.2 (2014-04-13)
1210
+
1211
+ Bugfixes:
1212
+
1213
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
1214
+ - cache gems that are built in to the running ruby (#2975, @indirect)
1215
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
1216
+ - keep standalone working even with builtin gems (@indirect)
1217
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
1218
+
1219
+ Features:
1220
+
1221
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
1222
+
1223
+ ## 1.6.1 (2014-04-02)
1224
+
1225
+ Bugfixes:
1226
+
1227
+ - update C extensions when git gem versions change (#2948, @dylanahsmith)
1228
+
1229
+ Features:
1230
+
1231
+ - add support for C extensions in sudo mode on Rubygems 2.2
1232
+
1233
+ ## 1.6.0 (2014-03-28)
1234
+
1235
+ Bugfixes:
1236
+
1237
+ - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
1238
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
1239
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
1240
+ - support escaped characters in usernames and passwords (@punkie)
1241
+ - no more exception on `update GEM` without lock file (@simi)
1242
+ - allow long config values (#2823, @kgrz)
1243
+ - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
1244
+ - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
1245
+ - only retry git commands that hit the network (#2899, @timmoore)
1246
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
1247
+ - handle exception installing when build_info owned by root (@Who828)
1248
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
1249
+
1250
+ Features:
1251
+
1252
+ - resolver rewritten to avoid recursion (@Who828)
1253
+ - add `git_source` for custom options like :github and :gist (@strzalek)
1254
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
1255
+ - some complex Gemfiles are resolved up to 10x faster (@Who828)
1256
+ - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
1257
+ - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
1258
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
1259
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
1260
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
1261
+ - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
1262
+ - Avoid using threequals operator where possible (@as-cii)
1263
+ - Add `bundle update --group` to update specific group (#2731 @banyan)
1264
+
1265
+ Documentation:
1266
+
1267
+ - Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
1268
+
1269
+ ## 1.5.3 (2014-02-06)
1270
+
1271
+ Bugfixes:
1272
+
1273
+ - find "missing" gems that are actually present (#2780, #2818, #2854)
1274
+ - use n-1 cores when given n jobs for parallel install (@jdickey)
1275
+
1276
+ ## 1.5.2 (2014-01-10)
1277
+
1278
+ Bugfixes:
1279
+
1280
+ - fix integration with Rubygems 1.8.0-1.8.19
1281
+ - handle ENETDOWN exception during network requests
1282
+ - gracefully shut down after interrupt during parallel install (@Who828)
1283
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
1284
+ - set git binstub permissions by umask (@v-yarotsky)
1285
+ - remove parallel install debug log
1286
+
1287
+ ## 1.5.1 (2013-12-28)
1288
+
1289
+ Bugfixes:
1290
+
1291
+ - correctly find gems installed with Ruby by default
1292
+
1293
+ ## 1.5.0 (2013-12-26)
1294
+
1295
+ Features:
1296
+
1297
+ - install missing gems if their specs are present (@hone)
1298
+
1299
+ Bugfixes:
1300
+
1301
+ - use print for "Installing…" so messages are thread-safe (@TimMoore)
1302
+
1303
+ ## 1.5.0.rc.2 (2013-12-18)
1304
+
1305
+ "Features":
1306
+
1307
+ - Support threaded installation on Rubygems 2.0.7+
1308
+ - Debug installation logs in .bundle/install.log
1309
+
1310
+ "Bugfixes":
1311
+
1312
+ - Try to catch gem installation race conditions
1313
+
1314
+ ## 1.5.0.rc.1 (2013-11-09)
1315
+
1316
+ Features:
1317
+
1318
+ - bundle update also accepts --jobs (#2692, @mrkn)
1319
+ - add fork URL to README for new `bundle gem` (#2665, @zzak)
1320
+ - add `bundle outdated --strict` (#2685, @davidblondeau)
1321
+ - warn if same gem/version is added twice (#2679, @jendiamond)
1322
+ - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
1323
+ - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
1324
+
1325
+ Bugfixes:
1326
+
1327
+ - fix sharing same SSL socket when forking workers for parallel install (#2632)
1328
+ - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
1329
+ - fix Bundler.which for directories (#2697, @rhysd)
1330
+ - properly require `Capistrano::Version` (#2690, @steveklabnik)
1331
+ - search for git.exe and git
1332
+ - fix the bug that downloads every spec when API fetcher encouters an error
1333
+ - only retry network requests
1334
+
1335
+ ## 1.4.0.rc.1 (2013-09-29)
1336
+
1337
+ Features:
1338
+
1339
+ - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
1340
+ - add :patchlevel option to ruby DSL
1341
+ - add `bundler` bin (#2598, @kirs)
1342
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
1343
+ - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
1344
+ - add X.509 client certificates for auth without passwords (@snackbandit)
1345
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
1346
+ - print a better error when git is not installed (@joyicecloud)
1347
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
1348
+ - add `:ruby_21` platform option (@brandonblack)
1349
+ - add `--retry` to retry failed network and git commands (@schneems)
1350
+ - include command and versions in User-Agent (@indirect, @joyicecloud)
1351
+
1352
+ Bugfixes:
1353
+
1354
+ - allow passwordless Basic Auth (#2606, @rykov)
1355
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
1356
+ - revert #2569, staying compatible with git: instead of https: for :github gems
1357
+ - handle exceptions while installing gems in parallel (@gnufied)
1358
+
1359
+ ## 1.4.0.pre.1 (2013-08-04)
1360
+
1361
+ Features:
1362
+
1363
+ - retry network requests while installing gems (#2561, @ascherger)
1364
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
1365
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
1366
+ - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
1367
+ - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
1368
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
1369
+ - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
1370
+ - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
1371
+ - rescue and report Thor errors (#2478, @pjvds)
1372
+ - detect cyclic dependencies (#2564, @gnufied)
1373
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
1374
+ - use https instead of git for :github gems (#2569, @fuadsaud)
1375
+ - add quiet option to `bundle package` (#2573, @shtirlic)
1376
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
1377
+
1378
+ Bugfixes:
1379
+
1380
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
1381
+ - display GitErrors while loading specs in --verbose mode (#2461)
1382
+ - allow the same options hash to be passed to multiple gems (#2447)
1383
+ - handle missing binaries without an exception (#2019, @luismreis)
1384
+
1385
+ ## 1.3.6 (8 January 2014)
1386
+
1387
+ Bugfixes:
1388
+
1389
+ - make gemspec path option preserve relative paths in lock file (@bwillis)
1390
+ - use umask when creating binstubs (#1618, @v-yarotsky)
1391
+ - warn if graphviz is not installed (#2435, @Agis-)
1392
+ - show git errors while loading gemspecs
1393
+ - don't mutate gem method options hash (#2447)
1394
+ - print Thor errors (#2478, @pjvds)
1395
+ - print Rubygems system exit errors (James Cook)
1396
+ - more Pathnames into Strings for MacRuby (@kml)
1397
+ - preserve original gemspec path (@bwillis)
1398
+ - remove warning about deps with :git (#1651, @ixti)
1399
+ - split git files on null (#2634, @jasonmp85)
1400
+ - handle cross-host redirects without SSL (#2686, @grddev)
1401
+ - handle Rubygems 2 security exception (@zzak)
1402
+ - reinstall gems if they are missing with spec present
1403
+ - set binstub permissions using umask (#1618, @v-yarotsky)
1404
+
1405
+ ## 1.3.5 (3 April 2013)
1406
+
1407
+ Features:
1408
+
1409
+ - progress indicator while resolver is running (@chief)
1410
+
1411
+ Bugfixes:
1412
+
1413
+ - update local overrides with orphaned revisions (@jamesferguson)
1414
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
1415
+ - use basic auth even when SSL is not available (@jayniz)
1416
+ - installing git gems without dependencies in deployment now works
1417
+
1418
+ ## 1.3.4 (15 March 2013)
1419
+
1420
+ Bugfixes:
1421
+
1422
+ - load YAML on Rubygems versions that define module YAML
1423
+ - fix regression that broke --without on ruby 1.8.7
1424
+
1425
+ ## 1.3.3 (13 March 2013)
1426
+
1427
+ Features:
1428
+
1429
+ - compatible with Rubygems 2.0.2 (higher and lower already work)
1430
+ - mention skipped groups in bundle install and bundle update output (@simi)
1431
+ - `gem` creates rake tasks for minitest (@coop) and rspec
1432
+
1433
+ Bugfixes:
1434
+
1435
+ - require rbconfig for standalone mode
1436
+
1437
+ ## 1.3.2 (7 March 2013)
1438
+
1439
+ Features:
1440
+
1441
+ - include rubygems.org CA chain
1442
+
1443
+ Bugfixes:
1444
+
1445
+ - don't store --dry-run as a Bundler setting
1446
+
1447
+ ## 1.3.1 (3 March 2013)
1448
+
1449
+ Bugfixes:
1450
+
1451
+ - include manpages in gem, restoring many help pages
1452
+ - handle more SSL certificate verification failures
1453
+ - check for the full version of SSL, which we need (@alup)
1454
+ - gem rake task 'install' now depends on task 'build' (@sunaku)
1455
+
1456
+ ## 1.3.0 (24 February 2013)
1457
+
1458
+ Features:
1459
+
1460
+ - raise a useful error when the lockfile contains a merge conflict (@zofrex)
1461
+ - ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
1462
+ - allow environment variables to be negated with 'false' and '0' (@brettporter)
1463
+ - set $MANPATH inside `exec` for gems with man pages (@sunaku)
1464
+ - partial gem names for `open` and `update` now return a list (@takkanm)
1465
+
1466
+ Bugfixes:
1467
+
1468
+ - `update` now (again) finds gems that aren't listed in the Gemfile
1469
+ - `install` now (again) updates cached gems that aren't in the Gemfile
1470
+ - install Gemfiles with HTTP sources even without OpenSSL present
1471
+ - display CerficateFailureError message in full
1472
+
1473
+ ## 1.3.0.pre.8 (12 February 2013)
1474
+
1475
+ Security:
1476
+
1477
+ - validate SSL certificate chain during HTTPS network requests
1478
+ - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
1479
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
1480
+
1481
+ Features:
1482
+
1483
+ - optimize resolver when too new of a gem is already activated (@rykov, #2248)
1484
+ - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
1485
+ - explain SSL cert validation failures
1486
+ - generate gemspecs when installing git repos, removing shellouts
1487
+ - add pager selection (@csgui)
1488
+ - add `licenses` command (@bryanwoods, #1898)
1489
+ - sort output from `outdated` (@richardkmichael, #1896)
1490
+ - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
1491
+ - inform users when the resolver starts
1492
+ - disable reverse DNS to speed up API requests (@raggi)
1493
+
1494
+ Bugfixes:
1495
+
1496
+ - raise errors while requiring dashed gems (#1807)
1497
+ - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
1498
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1499
+ - support any ruby version in --standalone
1500
+ - resolve some ruby -w warnings (@chastell, #2193)
1501
+ - don't scare users with an error message during API fallback
1502
+ - `install --binstubs` is back to overwriting. thanks, SemVer.
1503
+
1504
+ ## 1.3.0.pre.7 (22 January 2013)
1505
+
1506
+ Bugfixes:
1507
+
1508
+ - stubs for gems with dev deps no longer cause exceptions (#2272)
1509
+ - don't suggest binstubs to --binstubs users
1510
+
1511
+ ## 1.3.0.pre.6 (22 January 2013)
1512
+
1513
+ Features:
1514
+
1515
+ - `binstubs` lists child gem bins if a gem has no binstubs
1516
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
1517
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
1518
+ - `bundle env` prints info about bundler's environment (@peeja)
1519
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
1520
+
1521
+ Bugfixes:
1522
+
1523
+ - don't overwrite custom binstubs during `install --binstubs`
1524
+ - don't throw an exception if `binstubs` gem doesn't exist
1525
+ - `bundle config` now works in directories without a Gemfile
1526
+
1527
+ ## 1.3.0.pre.5 (Jan 9, 2013)
1528
+
1529
+ Features:
1530
+
1531
+ - make `--standalone` require lines ruby engine/version agnostic
1532
+ - add `--dry-run` to `bundle clean` (@wfarr, #2237)
1533
+
1534
+ Bugfixes:
1535
+
1536
+ - don't skip writing binstubs when doing `bundle install`
1537
+ - distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
1538
+
1539
+ ## 1.3.0.pre.4 (Jan 3, 2013)
1540
+
1541
+ Features:
1542
+
1543
+ - `bundle binstubs <gem>` to setup individual binstubs
1544
+ - `bundle install --binstubs ""` will remove binstubs option
1545
+ - `bundle clean --dry-run` will print out gems instead of removing them
1546
+
1547
+ Bugfixes:
1548
+
1549
+ - Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
1550
+ - fix YAML parsing in in ruby-preview2
1551
+
1552
+ ## 1.3.0.pre.3 (Dec 21, 2012)
1553
+
1554
+ Features:
1555
+
1556
+ - pushing gems during `rake release` can be disabled (@trans)
1557
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
1558
+ - added platforms :ruby_20 and :mri_20, since the ABI has changed
1559
+ - added '--edit' option to open generated gemspec in editor
1560
+
1561
+ Bugfixes:
1562
+
1563
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
1564
+ - revert SemVer breaking change to :github
1565
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
1566
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
1567
+ - namespaced gems no longer generate a superfluous directory (@banyan)
1568
+
1569
+ ## 1.3.0.pre.2 (Dec 9, 2012)
1570
+
1571
+ Features:
1572
+
1573
+ - `config` expands local overrides like `local.rack .` (@gkop, #2205)
1574
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
1575
+ - use gems from gists with the :gist option in the Gemfile (@jgaskins)
1576
+
1577
+ Bugfixes:
1578
+
1579
+ - Gemfile sources other than rubygems.org work even when .gemrc contains sources
1580
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
1581
+ - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
1582
+ - git output hidden when running in --quiet mode (@rohit)
1583
+
1584
+ ## 1.3.0.pre (Nov 29, 2012)
1585
+
1586
+ Features:
1587
+
1588
+ - compatible with Ruby 2.0.0-preview2
1589
+ - compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
1590
+ - ruby 2.0 added to the `:ruby19` ABI-compatible platform
1591
+ - lazy load YAML, allowing Psych to be specified in the Gemfile
1592
+ - significant performance improvements (@cheald, #2181)
1593
+ - `inject` command for scripted Gemfile additions (Engine Yard)
1594
+ - :github option uses slashless arguments as repo owner (@rking)
1595
+ - `open` suggests gem names for typos (@jdelStrother)
1596
+ - `update` reports non-existent gems (@jdelStrother)
1597
+ - `gem` option --test can generate rspec stubs (@MafcoCinco)
1598
+ - `gem` option --test can generate minitest stubs (@kcurtin)
1599
+ - `gem` command generates MIT license (@BrentWheeldon)
1600
+ - gem rake task 'release' resuses existing tags (@shtirlic)
1601
+
1602
+ Bugfixes:
1603
+
1604
+ - JRuby new works with HTTPS gem sources (@davidcelis)
1605
+ - `install` installs both rake rake-built gems at once (@crowbot, #2107)
1606
+ - handle Errno::ETIMEDOUT errors (@jmoses)
1607
+ - handle Errno::EAGAIN errors on JRuby
1608
+ - disable ANSI coloring when output is redirected (@tomykaira)
1609
+ - raise LoadErrors correctly during Bundler.require (@Empact)
1610
+ - do not swallow --verbose on `bundle exec` (@sol, #2102)
1611
+ - `gem` generates gemspecs that block double-requires
1612
+ - `gem` generates gemspecs that admit they depend on rake
1613
+
1614
+ ## 1.2.5 (Feb 24, 2013)
1615
+
1616
+ Bugfixes:
1617
+
1618
+ - install Gemfiles with HTTP sources even without OpenSSL present
1619
+ - display CerficateFailureError message in full
1620
+
1621
+ ## 1.2.4 (Feb 12, 2013)
1622
+
1623
+ Features:
1624
+
1625
+ - warn about Ruby 2.0 and Rubygems 2.0
1626
+ - inform users when the resolver starts
1627
+ - disable reverse DNS to speed up API requests (@raggi)
1628
+
1629
+ Bugfixes:
1630
+
1631
+ - don't send user/pass when redirected to another host (@perplexes)
1632
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1633
+ - support any ruby version in --standalone
1634
+ - resolve some ruby -w warnings (@chastell, #2193)
1635
+ - don't scare users with an error message during API fallback
1636
+
1637
+ ## 1.2.3 (Nov 29, 2012)
1638
+
1639
+ Bugfixes:
1640
+
1641
+ - fix exceptions while loading some gemspecs
1642
+
1643
+ ## 1.2.2 (Nov 14, 2012)
1644
+
1645
+ Bugfixes:
1646
+
1647
+ - support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
1648
+ - `bundle viz` works with git gems again (@hirochachacha)
1649
+ - recognize more cases when OpenSSL is not present
1650
+
1651
+ ## 1.2.1 (Sep 19, 2012)
1652
+
1653
+ Bugfixes:
1654
+
1655
+ - `bundle clean` now works with BUNDLE_WITHOUT groups again
1656
+ - have a net/http read timeout around the Gemcutter API Endpoint
1657
+
1658
+ ## 1.2.0 (Aug 30, 2012)
1659
+
1660
+ Bugfixes:
1661
+
1662
+ - raise original error message from LoadError's
1663
+
1664
+ Documentation:
1665
+
1666
+ - `platform` man pages
1667
+
1668
+ ## 1.2.0.rc.2 (Aug 8, 2012)
1669
+
1670
+ Bugfixes:
1671
+
1672
+ - `clean` doesn't remove gems that are included in the lockfile
1673
+
1674
+ ## 1.2.0.rc (Jul 17, 2012)
1675
+
1676
+ Features:
1677
+
1678
+ - `check` now has a `--dry-run` option (@svenfuchs, #1811)
1679
+ - loosen ruby directive for engines
1680
+ - prune git/path directories inside vendor/cache (@josevalim, #1988)
1681
+ - update vendored thor to 0.15.2 (@sferik)
1682
+ - add .txt to LICENSE (@postmodern, #2001)
1683
+ - add `config disable_local_branch_check` (@josevalim, #1985)
1684
+ - fall back on the full index when experiencing syck errors (#1419)
1685
+ - handle syntax errors in Ruby gemspecs (#1974)
1686
+
1687
+ Bugfixes:
1688
+
1689
+ - fix `pack`/`cache` with `--all` (@josevalim, #1989)
1690
+ - don't display warning message when `cache_all` is set
1691
+ - check for `nil` PATH (#2006)
1692
+ - Always try to keep original GEM_PATH (@drogus, #1920)
1693
+
1694
+ ## 1.2.0.pre.1 (May 27, 2012)
1695
+
1696
+ Features:
1697
+
1698
+ - Git gems import submodules of submodules recursively (@nwwatson, #1935)
1699
+
1700
+ Bugfixes:
1701
+
1702
+ - Exit from `check` with a non-zero status when frozen with no lock
1703
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1704
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1705
+
1706
+ Documentation:
1707
+
1708
+ - Add instructions for local git repos to the `config` manpage
1709
+ - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
1710
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1711
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1712
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1713
+
1714
+ ## 1.2.0.pre (May 4, 2012)
1715
+
1716
+ Features:
1717
+
1718
+ - bundle package now accepts --all to package git and path dependencies
1719
+ - bundle config now accepts --local, --global and --delete options
1720
+ - It is possible to override a git repository via configuration.
1721
+ For instance, if you have a git dependency on rack, you can force
1722
+ it to use a local repo with `bundle config local.rack ~/path/to/rack`
1723
+ - Cache gemspec loads for performance (@dekellum, #1635)
1724
+ - add --full-index flag to `bundle update` (@fluxx, #1829)
1725
+ - add --quiet flag to `bundle update` (@nashby, #1654)
1726
+ - Add Bundler::GemHelper.gemspec (@knu, #1637)
1727
+ - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
1728
+ - `bundle platform` command
1729
+ - add ruby to DSL, to specify version of ruby
1730
+ - error out if the ruby version doesn't match
1731
+
1732
+ Performance:
1733
+
1734
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
1735
+
1736
+ Bugfixes:
1737
+
1738
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
1739
+ - Use the same ruby to run subprocesses as is running rake (@brixen)
1740
+
1741
+ Documentation:
1742
+
1743
+ - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
1744
+ - Add docs for the --no-cache option (@fluxx, #1796)
1745
+ - Add basic documentation for bin_path and bundle_path (@radar)
1746
+ - Add documentation for the run method in Bundler::Installer
1747
+
1748
+ ## 1.1.5 (Jul 17, 2012)
1749
+
1750
+ Features:
1751
+
1752
+ - Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
1753
+
1754
+ ## 1.1.4 (May 27, 2012)
1755
+
1756
+ Bugfixes:
1757
+
1758
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1759
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1760
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1761
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1762
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1763
+
1764
+ ## 1.1.3 (March 23, 2012)
1765
+
1766
+ Bugfixes:
1767
+
1768
+ - escape the bundler root path (@tenderlove, #1789)
1769
+
1770
+ ## 1.1.2 (March 20, 2012)
1771
+
1772
+ Bugfixes:
1773
+
1774
+ - Fix --deployment for multiple PATH sections of the same source (#1782)
1775
+
1776
+ ## 1.1.1 (March 14, 2012)
1777
+
1778
+ Bugfixes:
1779
+
1780
+ - Rescue EAGAIN so the fetcher works on JRuby on Windows
1781
+ - Stop asking users to report gem installation errors
1782
+ - Clarify "no sources" message
1783
+ - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
1784
+ - URI-encode gem names for dependency API (@rohit, #1672)
1785
+ - Fix `cache` edge case in rubygems 1.3.7 (#1202)
1786
+
1787
+ Performance:
1788
+
1789
+ - Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
1790
+
1791
+ ## 1.1.0 (Mar 7, 2012)
1792
+
1793
+ Bugfixes:
1794
+
1795
+ - Clean up corrupted lockfiles on bundle installs
1796
+ - Prevent duplicate GIT sources
1797
+ - Fix post_install_message when uing the endpoint API
1798
+
1799
+ ## 1.1.rc.8 (Mar 3, 2012)
1800
+
1801
+ Performance:
1802
+
1803
+ - don't resolve if the Gemfile.lock and Gemfile haven't changed
1804
+
1805
+ Bugfixes:
1806
+
1807
+ - Load gemspecs from git even when a released gem has the same version (#1609)
1808
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
1809
+ - handle gemspec development dependencies correctly (@raggi, #1639)
1810
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
1811
+
1812
+ ## 1.1.rc.7 (Dec 29, 2011)
1813
+
1814
+ Bugfixes:
1815
+
1816
+ - Fix bug where `clean` would break when using :path with no gemspec
1817
+
1818
+ ## 1.1.rc.6 (Dec 22, 2011)
1819
+
1820
+ Bugfixes:
1821
+
1822
+ - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
1823
+ - Load gems correctly when GEM_HOME is blank
1824
+ - Refresh gems so Bundler works from inside a bundle
1825
+ - Handle empty .bundle/config files without an error
1826
+
1827
+ ## 1.1.rc.5 (Dec 14, 2011)
1828
+
1829
+ Bugfixes:
1830
+
1831
+ - Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
1832
+
1833
+ ## 1.1.rc.4 (Dec 14, 2011)
1834
+
1835
+ Features:
1836
+
1837
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
1838
+
1839
+ Bugfixes:
1840
+
1841
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
1842
+ - fix `bundle viz` (@hirochachacha, #1586)
1843
+
1844
+ ## 1.1.rc.3 (Dec 8, 2011)
1845
+
1846
+ Bugfixes:
1847
+
1848
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
1849
+ - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
1850
+
1851
+ ## 1.1.rc.2 (Dec 6, 2011)
1852
+
1853
+ Features:
1854
+
1855
+ - Added README.md to `newgem` (@ognevsky, #1574)
1856
+ - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
1857
+
1858
+ Bugfixes:
1859
+
1860
+ - only auto-namespace requires for implied requires (#1531)
1861
+ - fix bundle clean output for git repos (#1473)
1862
+ - use Gem.bindir for bundle clean (#1544, #1532)
1863
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
1864
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
1865
+ - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
1866
+ - fix Psych loading issues
1867
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
1868
+ - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
1869
+ - `newgem` now uses https://rubygems.org (#1562)
1870
+ - `bundle init` now uses https://rubygems.org (@jjb, #1522)
1871
+ - `bundle install/update` does not autoclean when using --path for semver
1872
+
1873
+ Documentation:
1874
+
1875
+ - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
1876
+
1877
+ ## 1.1.rc (Oct 3, 2011)
1878
+
1879
+ Features:
1880
+
1881
+ - add `--shebang` option to bundle install (@bensie, #1467)
1882
+ - build passes on ruby 1.9.3rc1 (#1458, #1469)
1883
+ - hide basic auth credentials for custom sources (#1440, #1463)
1884
+
1885
+ Bugfixes:
1886
+
1887
+ - fix index search result caching (#1446, #1466)
1888
+ - fix fetcher prints multiple times during install (#1445, #1462)
1889
+ - don't mention API errors from non-rubygems.org sources
1890
+ - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
1891
+
1892
+ Documentation:
1893
+
1894
+ - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
1895
+
1896
+ ## 1.1.pre.10 (Sep 27, 2011)
1897
+
1898
+ Features:
1899
+
1900
+ - `config system_bindir foo` added, works like "-n foo" in your .gemrc file
1901
+
1902
+ ## 1.1.pre.9 (Sep 18, 2011)
1903
+
1904
+ Features:
1905
+
1906
+ - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
1907
+ - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
1908
+ - `clean` now takes a `--force` option (#1247, #1426)
1909
+ - `clean` will clean up cached git dirs in bundle clean (#1390)
1910
+ - remove deprecations from DSL (#1119)
1911
+ - autorequire tries directories for gems with dashed names (#1205)
1912
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
1913
+ - load rubygems plugins in the bundle binary (@tpope, #1364)
1914
+ - make `--standalone` respect `--path` (@cowboyd, #1361)
1915
+
1916
+ Bugfixes:
1917
+
1918
+ - Fix `clean` to handle nested gems in a git repo (#1329)
1919
+ - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
1920
+ - Fix fatal error when unable to connect to gem source (#1269)
1921
+ - Fix `outdated` to find pre-release gems that are installed. (#1359)
1922
+ - Fix color for ui. (#1374)
1923
+ - Fix installing to user-owned system gems on OS X
1924
+ - Fix caching issue in the resolver (#1353, #1421)
1925
+ - Fix :github DSL option
1926
+
1927
+ ## 1.1.pre.8 (Aug 13, 2011)
1928
+
1929
+ Bugfixes:
1930
+
1931
+ - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
1932
+ - Fix require_sudo when Gem.bindir isn't writeable (#1352)
1933
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
1934
+ - Fix `install --binstubs` when using --path (#1332)
1935
+
1936
+ ## 1.1.pre.7 (Aug 8, 2011)
1937
+
1938
+ Bugfixes:
1939
+
1940
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
1941
+ - Fixed exception when sudo was needed to install gems (@spastorino)
1942
+
1943
+ ## 1.1.pre.6 (Aug 8, 2011)
1944
+
1945
+ Bugfixes:
1946
+
1947
+ - Fix cross repository dependencies (#1138)
1948
+ - Fix git dependency fetching from API endpoint (#1254)
1949
+ - Fixes for bundle outdated (@joelmoss, #1238)
1950
+ - Fix bundle standalone when using the endpoint (#1240)
1951
+
1952
+ Features:
1953
+
1954
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
1955
+ - bundle clean removes old .gem files (@cldwalker, #1293)
1956
+ - Correcly identify missing child dependency in error message
1957
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
1958
+ - create Gemfile.lock for empty Gemfile (#1218)
1959
+
1960
+ ## 1.1.pre.5 (June 11, 2011)
1961
+
1962
+ Bugfixes:
1963
+
1964
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
1965
+ - Fix HTTP proxy support (@leobessa, #878)
1966
+
1967
+ Features:
1968
+
1969
+ - Speed up `install --deployment` by using the API endpoint
1970
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
1971
+ - Add `install --full-index` to disable the API endpoint, just in case
1972
+ - Significantly speed up install by removing unneeded gemspec fetches
1973
+ - `outdated` command shows outdated gems (@joelmoss, #1130)
1974
+ - Print gem post install messages (@csquared, #1155)
1975
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
1976
+ - Allow `check --path`
1977
+
1978
+ ## 1.1.pre.4 (May 5, 2011)
1979
+
1980
+ Bugfixes:
1981
+
1982
+ - Fix bug that could prevent installing new gems
1983
+
1984
+ ## 1.1.pre.3 (May 4, 2011)
1985
+
1986
+ Features:
1987
+
1988
+ - Add `bundle outdated` to show outdated gems (@joelmoss)
1989
+ - Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
1990
+ - Add Bundler.clean_system, and clean_exec (@wuputah)
1991
+ - Use git config for gem author name and email (@krekoten)
1992
+
1993
+ Bugfixes:
1994
+
1995
+ - Fix error calling Bundler.rubygems.gem_path
1996
+ - Fix error when Gem.path returns Gem::FS instead of String
1997
+
1998
+ ## 1.1.pre.2 (April 28, 2011)
1999
+
2000
+ Features:
2001
+
2002
+ - Add :github option to Gemfile DSL for easy git repos
2003
+ - Merge all fixes from 1.0.12 and 1.0.13
2004
+
2005
+ ## 1.1.pre.1 (February 2, 2011)
2006
+
2007
+ Bugfixes:
2008
+
2009
+ - Compatibility with changes made by Rubygems 1.5
2010
+
2011
+ ## 1.1.pre (January 21, 2011)
2012
+
2013
+ Features:
2014
+
2015
+ - Add bundle clean. Removes unused gems from --path directory
2016
+ - Initial Gemcutter Endpoint API work, BAI Fetching source index
2017
+ - Added bundle install --standalone
2018
+ - Ignore Gemfile.lock when building new gems
2019
+ - Make it possible to override a .gemspec dependency's source in the
2020
+ Gemfile
2021
+
2022
+ Removed:
2023
+
2024
+ - Removed bundle lock
2025
+ - Removed bundle install <path>
2026
+ - Removed bundle install --production
2027
+ - Removed bundle install --disable-shared-gems
2028
+
2029
+ ## 1.0.21 (September 30, 2011)
2030
+
2031
+ - No changes from RC
2032
+
2033
+ ## 1.0.21.rc (September 29, 2011)
2034
+
2035
+ Bugfixes:
2036
+
2037
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
2038
+
2039
+ ## 1.0.20 (September 27, 2011)
2040
+
2041
+ Features:
2042
+
2043
+ - Add platform :maglev (@timfel, #1444)
2044
+
2045
+ Bugfixes:
2046
+
2047
+ - Ensure YAML is required even if Psych is found
2048
+ - Handle directory names that contain invalid regex characters
2049
+
2050
+ ## 1.0.20.rc (September 18, 2011)
2051
+
2052
+ Features:
2053
+
2054
+ - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
2055
+ - Allow clearing without groups by passing `--without ''` (#1259)
2056
+
2057
+ Bugfixes:
2058
+
2059
+ - Manually sort requirements in the lockfile (#1375)
2060
+ - Remove several warnings generated by ruby -w (@stephencelis)
2061
+ - Handle trailing slashes on names passed to `gem` (#1372)
2062
+ - Name modules for gems like 'test-foo_bar' correctly (#1303)
2063
+ - Don't require Psych if Syck is already loaded (#1239)
2064
+
2065
+ ## 1.0.19.rc (September 13, 2011)
2066
+
2067
+ Features:
2068
+
2069
+ - Compatibility with Rubygems 1.8.10 installer changes
2070
+ - Report gem installation failures clearly (@rwilcox, #1380)
2071
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
2072
+
2073
+ Bugfixes:
2074
+
2075
+ - `exec` now works when the command contains 'exec'
2076
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
2077
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
2078
+
2079
+ ## 1.0.18 (August 16, 2011)
2080
+
2081
+ Bugfixes:
2082
+
2083
+ - Fix typo in DEBUG_RESOLVER (@geemus)
2084
+ - Fixes rake 0.9.x warning (@mtylty, #1333)
2085
+ - Fix `bundle cache` again for rubygems 1.3.x
2086
+
2087
+ Features:
2088
+
2089
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
2090
+ - Support hidden gemspec (@trans, @cldwalker, #827)
2091
+ - Make fetch_specs faster (@zeha, #1294)
2092
+ - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
2093
+
2094
+ ## 1.0.17 (August 8, 2011)
2095
+
2096
+ Bugfixes:
2097
+
2098
+ - Fix rake issues with rubygems 1.3.x (#1342)
2099
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
2100
+
2101
+ ## 1.0.16 (August 8, 2011)
2102
+
2103
+ Features:
2104
+
2105
+ - Performance fix for MRI 1.9 (@efficientcloud, #1288)
2106
+ - Shortcuts (like `bundle i`) for all commands (@amatsuda)
2107
+ - Correcly identify missing child dependency in error message
2108
+
2109
+ Bugfixes:
2110
+
2111
+ - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
2112
+ - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
2113
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
2114
+ - Fix `bundle install --without` on kiji (@tmm1, #1287)
2115
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
2116
+
2117
+ Documentation:
2118
+
2119
+ - Documentation for `gem ..., :require => false` (@kmayer, #1292)
2120
+ - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
2121
+
2122
+ ## 1.0.15 (June 9, 2011)
2123
+
2124
+ Features:
2125
+
2126
+ - Improved Rubygems integration, removed many deprecation notices
2127
+
2128
+ Bugfixes:
2129
+
2130
+ - Escape URL arguments to git correctly on Windows (1.0.14 regression)
2131
+
2132
+ ## 1.0.14 (May 27, 2011)
2133
+
2134
+ Features:
2135
+
2136
+ - Rubinius platform :rbx (@rkbodenner)
2137
+ - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
2138
+ - Include user name and email from git config in new gemspec (@ognevsky)
2139
+
2140
+ Bugfixes:
2141
+
2142
+ - Set file permissions after checking out git repos (@tissak)
2143
+ - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
2144
+ - Require the version file in new gemspecs (@rubiii)
2145
+ - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
2146
+ - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
2147
+ - Display installed path correctly on Windows (@tadman)
2148
+ - Escape quotes in git URIs (@mheffner)
2149
+ - Improve Rake 0.9 support (@quix)
2150
+ - Handle certain directories already existing (@raggi)
2151
+ - Escape filenames containing regex characters (@indirect)
2152
+
2153
+ ## 1.0.13 (May 4, 2011)
2154
+
2155
+ Features:
2156
+
2157
+ - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
2158
+ - Informative error when --path points to a broken symlink
2159
+ - Support Rake 0.9 and greater (@e2)
2160
+ - Output full errors for non-TTYs e.g. pow (@josh)
2161
+
2162
+ Bugfixes:
2163
+
2164
+ - Allow spaces in gem path names for gem tasks (@rslifka)
2165
+ - Have cap run bundle install from release_path (@martinjagusch)
2166
+ - Quote git refspec so zsh doesn't expand it (@goneflyin)
2167
+
2168
+ ## 1.0.12 (April 8, 2011)
2169
+
2170
+ Features:
2171
+
2172
+ - Add --no-deployment option to `install` for disabling it on dev machines
2173
+ - Better error message when git fails and cache is present (@parndt)
2174
+ - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
2175
+
2176
+ Bugfixes:
2177
+
2178
+ - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
2179
+ - Fix changing gem order in lock (@gucki)
2180
+ - Remove color escape sequences when displaying man pages (@bgreenlee)
2181
+ - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
2182
+ - Fix gems without a gemspec and directories in bin/ (@epall)
2183
+ - Fix --no-prune option for `bundle install` (@cmeiklejohn)
2184
+
2185
+ ## 1.0.11 (April 1, 2011)
2186
+
2187
+ Features:
2188
+
2189
+ - Compatibility with Rubygems 1.6 and 1.7
2190
+ - Better error messages when a git command fails
2191
+
2192
+ Bugfixes:
2193
+
2194
+ - Don't always update gemspec gems (@carllerche)
2195
+ - Remove ivar warnings (@jackdempsey)
2196
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
2197
+ - Consistent lock for gems with double deps like Cap (@akahn)
2198
+
2199
+ ## 1.0.10 (February 1, 2011)
2200
+
2201
+ Bugfixes:
2202
+
2203
+ - Fix a regression loading YAML gemspecs from :git and :path gems
2204
+ - Requires, namespaces, etc. to work with changes in Rubygems 1.5
2205
+
2206
+ ## 1.0.9 (January 19, 2011)
2207
+
2208
+ Bugfixes:
2209
+
2210
+ - Fix a bug where Bundler.require could remove gems from the load
2211
+ path. In Rails apps with a default application.rb, this removed
2212
+ all gems in groups other than :default and Rails.env
2213
+
2214
+ ## 1.0.8 (January 18, 2011)
2215
+
2216
+ Features:
2217
+
2218
+ - Allow overriding gemspec() deps with :git deps
2219
+ - Add --local option to `bundle update`
2220
+ - Ignore Gemfile.lock in newly generated gems
2221
+ - Use `less` as help pager instead of `more`
2222
+ - Run `bundle exec rake` instead of `rake` in Capistrano tasks
2223
+
2224
+ Bugfixes:
2225
+
2226
+ - Fix --no-cache option for `bundle install`
2227
+ - Allow Vlad deploys to work without Capistrano gem installed
2228
+ - Fix group arguments to `bundle console`
2229
+ - Allow groups to be loaded even if other groups were loaded
2230
+ - Evaluate gemspec() gemspecs in their directory not the cwd
2231
+ - Count on Rake to chdir to the right place in GemHelper
2232
+ - Change Pathnames to Strings for MacRuby
2233
+ - Check git process exit status correctly
2234
+ - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
2235
+
2236
+ ## 1.0.7 (November 17, 2010)
2237
+
2238
+ Bugfixes:
2239
+
2240
+ - Remove Bundler version from the lockfile because it broke
2241
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
2242
+
2243
+ ## 1.0.6 (November 16, 2010)
2244
+
2245
+ Bugfixes:
2246
+
2247
+ - Fix regression in `update` that caused long/wrong results
2248
+ - Allow git gems on other platforms while installing (#579)
2249
+
2250
+ Features:
2251
+
2252
+ - Speed up `install` command using various optimizations
2253
+ - Significantly increase performance of resolver
2254
+ - Use upcoming Rubygems performance improvements (@tmm1)
2255
+ - Warn if the lockfile was generated by a newer version
2256
+ - Set generated gems' homepage to "", so Rubygems will warn
2257
+
2258
+ ## 1.0.5 (November 13, 2010)
2259
+
2260
+ Bugfixes:
2261
+
2262
+ - Fix regression disabling all operations that employ sudo
2263
+
2264
+ ## 1.0.4 (November 12, 2010)
2265
+
2266
+ Bugfixes:
2267
+
2268
+ - Expand relative :paths from Bundler.root (eg ./foogem)
2269
+ - Allow git gems in --without groups while --frozen
2270
+ - Allow gem :ref to be a symbol as well as a string
2271
+ - Fix exception when Gemfile needs a newer Bundler version
2272
+ - Explanation when the current Bundler version conflicts
2273
+ - Explicit error message if Gemfile needs newer Bundler
2274
+ - Ignore an empty string BUNDLE_GEMFILE
2275
+ - Skeleton gemspec now works with older versions of git
2276
+ - Fix shell quoting and ref fetching in GemHelper
2277
+ - Disable colored output in --deployment
2278
+ - Preserve line endings in lock file
2279
+
2280
+ Features:
2281
+
2282
+ - Add support for 'mingw32' platform (aka RubyInstaller)
2283
+ - Large speed increase when Gemfile.lock is already present
2284
+ - Huge speed increase when many (100+) system gems are present
2285
+ - Significant expansion of ISSUES, man pages, and docs site
2286
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
2287
+ - Allow setting roles in built-in cap and vlad tasks
2288
+
2289
+ ## 1.0.3 (October 15, 2010)
2290
+
2291
+ Bugfixes:
2292
+
2293
+ - Use bitwise or in #hash to reduce the chance of overflow
2294
+ - `bundle update` now works with :git + :tag updates
2295
+ - Record relative :path options in the Gemfile.lock
2296
+ - :groups option on gem method in Gemfile now works
2297
+ - Add #platform method and :platform option to Gemfile DSL
2298
+ - --without now accepts a quoted, space-separated list
2299
+ - Installing after --deployment with no lock is now possible
2300
+ - Binstubs can now be symlinked
2301
+ - Print warning if cache for --local install is missing gems
2302
+ - Improve output when installing to a path
2303
+ - The tests all pass! Yay!
2304
+
2305
+ ## 1.0.2 (October 2, 2010)
2306
+
2307
+ Bugfix:
2308
+
2309
+ - Actually include the man pages in the gem, so help works
2310
+
2311
+ ## 1.0.1 (October 1, 2010)
2312
+
2313
+ Features:
2314
+
2315
+ - Vlad deployment recipe, `require 'bundler/vlad'`
2316
+ - Prettier bundle graphs
2317
+ - Improved gem skeleton for `bundle gem`
2318
+ - Prompt on file clashes when generating a gem
2319
+ - Option to generate binary with gem skeleton
2320
+ - Allow subclassing of GemHelper for custom tasks
2321
+ - Chdir to gem directory during `bundle open`
2322
+
2323
+ Bugfixes:
2324
+
2325
+ - Allow gemspec requirements with a list of versions
2326
+ - Accept lockfiles with windows line endings
2327
+ - Respect BUNDLE_WITHOUT env var
2328
+ - Allow `gem "foo", :platform => :jruby`
2329
+ - Specify loaded_from path in fake gemspec
2330
+ - Flesh out gem_helper tasks, raise errors correctly
2331
+ - Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
2332
+
2333
+ ## 1.0.0 (August 29, 2010)
2334
+
2335
+ Features:
2336
+
2337
+ - You can now define `:bundle_cmd` in the capistrano task
2338
+
2339
+ Bugfixes:
2340
+
2341
+ - Various bugfixes to the built-in rake helpers
2342
+ - Fix a bug where shortrefs weren't unique enough and were
2343
+ therfore colliding
2344
+ - Fix a small bug involving checking whether a local git
2345
+ clone is up to date
2346
+ - Correctly handle explicit '=' dependencies with gems
2347
+ pinned to a git source
2348
+ - Fix an issue with Windows-generated lockfiles by reading
2349
+ and writing the lockfile in binary mode
2350
+ - Fix an issue with shelling out to git in Windows by
2351
+ using double quotes around paths
2352
+ - Detect new Rubygems sources in the Gemfile and update
2353
+ the lockfile
2354
+
2355
+ ## 1.0.0.rc.6 (August 23, 2010)
2356
+
2357
+ Features:
2358
+
2359
+ - Much better documentation for most of the commands and Gemfile
2360
+ format
2361
+
2362
+ Bugfixes:
2363
+
2364
+ - Don't attempt to create directories if they already exist
2365
+ - Fix the capistrano task so that it actually runs
2366
+ - Update the Gemfile template to reference rubygems.org instead
2367
+ of :gemcutter
2368
+ - bundle exec should exit with a non zero exit code when the gem
2369
+ binary does not exist or the file is not executable.
2370
+ - Expand paths in Gemfile relative to the Gemfile and not the current
2371
+ working directory.
2372
+
2373
+ ## 1.0.0.rc.5 (August 10, 2010)
2374
+
2375
+ Features:
2376
+
2377
+ - Make the Capistrano task more concise.
2378
+
2379
+ Bugfixes:
2380
+
2381
+ - Fix a regression with determining whether or not to use sudo
2382
+ - Allow using the --gemfile flag with the --deployment flag
2383
+
2384
+ ## 1.0.0.rc.4 (August 9, 2010)
2385
+
2386
+ Features:
2387
+
2388
+ - `bundle gem NAME` command to generate a new gem with Gemfile
2389
+ - Bundle config file location can be specified by BUNDLE_APP_CONFIG
2390
+ - Add --frozen to disable updating the Gemfile.lock at runtime
2391
+ (default with --deployment)
2392
+ - Basic Capistrano task now added as 'bundler/capistrano'
2393
+
2394
+ Bugfixes:
2395
+
2396
+ - Multiple bundler process no longer share a tmp directory
2397
+ - `bundle update GEM` always updates dependencies of GEM as well
2398
+ - Deleting the cache directory no longer causes errors
2399
+ - Moving the bundle after installation no longer causes git errors
2400
+ - Bundle path is now correctly remembered on a read-only filesystem
2401
+ - Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
2402
+ - Fetch gems from vendor/cache, even without --local
2403
+ - Sort lockfile by platform as well as spec
2404
+
2405
+ ## 1.0.0.rc.3 (August 3, 2010)
2406
+
2407
+ Features:
2408
+
2409
+ - Deprecate --production flag for --deployment, since the former
2410
+ was causing confusion with the :production group
2411
+ - Add --gemfile option to `bundle check`
2412
+ - Reduce memory usage of `bundle install` by 2-4x
2413
+ - Improve message from `bundle check` under various conditions
2414
+ - Better error when a changed Gemfile conflicts with Gemfile.lock
2415
+
2416
+ Bugfixes:
2417
+
2418
+ - Create bin/ directory if it is missing, then install binstubs
2419
+ - Error nicely on the edge case of a pinned gem with no spec
2420
+ - Do not require gems for other platforms
2421
+ - Update git sources along with the gems they contain
2422
+
2423
+ ## 1.0.0.rc.2 (July 29, 2010)
2424
+
2425
+ - `bundle install path` was causing confusion, so we now print
2426
+ a clarifying warning. The preferred way to install to a path
2427
+ (which will not print the warning) is
2428
+ `bundle install --path path/to/install`.
2429
+ - `bundle install --system` installs to the default system
2430
+ location ($BUNDLE_PATH or $GEM_HOME) even if you previously
2431
+ used `bundle install --path`
2432
+ - completely remove `--disable-shared-gems`. If you install to
2433
+ system, you will not be isolated, while if you install to
2434
+ another path, you will be isolated from gems installed to
2435
+ the system. This was mostly an internal option whose naming
2436
+ and semantics were extremely confusing.
2437
+ - Add a `--production` option to `bundle install`:
2438
+ - by default, installs to `vendor/bundle`. This can be
2439
+ overridden with the `--path` option
2440
+ - uses `--local` if `vendor/cache` is found. This will
2441
+ guarantee that Bundler does not attempt to connect to
2442
+ Rubygems and will use the gems cached in `vendor/cache`
2443
+ instead
2444
+ - Raises an exception if a Gemfile.lock is not found
2445
+ - Raises an exception if you modify your Gemfile in development
2446
+ but do not check in an updated Gemfile.lock
2447
+ - Fixes a bug where switching a source from Rubygems to git
2448
+ would always say "the git source is not checked out" when
2449
+ running `bundle install`
2450
+
2451
+ NOTE: We received several reports of "the git source has not
2452
+ been checked out. Please run bundle install". As far as we
2453
+ can tell, these problems have two possible causes:
2454
+
2455
+ 1. `bundle install ~/.bundle` in one user, but actually running
2456
+ the application as another user. Never install gems to a
2457
+ directory scoped to a user (`~` or `$HOME`) in deployment.
2458
+ 2. A bug that happened when changing a gem to a git source.
2459
+
2460
+ To mitigate several common causes of `(1)`, please use the
2461
+ new `--production` flag. This flag is simply a roll-up of
2462
+ the best practices we have been encouraging people to use
2463
+ for deployment.
2464
+
2465
+ If you want to share gems across deployments, and you use
2466
+ Capistrano, symlink release_path/current/vendor/bundle to
2467
+ release_path/shared/bundle. This will keep deployments
2468
+ snappy while maintaining the benefits of clean, deploy-time
2469
+ isolation.
2470
+
2471
+ ## 1.0.0.rc.1 (July 26, 2010)
2472
+
2473
+ - Fixed a bug with `bundle install` on multiple machines and git
2474
+
2475
+ ## 1.0.0.beta.10 (July 25, 2010)
2476
+
2477
+ - Last release before 1.0.0.rc.1
2478
+ - Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
2479
+ - Fix `bundle install` immediately after modifying the :submodule option
2480
+ - Don't write to Gemfile.lock if nothing has changed, fixing situations
2481
+ where bundle install was run with a different user than the app
2482
+ itself
2483
+ - Fix a bug where other platforms were being wiped on `bundle update`
2484
+ - Don't ask for root password on `bundle install` if not needed
2485
+ - Avoid setting `$GEM_HOME` where not needed
2486
+ - First solid pass of `bundle config`
2487
+ - Add build options
2488
+ - `bundle config build.mysql --with-mysql-config=/path/to/config`
2489
+
2490
+ ## 1.0.0.beta.9 (July 21, 2010)
2491
+
2492
+ - Fix install failure when switching from a path to git source
2493
+ - Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
2494
+ - Fix `bundle *` from inside a bundle with --disable-shared-gem
2495
+ - Shim Gem.refresh. This is used by Unicorn
2496
+ - Fix install failure when a path's dependencies changed
2497
+
2498
+ ## 1.0.0.beta.8 (July 20, 2010)
2499
+
2500
+ - Fix a Beta 7 bug involving Ruby 1.9
2501
+
2502
+ ## 1.0.0.beta.7 (July 20, 2010, yanked)
2503
+
2504
+ - Running `bundle install` twice in a row with a git source always crashed
2505
+
2506
+ ## 1.0.0.beta.6 (July 20, 2010, yanked)
2507
+
2508
+ - Create executables with bundle install --binstubs
2509
+ - You can customize the location (default is app/bin) with --binstubs other/location
2510
+ - Fix a bug where the Gemfile.lock would be deleted even if the update was exited
2511
+ - Fix a bug where cached gems for other platforms were sometimes deleted
2512
+ - Clean up output when nothing was deleted from cache (it previously said
2513
+ "Removing outdated gems ...")
2514
+ - Improve performance of bundle install if the git gem was already checked out,
2515
+ and the revision being used already exists locally
2516
+ - Fix bundle show bundler in some cases
2517
+ - Fix bugs with bundle update
2518
+ - Don't ever run git commands at runtime (fixes a number of common passenger issues)
2519
+ - Fixes an obscure bug where switching the source of a gem could fail to correctly
2520
+ change the source of its dependencies
2521
+ - Support multiple version dependencies in the Gemfile
2522
+ (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
2523
+ - Raise an exception for ambiguous uses of multiple declarations of the same gem
2524
+ (for instance, with different versions or sources).
2525
+ - Fix cases where the same dependency appeared several times in the Gemfile.lock
2526
+ - Fix a bug where require errors were being swallowed during Bundler.require
2527
+
2528
+ ## 1.0.0.beta.1
2529
+
2530
+ - No `bundle lock` command. Locking happens automatically on install or update
2531
+ - No .bundle/environment.rb. Require 'bundler/setup' instead.
2532
+ - $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
2533
+ - Remove lockfiles generated by 0.9
2534
+
2535
+ ## 0.9.26
2536
+
2537
+ Features:
2538
+
2539
+ - error nicely on incompatible 0.10 lockfiles
2540
+
2541
+ ## 0.9.25 (May 3, 2010)
2542
+
2543
+ Bugfixes:
2544
+
2545
+ - explicitly coerce Pathname objects to Strings for Ruby 1.9
2546
+ - fix some newline weirdness in output from install command
2547
+
2548
+ ## 0.9.24 (April 22, 2010)
2549
+
2550
+ Features:
2551
+
2552
+ - fetch submodules for git sources
2553
+ - limit the bundled version of bundler to the same as the one installing
2554
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
2555
+ - serialize GemCache sources correctly, so locking works
2556
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
2557
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
2558
+
2559
+ Bugfixes:
2560
+
2561
+ - don't try to regenerate environment.rb if it is read-only
2562
+ - prune outdated gems with the platform "ruby"
2563
+ - prune cache without errors when there are directories or non-gem files
2564
+ - don't re-write environment.rb if running after it has been loaded
2565
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
2566
+
2567
+ ## 0.9.23 (April 20, 2010)
2568
+
2569
+ Bugfixes:
2570
+
2571
+ - cache command no longer prunes gems created by an older rubygems version
2572
+ - cache command no longer prunes gems that are for other platforms
2573
+
2574
+ ## 0.9.22 (April 20, 2010)
2575
+
2576
+ Features:
2577
+
2578
+ - cache command now prunes stale .gem files from vendor/cache
2579
+ - init --gemspec command now generates development dependencies
2580
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
2581
+ - remove .gem files generated after installing a gem from a :path (#286)
2582
+ - improve install/lock messaging (#284)
2583
+
2584
+ Bugfixes:
2585
+
2586
+ - ignore cached gems that are for another platform (#288)
2587
+ - install Windows gems that have no architecture set, like rcov (#277)
2588
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
2589
+ - fix the `rake install` task
2590
+ - add GemspecError so it can be raised without (further) error (#292)
2591
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
2592
+
2593
+ ## 0.9.21 (April 16, 2010)
2594
+
2595
+ Bugfixes:
2596
+
2597
+ - don't raise 'omg wtf' when lockfile is outdated
2598
+
2599
+ ## 0.9.20 (April 15, 2010)
2600
+
2601
+ Features:
2602
+
2603
+ - load YAML format gemspecs
2604
+ - no backtraces when calling Bundler.setup if gems are missing
2605
+ - no backtraces when trying to exec a file without the executable bit
2606
+
2607
+ Bugfixes:
2608
+
2609
+ - fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
2610
+ - request install instead of lock when env.rb is out of sync with Gemfile.lock
2611
+
2612
+ ## 0.9.19 (April 12, 2010)
2613
+
2614
+ Features:
2615
+
2616
+ - suggest `bundle install --relock` when the Gemfile has changed (#272)
2617
+ - source support for Rubygems servers without prerelease gem indexes (#262)
2618
+
2619
+ Bugfixes:
2620
+
2621
+ - don't set up all groups every time Bundler.setup is called while locked (#263)
2622
+ - fix #full_gem_path for git gems while locked (#268)
2623
+ - eval gemspecs at the top level, not inside the Bundler class (#269)
2624
+
2625
+
2626
+ ## 0.9.18 (April 8, 2010)
2627
+
2628
+ Features:
2629
+
2630
+ - console command that runs irb with bundle (and optional group) already loaded
2631
+
2632
+ Bugfixes:
2633
+
2634
+ - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
2635
+ - fixes Yard, which found plugins in Gem.source_index that it could not load
2636
+ - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
2637
+
2638
+ ## 0.9.17 (April 7, 2010)
2639
+
2640
+ Features:
2641
+
2642
+ - Bundler.require now calls Bundler.setup automatically
2643
+ - Gem::Specification#add_bundler_dependencies added for gemspecs
2644
+
2645
+ Bugfixes:
2646
+
2647
+ - Gem paths are not longer duplicated while loading bundler
2648
+ - exec no longer duplicates RUBYOPT if it is already set correctly
2649
+
2650
+ ## 0.9.16 (April 3, 2010)
2651
+
2652
+ Features:
2653
+
2654
+ - exit gracefully on INT signal
2655
+ - resolver output now indicates whether remote sources were checked
2656
+ - print error instead of backtrace when exec cannot find a binary (#241)
2657
+
2658
+ Bugfixes:
2659
+
2660
+ - show, check, and open commands work again while locked (oops)
2661
+ - show command for git gems
2662
+ - outputs branch names other than master
2663
+ - gets the correct sha from the checkout
2664
+ - doesn't print sha twice if :ref is set
2665
+ - report errors from bundler/setup.rb without backtraces (#243)
2666
+ - fix Gem::Spec#git_version to not error on unloaded specs
2667
+ - improve deprecation, Gemfile, and command error messages (#242)
2668
+
2669
+ ## 0.9.15 (April 1, 2010)
2670
+
2671
+ Features:
2672
+
2673
+ - use the env_file if possible instead of doing a runtime resolve
2674
+ - huge speedup when calling Bundler.setup while locked
2675
+ - ensures bundle exec is fast while locked
2676
+ - regenerates env_file if it was generated by an older version
2677
+ - update cached/packed gems when you update gems via bundle install
2678
+
2679
+ Bugfixes:
2680
+
2681
+ - prep for Rubygems 1.3.7 changes
2682
+ - install command now pulls git branches correctly (#211)
2683
+ - raise errors on invalid options in the Gemfile
2684
+
2685
+ ## 0.9.14 (March 30, 2010)
2686
+
2687
+ Features:
2688
+
2689
+ - install command output vastly improved
2690
+ - installation message now accurate, with 'using' and 'installing'
2691
+ - bundler gems no longer listed as 'system gems'
2692
+ - show command output now includes sha and branch name for git gems
2693
+ - init command now takes --gemspec option for bootstrapping gem Gemfiles
2694
+ - Bundler.with_clean_env for shelling out to ruby scripts
2695
+ - show command now aliased as 'list'
2696
+ - VISUAL env var respected for GUI editors
2697
+
2698
+ Bugfixes:
2699
+
2700
+ - exec command now finds binaries from gems with no gemspec
2701
+ - note source of Gemfile resolver errors
2702
+ - don't blow up if git urls are changed
2703
+
2704
+ ## 0.9.13 (March 23, 2010)
2705
+
2706
+ Bugfixes:
2707
+
2708
+ - exec command now finds binaries from gems installed via :path
2709
+ - gem dependencies are pulled in even if their type is nil
2710
+ - paths with spaces have double-quotes to work on Windows
2711
+ - set GEM_PATH in environment.rb so generators work with Rails 2
2712
+
2713
+ ## 0.9.12 (March 17, 2010)
2714
+
2715
+ - refactoring, internal cleanup, more solid specs
2716
+
2717
+ Features:
2718
+
2719
+ - check command takes a --without option
2720
+ - check command exits 1 if the check fails
2721
+
2722
+ Bugfixes:
2723
+
2724
+ - perform a topological sort on resolved gems (#191)
2725
+ - gems from git work even when paths or repos have spaces (#196)
2726
+ - Specification#loaded_from returns a String, like Gem::Specification (#197)
2727
+ - specs eval from inside the gem directory, even when locked
2728
+ - virtual gemspecs are now saved in environment.rb for use when loading
2729
+ - unify the Installer's local index and the runtime index (#204)
2730
+
2731
+ ## 0.9.11 (March 9, 2010)
2732
+
2733
+ - added roadmap with future development plans
2734
+
2735
+ Features:
2736
+
2737
+ - install command can take the path to the gemfile with --gemfile (#125)
2738
+ - unknown command line options are now rejected (#163)
2739
+ - exec command hugely sped up while locked (#177)
2740
+ - show command prints the install path if you pass it a gem name (#148)
2741
+ - open command edits an installed gem with $EDITOR (#148)
2742
+ - Gemfile allows assigning an array of groups to a gem (#114)
2743
+ - Gemfile allows :tag option on :git sources
2744
+ - improve backtraces when a gemspec is invalid
2745
+ - improve performance by installing gems from the cache if present
2746
+
2747
+ Bugfixes:
2748
+
2749
+ - normalize parameters to Bundler.require (#153)
2750
+ - check now checks installed gems rather than cached gems (#162)
2751
+ - don't update the gem index when installing after locking (#169)
2752
+ - bundle parenthesises arguments for 1.8.6 (#179)
2753
+ - gems can now be assigned to multiple groups without problems (#135)
2754
+ - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
2755
+ - fix a Dependency.to_yaml error due to accidentally including sources and groups
2756
+ - don't reinstall packed gems
2757
+ - fix gems with git sources that are private repositories
2758
+
2759
+ ## 0.9.10 (March 1, 2010)
2760
+
2761
+ - depends on Rubygems 1.3.6
2762
+
2763
+ Bugfixes:
2764
+
2765
+ - support locking after install --without
2766
+ - don't reinstall gems from the cache if they're already in the bundle
2767
+ - fixes for Ruby 1.8.7 and 1.9
2768
+
2769
+ ## 0.9.9 (February 25, 2010)
2770
+
2771
+ Bugfixes:
2772
+
2773
+ - don't die if GEM_HOME is an empty string
2774
+ - fixes for Ruby 1.8.6 and 1.9
2775
+
2776
+ ## 0.9.8 (February 23, 2010)
2777
+
2778
+ Features:
2779
+
2780
+ - pack command which both caches and locks
2781
+ - descriptive error if a cached gem is missing
2782
+ - remember the --without option after installing
2783
+ - expand paths given in the Gemfile via the :path option
2784
+ - add block syntax to the git and group options in the Gemfile
2785
+ - support gems with extensions that don't admit they depend on rake
2786
+ - generate gems using gem build gemspec so git gems can have native extensions
2787
+ - print a useful warning if building a gem fails
2788
+ - allow manual configuration via BUNDLE_PATH
2789
+
2790
+ Bugfixes:
2791
+
2792
+ - eval gemspecs in the gem directory so relative paths work
2793
+ - make default spec for git sources valid
2794
+ - don't reinstall gems that are already packed
2795
+
2796
+ ## 0.9.7 (February 17, 2010)
2797
+
2798
+ Bugfixes:
2799
+
2800
+ - don't say that a gem from an excluded group is "installing"
2801
+ - improve crippling rubygems in locked scenarios
2802
+
2803
+ ## 0.9.6 (February 16, 2010)
2804
+
2805
+ Features:
2806
+
2807
+ - allow String group names
2808
+ - a number of improvements in the documentation and error messages
2809
+
2810
+ Bugfixes:
2811
+
2812
+ - set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
2813
+ - ensure Rubygems is fully loaded in Ruby 1.9 before patching it
2814
+ - fix `bundle install` for a locked app without a .bundle directory
2815
+ - require gems in the order that the resolver determines
2816
+ - make the tests platform agnostic so we can confirm that they're green on JRuby
2817
+ - fixes for Ruby 1.9
2818
+
2819
+ ## 0.9.5 (February 12, 2010)
2820
+
2821
+ Features:
2822
+
2823
+ - added support for :path => "relative/path"
2824
+ - added support for older versions of git
2825
+ - added `bundle install --disable-shared-gems`
2826
+ - Bundler.require fails silently if a library does not have a file on the load path with its name
2827
+ - Basic support for multiple rubies by namespacing the default bundle path using the version and engine
2828
+
2829
+ Bugfixes:
2830
+
2831
+ - if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
2832
+ - same if it's not present with `bundle check`
2833
+ - same if it's not present with `bundle install`