pract6 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gem/credentials +2 -0
- data/.gem/ruby/2.3.0/bin/bundle +22 -0
- data/.gem/ruby/2.3.0/bin/bundler +22 -0
- data/.gem/ruby/2.3.0/bin/rackup +22 -0
- data/.gem/ruby/2.3.0/cache/activesupport-5.1.4.gem +0 -0
- data/.gem/ruby/2.3.0/cache/bundler-1.15.4.gem +0 -0
- data/.gem/ruby/2.3.0/cache/bundler-1.16.0.pre.3.gem +0 -0
- data/.gem/ruby/2.3.0/cache/coderay-1.1.2.gem +0 -0
- data/.gem/ruby/2.3.0/cache/concurrent-ruby-1.0.5.gem +0 -0
- data/.gem/ruby/2.3.0/cache/ffi-1.9.18.gem +0 -0
- data/.gem/ruby/2.3.0/cache/i18n-0.8.6.gem +0 -0
- data/.gem/ruby/2.3.0/cache/mini_portile2-2.3.0.gem +0 -0
- data/.gem/ruby/2.3.0/cache/nokogiri-1.8.1.gem +0 -0
- data/.gem/ruby/2.3.0/cache/rack-2.0.3.gem +0 -0
- data/.gem/ruby/2.3.0/cache/rack-test-0.7.0.gem +0 -0
- data/.gem/ruby/2.3.0/cache/rainbow-2.2.2.gem +0 -0
- data/.gem/ruby/2.3.0/cache/rdoc-5.1.0.gem +0 -0
- data/.gem/ruby/2.3.0/cache/rspec-support-3.7.0.gem +0 -0
- data/.gem/ruby/2.3.0/cache/thread_safe-0.3.6.gem +0 -0
- data/.gem/ruby/2.3.0/cache/tzinfo-1.2.3.gem +0 -0
- data/.gem/ruby/2.3.0/extensions/x86_64-linux/2.3.0/nokogiri-1.8.1/gem_make.out +5 -0
- data/.gem/ruby/2.3.0/extensions/x86_64-linux/2.3.0/rainbow-2.2.2/gem_make.out +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/CHANGELOG.md +749 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/MIT-LICENSE +20 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/README.rdoc +39 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support.rb +103 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/all.rb +3 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/array_inquirer.rb +46 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/backtrace_cleaner.rb +103 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/benchmarkable.rb +49 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/builder.rb +6 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache.rb +694 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/file_store.rb +195 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/mem_cache_store.rb +197 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/memory_store.rb +167 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/null_store.rb +41 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/strategy/local_cache.rb +163 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/cache/strategy/local_cache_middleware.rb +43 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb +856 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/concern.rb +142 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/concurrency/share_lock.rb +225 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/configurable.rb +148 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext.rb +3 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array.rb +7 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/access.rb +90 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/conversions.rb +211 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/extract_options.rb +29 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/grouping.rb +107 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/inquiry.rb +17 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/array/wrap.rb +46 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/benchmark.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/big_decimal.rb +1 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/big_decimal/conversions.rb +12 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class.rb +2 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/attribute.rb +128 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/attribute_accessors.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/class/subclasses.rb +55 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date.rb +5 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/acts_like.rb +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/blank.rb +12 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/calculations.rb +143 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/conversions.rb +95 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date/zones.rb +6 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/calculations.rb +340 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/compatibility.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_and_time/zones.rb +39 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time.rb +5 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/acts_like.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/blank.rb +12 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/calculations.rb +209 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/compatibility.rb +16 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/date_time/conversions.rb +105 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/digest/uuid.rb +51 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/enumerable.rb +157 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/file.rb +1 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/file/atomic.rb +68 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash.rb +9 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/compact.rb +27 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/conversions.rb +261 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/deep_merge.rb +38 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/except.rb +22 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/indifferent_access.rb +22 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/keys.rb +170 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/reverse_merge.rb +22 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/slice.rb +48 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/transform_values.rb +30 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer.rb +3 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/inflections.rb +29 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/multiple.rb +10 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/time.rb +29 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/concern.rb +12 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/reporting.rb +43 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/kernel/singleton_class.rb +6 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/load_error.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/marshal.rb +22 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module.rb +11 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/aliasing.rb +29 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/anonymous.rb +28 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attr_internal.rb +36 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attribute_accessors.rb +218 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +148 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/concerning.rb +135 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/delegation.rb +285 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/deprecation.rb +23 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/introspection.rb +60 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/reachable.rb +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/module/remove_method.rb +35 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/name_error.rb +31 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/bytes.rb +64 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/conversions.rb +138 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/inquiry.rb +26 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/numeric/time.rb +74 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/acts_like.rb +10 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/blank.rb +145 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/conversions.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/deep_dup.rb +53 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/duplicable.rb +154 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/inclusion.rb +27 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/instance_variables.rb +28 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/json.rb +219 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/to_param.rb +1 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/to_query.rb +84 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/try.rb +146 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/object/with_options.rb +80 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/conversions.rb +31 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/each.rb +21 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/include_range.rb +23 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/range/overlaps.rb +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/regexp.rb +9 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/securerandom.rb +23 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string.rb +13 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/access.rb +104 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/behavior.rb +6 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/conversions.rb +57 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/exclude.rb +11 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/filters.rb +102 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/indent.rb +43 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/inflections.rb +240 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/inquiry.rb +13 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/multibyte.rb +53 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/output_safety.rb +259 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/strip.rb +23 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/zones.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time.rb +5 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/acts_like.rb +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/calculations.rb +307 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/compatibility.rb +14 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/conversions.rb +70 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/time/zones.rb +111 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/uri.rb +24 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb +753 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies/autoload.rb +77 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/dependencies/interlock.rb +55 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation.rb +44 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/behaviors.rb +90 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/constant_accessor.rb +50 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/instance_delegator.rb +37 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/method_wrappers.rb +70 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/proxy_wrappers.rb +151 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/deprecation/reporting.rb +112 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/descendants_tracker.rb +60 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration.rb +420 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration/iso8601_parser.rb +123 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/duration/iso8601_serializer.rb +53 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/evented_file_update_checker.rb +203 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/execution_wrapper.rb +126 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/executor.rb +6 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/file_update_checker.rb +161 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/gem_version.rb +15 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/gzip.rb +36 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/hash_with_indifferent_access.rb +341 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/i18n.rb +13 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/i18n_railtie.rb +116 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflections.rb +70 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector.rb +7 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/inflections.rb +244 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/methods.rb +391 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/inflector/transliterate.rb +109 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json.rb +2 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json/decoding.rb +74 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/json/encoding.rb +128 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/key_generator.rb +71 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/lazy_load_hooks.rb +76 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/locale/en.yml +135 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/log_subscriber.rb +111 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/log_subscriber/test_helper.rb +104 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger.rb +106 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger_silence.rb +28 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/logger_thread_safe_level.rb +31 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/message_encryptor.rb +156 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/message_verifier.rb +134 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte.rb +21 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte/chars.rb +233 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/multibyte/unicode.rb +392 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications.rb +214 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications/fanout.rb +157 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/notifications/instrumenter.rb +91 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper.rb +369 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_converter.rb +182 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_currency_converter.rb +44 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_delimited_converter.rb +27 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_human_converter.rb +66 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_human_size_converter.rb +57 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_percentage_converter.rb +12 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_phone_converter.rb +56 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/number_to_rounded_converter.rb +72 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/number_helper/rounding_helper.rb +64 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/option_merger.rb +25 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/ordered_hash.rb +48 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/ordered_options.rb +83 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/per_thread_registry.rb +58 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/proxy_object.rb +13 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/rails.rb +33 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/railtie.rb +51 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/reloader.rb +129 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/rescuable.rb +173 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/security_utils.rb +27 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/string_inquirer.rb +32 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/subscriber.rb +124 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/tagged_logging.rb +77 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/test_case.rb +71 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/assertions.rb +197 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/autorun.rb +5 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/constant_lookup.rb +49 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/declarative.rb +26 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/deprecation.rb +37 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/file_fixtures.rb +34 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/isolation.rb +106 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/method_call_assertions.rb +41 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/setup_and_teardown.rb +50 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/stream.rb +42 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/tagged_logging.rb +25 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/time_helpers.rb +170 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/time.rb +18 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/time_with_zone.rb +513 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/values/time_zone.rb +550 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/values/unicode_tables.dat +0 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/version.rb +8 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini.rb +207 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/jdom.rb +181 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/libxml.rb +78 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/libxmlsax.rb +81 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/nokogiri.rb +81 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/nokogirisax.rb +84 -0
- data/.gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/xml_mini/rexml.rb +128 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/CHANGELOG.md +2833 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/LICENSE.md +23 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/README.md +59 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundle +31 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundle_ruby +60 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/exe/bundler +4 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler.rb +543 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/build_metadata.rb +38 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/capistrano.rb +22 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli.rb +746 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/add.rb +25 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/binstubs.rb +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/cache.rb +36 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/check.rb +38 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/clean.rb +25 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/common.rb +102 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/config.rb +119 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/console.rb +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/doctor.rb +94 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/exec.rb +105 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/gem.rb +249 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/info.rb +50 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/init.rb +46 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/inject.rb +60 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/install.rb +214 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/issue.rb +40 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/list.rb +22 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/lock.rb +63 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/open.rb +26 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/outdated.rb +260 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/package.rb +49 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/platform.rb +46 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/plugin.rb +24 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/pristine.rb +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/show.rb +75 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/update.rb +89 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/cli/viz.rb +31 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client.rb +109 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client/cache.rb +120 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compact_index_client/updater.rb +107 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/compatibility_guard.rb +14 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/constants.rb +7 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/current_ruby.rb +86 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/definition.rb +985 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dep_proxy.rb +48 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dependency.rb +138 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/deployment.rb +69 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/deprecate.rb +33 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/dsl.rb +599 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/endpoint_specification.rb +141 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/env.rb +153 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/environment_preserver.rb +59 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/errors.rb +158 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/feature_flag.rb +67 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher.rb +312 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/base.rb +52 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/compact_index.rb +126 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/dependency.rb +82 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/downloader.rb +79 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/fetcher/index.rb +52 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/friendly_errors.rb +127 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_helper.rb +202 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_helpers.rb +101 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_remote_fetcher.rb +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_tasks.rb +7 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gem_version_promoter.rb +176 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/gemdeps.rb +29 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/graph.rb +152 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/index.rb +213 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/injector.rb +94 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/inline.rb +74 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer.rb +281 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/gem_installer.rb +78 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/parallel_installer.rb +228 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/installer/standalone.rb +53 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lazy_specification.rb +123 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lockfile_generator.rb +95 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/lockfile_parser.rb +256 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/match_platform.rb +24 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/mirror.rb +223 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin.rb +285 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/api.rb +81 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/api/source.rb +307 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/dsl.rb +53 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/index.rb +157 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer.rb +96 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer/git.rb +38 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/installer/rubygems.rb +27 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/plugin/source_list.rb +27 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/process_lock.rb +24 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/psyched_yaml.rb +28 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/remote_specification.rb +114 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/resolver.rb +367 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/resolver/spec_group.rb +111 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/retry.rb +66 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ruby_dsl.rb +18 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ruby_version.rb +152 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_ext.rb +210 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_gem_installer.rb +99 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/rubygems_integration.rb +891 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/runtime.rb +318 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/settings.rb +442 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/settings/validator.rb +79 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/setup.rb +28 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/shared_helpers.rb +351 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/similarity_detector.rb +63 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source.rb +94 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/gemspec.rb +18 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/git.rb +329 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/git/git_proxy.rb +256 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/metadata.rb +63 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/path.rb +249 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/path/installer.rb +74 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/rubygems.rb +532 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source/rubygems/remote.rb +66 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/source_list.rb +186 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/spec_set.rb +189 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/.document +1 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/certificate_manager.rb +66 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/stub_specification.rb +108 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable +21 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable.bundler +105 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Executable.standalone +14 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/Gemfile +7 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/gems.rb +8 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/.travis.yml.tt +5 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/Gemfile.tt +6 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/README.md.tt +47 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/Rakefile.tt +29 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/bin/console.tt +14 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/bin/setup.tt +8 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/gitignore.tt +20 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/newgem.gemspec.tt +49 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/rspec.tt +3 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +9 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui.rb +9 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/rg_proxy.rb +19 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/shell.rb +144 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/ui/silent.rb +69 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/uri_credentials_filter.rb +37 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +138 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +67 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +46 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
- 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
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor.rb +509 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions.rb +321 -0
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
- 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
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/base.rb +679 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/command.rb +135 -0
- 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
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/error.rb +32 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/invocation.rb +177 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
- 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
- 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
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +70 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/option.rb +146 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/parser/options.rb +221 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/runner.rb +324 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +437 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/util.rb +268 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_fileutils.rb +9 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_molinillo.rb +4 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_persistent.rb +52 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vendored_thor.rb +8 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/version.rb +28 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/version_ranges.rb +76 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/vlad.rb +17 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/worker.rb +106 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/lib/bundler/yaml_serializer.rb +90 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.1 +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.1.txt +40 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-add.ronn +29 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.1 +40 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.1.txt +48 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-binstubs.ronn +43 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.1 +31 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.1.txt +32 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-check.ronn +26 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.1 +24 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.1.txt +26 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-clean.ronn +18 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.1 +455 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.1.txt +491 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-config.ronn +372 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.1 +165 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.1.txt +178 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-exec.ronn +152 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.1 +80 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.1.txt +91 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-gem.ronn +78 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.1 +20 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.1.txt +21 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-info.ronn +17 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.1 +20 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.1.txt +24 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-init.ronn +18 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.1 +33 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.1.txt +32 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-inject.ronn +22 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.1 +305 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.1.txt +385 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-install.ronn +369 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.1 +20 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.1.txt +21 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-list.ronn +15 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.1 +84 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.1.txt +93 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-lock.ronn +94 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.1 +32 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.1.txt +29 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-open.ronn +19 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.1 +151 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.1.txt +127 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-outdated.ronn +107 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.1 +55 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.1.txt +79 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-package.ronn +72 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.1 +61 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.1.txt +57 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-platform.ronn +42 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.1 +34 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.1.txt +44 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-pristine.ronn +34 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.1 +23 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.1.txt +25 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-show.ronn +20 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.1 +390 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.1.txt +386 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-update.ronn +346 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.1 +39 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.1.txt +38 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle-viz.ronn +30 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.1 +132 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.1.txt +113 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/bundle.ronn +108 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5 +679 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5.ronn +506 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/gemfile.5.txt +636 -0
- data/.gem/ruby/2.3.0/gems/bundler-1.16.0.pre.3/man/index.txt +23 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/CHANGELOG.md +387 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/LICENSE.txt +21 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/README.md +247 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent.rb +130 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/agent.rb +587 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/array.rb +39 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/async.rb +445 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atom.rb +222 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_boolean.rb +122 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_fixnum.rb +139 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_reference.rb +51 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/count_down_latch.rb +100 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/event.rb +109 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_count_down_latch.rb +39 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_boolean.rb +60 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_count_down_latch.rb +43 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/read_write_lock.rb +253 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/reentrant_read_write_lock.rb +377 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/semaphore.rb +145 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/thread_local_var.rb +104 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/concurrent_update_error.rb +8 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/direct_update.rb +81 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby+truffle.rb +2 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby.rb +16 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/mutex_atomic.rb +61 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/rbx.rb +22 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/ruby.rb +32 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomics.rb +53 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb +141 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/deprecation.rb +34 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/dereferenceable.rb +73 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/logging.rb +27 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/obligation.rb +220 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/observable.rb +110 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/configuration.rb +188 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/constants.rb +8 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/dataflow.rb +80 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/delay.rb +197 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/edge.rb +26 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/errors.rb +69 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/exchanger.rb +356 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/abstract_executor_service.rb +134 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/cached_thread_pool.rb +62 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/executor_service.rb +185 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/immediate_executor.rb +66 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_executor_service.rb +100 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_thread_pool_executor.rb +120 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_executor_service.rb +78 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/safe_task_executor.rb +35 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serial_executor_service.rb +34 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution.rb +107 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/simple_executor_service.rb +100 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/single_thread_executor.rb +56 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/thread_pool_executor.rb +87 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/timer_set.rb +175 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executors.rb +20 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/future.rb +138 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/hash.rb +36 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/immutable_struct.rb +93 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/ivar.rb +208 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/lazy_register.rb +81 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/map.rb +240 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/maybe.rb +229 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mutable_struct.rb +228 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mvar.rb +242 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/options.rb +42 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/promise.rb +547 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/scheduled_task.rb +318 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/settable_struct.rb +128 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization.rb +31 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_object.rb +24 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_struct.rb +157 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/condition.rb +58 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_object.rb +44 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lock.rb +34 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lockable_object.rb +74 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_lockable_object.rb +71 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_object.rb +43 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/object.rb +153 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_object.rb +48 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_lockable_object.rb +9 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_object.rb +31 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/volatile.rb +34 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util.rb +16 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/adder.rb +74 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/array_hash_rbx.rb +30 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/striped64.rb +241 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/volatile.rb +75 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/timer_task.rb +331 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tuple.rb +86 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tvar.rb +258 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/at_exit.rb +97 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/engine.rb +56 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/monotonic_time.rb +58 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_extension_loader.rb +73 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_integer.rb +53 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/processor_counter.rb +160 -0
- data/.gem/ruby/2.3.0/gems/concurrent-ruby-1.0.5/lib/concurrent/version.rb +4 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/MIT-LICENSE +20 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/README.md +84 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-3.2.x +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.0.x +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.1.x +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-4.2.x +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-5.0.x +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/gemfiles/Gemfile.rails-master +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n.rb +343 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend.rb +18 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/base.rb +230 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/cache.rb +114 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/cascade.rb +54 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/chain.rb +97 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/fallbacks.rb +84 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/flatten.rb +113 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/gettext.rb +81 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/interpolation_compiler.rb +121 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/key_value.rb +100 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/memoize.rb +46 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/metadata.rb +69 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/pluralization.rb +53 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/simple.rb +87 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/backend/transliterator.rb +106 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/config.rb +142 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/hash.rb +29 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/kernel/suppress_warnings.rb +8 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/core_ext/string/interpolate.rb +9 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/exceptions.rb +104 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext.rb +26 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext/helpers.rb +73 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/gettext/po_parser.rb +329 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/interpolate/ruby.rb +37 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale.rb +6 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/fallbacks.rb +96 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag.rb +28 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/parents.rb +22 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/locale/tag/simple.rb +39 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests.rb +12 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/basics.rb +60 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/defaults.rb +48 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/interpolation.rb +153 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/link.rb +56 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization.rb +19 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/date.rb +95 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/date_time.rb +82 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/procs.rb +116 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/localization/time.rb +81 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/lookup.rb +81 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/pluralization.rb +35 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/tests/procs.rb +55 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/lib/i18n/version.rb +3 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/all_features_test.rb +58 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/cascade_test.rb +28 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/chain_test.rb +24 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/fallbacks_test.rb +30 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/key_value_test.rb +24 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/memoize_test.rb +56 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/override_test.rb +42 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/pluralization_test.rb +30 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/api/simple_test.rb +28 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/cache_test.rb +108 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/cascade_test.rb +86 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/chain_test.rb +91 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/exceptions_test.rb +36 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/fallbacks_test.rb +206 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/interpolation_compiler_test.rb +118 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/key_value_test.rb +43 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/memoize_test.rb +47 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/metadata_test.rb +48 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/pluralization_test.rb +45 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/simple_test.rb +84 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/backend/transliterator_test.rb +84 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/core_ext/hash_test.rb +42 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/gettext/api_test.rb +214 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/gettext/backend_test.rb +92 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/exceptions_test.rb +117 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/gettext_plural_keys_test.rb +20 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/interpolate_test.rb +91 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n/load_path_test.rb +34 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/i18n_test.rb +446 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/fallbacks_test.rb +133 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/tag/rfc4646_test.rb +143 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/locale/tag/simple_test.rb +32 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/run_all.rb +20 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/de.po +82 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/en.rb +3 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/en.yml +3 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/invalid/empty.yml +0 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/invalid/syntax.yml +4 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_data/locales/plurals.rb +113 -0
- data/.gem/ruby/2.3.0/gems/i18n-0.8.6/test/test_helper.rb +55 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.concourse.yml +83 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.gitignore +7 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/.travis.yml +15 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/CHANGELOG.md +202 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/Gemfile +4 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/LICENSE.txt +20 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/README.md +245 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/Rakefile +29 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/appveyor.yml +25 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/mini_portile.yml +160 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/tasks/rake-test/task.ps1 +13 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/concourse/tasks/rake-test/task.sh +13 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2.rb +3 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/mini_portile.rb +551 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/lib/mini_portile2/version.rb +3 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/mini_portile2.gemspec +42 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/git/config +4 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data +1 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data.asc +9 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/patch 1.diff +7 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test mini portile-1.0.0/configure +11 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-cmake-1.0/hello.c +4 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/assets/test-download-archive.tar.gz +1 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/helper.rb +60 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_cmake.rb +64 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_cook.rb +115 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_digest.rb +215 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_download.rb +71 -0
- data/.gem/ruby/2.3.0/gems/mini_portile2-2.3.0/test/test_proxy.rb +121 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.autotest +22 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.cross_rubies +6 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.editorconfig +17 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.gemtest +0 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/.travis.yml +63 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/CHANGELOG.md +1280 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/CONTRIBUTING.md +42 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/C_CODING_STYLE.rdoc +33 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Gemfile +23 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Gemfile-libxml-ruby +3 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/LICENSE-DEPENDENCIES.md +1612 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/LICENSE.md +31 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Manifest.txt +362 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/README.md +173 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ROADMAP.md +111 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Rakefile +357 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/STANDARD_RESPONSES.md +47 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/Y_U_NO_GEMSPEC.md +155 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/appveyor.yml +24 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/bin/nokogiri +118 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/build_all +44 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/dependencies.yml +69 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/depend +358 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/extconf.rb +675 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_document.c +170 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_document.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_element_description.c +279 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_element_description.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_entity_lookup.c +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_entity_lookup.h +8 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_parser_context.c +116 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/nokogiri.c +141 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/nokogiri.h +121 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attr.c +98 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attr.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_cdata.c +60 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_cdata.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_comment.c +69 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_comment.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document.c +606 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document.h +23 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document_fragment.c +48 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_document_fragment.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_dtd.c +202 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_dtd.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_content.c +123 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_content.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_decl.c +69 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_element_decl.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_decl.c +110 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_decl.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_reference.c +52 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_entity_reference.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_io.c +60 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_io.h +11 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_namespace.c +117 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_namespace.h +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node.c +1682 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node.h +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node_set.c +485 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_node_set.h +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_reader.c +668 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_reader.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_relax_ng.c +161 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_relax_ng.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser.c +310 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser.h +39 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser_context.c +262 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_push_parser.c +159 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_schema.c +205 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_schema.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_syntax_error.c +64 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_syntax_error.h +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_text.c +52 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_text.h +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_xpath_context.c +298 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xml_xpath_context.h +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ext/nokogiri/xslt_stylesheet.h +14 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri.rb +144 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css.rb +27 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/node.rb +52 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser.rb +732 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser.y +261 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/parser_extras.rb +91 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/syntax_error.rb +7 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/tokenizer.rb +152 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/tokenizer.rex +55 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/css/xpath_visitor.rb +223 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/decorators/slop.rb +42 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html.rb +37 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/builder.rb +35 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/document.rb +335 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/document_fragment.rb +39 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/element_description.rb +23 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/parser.rb +62 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/html/sax/push_parser.rb +36 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/syntax_error.rb +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/version.rb +109 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml.rb +74 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/attr.rb +14 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/builder.rb +443 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/cdata.rb +11 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/character_data.rb +7 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/document.rb +285 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/document_fragment.rb +149 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/dtd.rb +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/element_content.rb +36 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/element_decl.rb +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/namespace.rb +13 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node.rb +834 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/node_set.rb +327 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/notation.rb +6 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/parse_options.rb +120 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp.rb +2 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/pp/node.rb +56 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/reader.rb +112 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax.rb +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/document.rb +171 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/parser.rb +122 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/schema.rb +63 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/searchable.rb +230 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/syntax_error.rb +70 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/text.rb +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath.rb +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xslt.rb +56 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/lib/xsd/xmlparser/nokogiri.rb +102 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/patches/sort-patches-by-date +25 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ports/archives/libxml2-2.9.5.tar.gz +0 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/ports/archives/libxslt-1.1.30.tar.gz +0 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/suppressions/README.txt +1 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/suppressions/nokogiri_ruby-2.supp +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/tasks/test.rb +100 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_nthiness.rb +226 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_parser.rb +369 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_tokenizer.rb +215 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/css/test_xpath_visitor.rb +96 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/decorators/test_slop.rb +23 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/2ch.html +108 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/GH_1042.html +18 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/address_book.rlx +12 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/address_book.xml +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/atom.xml +344 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/bar/bar.xsd +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/bogus.xml +0 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/dont_hurt_em_why.xml +422 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/encoding.html +82 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/encoding.xhtml +84 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/exslt.xml +8 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/exslt.xslt +35 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/foo/foo.xsd +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/metacharset.html +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/namespace_pressure_test.xml +1684 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/noencoding.html +47 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/po.xml +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/po.xsd +66 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/saml20assertion_schema.xsd +283 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/saml20protocol_schema.xsd +302 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/xenc_schema.xsd +146 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/saml/xmldsig_schema.xsd +318 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis.html +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis.xml +5 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/shift_jis_no_charset.html +9 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/slow-xpath.xml +25509 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/snuggles.xml +3 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.dtd +10 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.xml +59 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/staff.xslt +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/bar.xml +2 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/document.dtd +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/test_document_url/document.xml +6 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/tlm.html +851 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/to_be_xincluded.xml +2 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/valid_bar.xml +2 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/files/xinclude.xml +4 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/helper.rb +191 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_parser.rb +168 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_parser_context.rb +46 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/sax/test_push_parser.rb +87 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_builder.rb +164 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document.rb +712 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document_encoding.rb +143 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_document_fragment.rb +304 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_element_description.rb +105 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_named_characters.rb +14 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_node.rb +212 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/html/test_node_encoding.rb +85 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_aliased_default.rb +24 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_cloned_doc.rb +31 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_in_parsed_doc.rb +80 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/namespaces/test_namespaces_preservation.rb +31 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_convert_xpath.rb +135 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_css_cache.rb +45 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_encoding_handler.rb +48 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_memory_leak.rb +156 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_nokogiri.rb +138 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_soap4r_sax.rb +52 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/test_xslt_transforms.rb +314 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/node/test_save_options.rb +28 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/node/test_subclass.rb +44 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_parser.rb +394 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_parser_context.rb +115 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/sax/test_push_parser.rb +205 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_attr.rb +74 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_attribute_decl.rb +86 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_builder.rb +341 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_c14n.rb +180 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_cdata.rb +54 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_comment.rb +40 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document.rb +982 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document_encoding.rb +31 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_document_fragment.rb +298 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_dtd.rb +187 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_dtd_encoding.rb +31 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_element_content.rb +56 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_element_decl.rb +73 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_entity_decl.rb +122 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_entity_reference.rb +251 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_namespace.rb +96 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node.rb +1242 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_attributes.rb +115 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_encoding.rb +69 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_inheritance.rb +32 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_reparenting.rb +563 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_node_set.rb +782 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_parse_options.rb +64 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_processing_instruction.rb +30 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_reader.rb +608 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_reader_encoding.rb +134 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_relax_ng.rb +60 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_schema.rb +142 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_syntax_error.rb +36 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_text.rb +60 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_unparented_node.rb +483 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_xinclude.rb +83 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xml/test_xpath.rb +462 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xslt/test_custom_functions.rb +133 -0
- data/.gem/ruby/2.3.0/gems/nokogiri-1.8.1/test/xslt/test_exception_handling.rb +37 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/COPYING +18 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/HISTORY.md +505 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/README.rdoc +304 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/Rakefile +116 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/SPEC +263 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/bin/rackup +4 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack.png +0 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack.svg +150 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rack_logo.svg +164 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/contrib/rdoc.css +412 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/lobster.ru +4 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/protectedlobster.rb +14 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/example/protectedlobster.ru +8 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack.rb +147 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/abstract/handler.rb +37 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/abstract/request.rb +47 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/basic.rb +58 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/md5.rb +129 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/nonce.rb +51 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/params.rb +52 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/auth/digest/request.rb +41 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/body_proxy.rb +44 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/builder.rb +164 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/cascade.rb +52 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/chunked.rb +69 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/common_logger.rb +72 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/conditional_get.rb +79 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/config.rb +20 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/content_length.rb +37 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/content_type.rb +29 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/deflater.rb +119 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/directory.rb +179 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/etag.rb +74 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/events.rb +154 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/file.rb +176 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler.rb +99 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/cgi.rb +60 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/fastcgi.rb +100 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/lsws.rb +61 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/scgi.rb +70 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/thin.rb +36 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/handler/webrick.rb +120 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/head.rb +25 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lint.rb +760 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lobster.rb +70 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/lock.rb +22 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/logger.rb +18 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/media_type.rb +38 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/method_override.rb +46 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/mime.rb +677 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/mock.rb +196 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart.rb +63 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/generator.rb +93 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/parser.rb +367 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/multipart/uploaded_file.rb +33 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/null_logger.rb +37 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/query_parser.rb +192 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/recursive.rb +62 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/reloader.rb +110 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/request.rb +487 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/response.rb +235 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/rewindable_input.rb +93 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/runtime.rb +32 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/sendfile.rb +158 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/server.rb +395 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/abstract/id.rb +445 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/cookie.rb +195 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/memcache.rb +93 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/session/pool.rb +76 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/show_exceptions.rb +386 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/show_status.rb +113 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/static.rb +175 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/tempfile_reaper.rb +22 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/urlmap.rb +91 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/lib/rack/utils.rb +620 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/rack.gemspec +35 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/an_underscore_app.rb +5 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/anything.rb +5 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/comment.ru +4 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/end.ru +5 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/line.ru +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/builder/options.ru +2 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/folder/test.js +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/fonts/font.eot +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/images/image.png +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/index.html +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/javascripts/app.js +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/assets/stylesheets/app.css +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/lighttpd.conf +26 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/rackup_stub.rb +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/sample_rackup.ru +5 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test +9 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test+directory/test+file +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.fcgi +9 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.gz +0 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/cgi/test.ru +5 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/gemloader.rb +10 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/helper.rb +34 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/bad_robots +259 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/binary +0 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/content_type_and_no_filename +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/empty +10 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/fail_16384_nofile +814 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/file1.txt +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_and_modification_param +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_and_no_name +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_encoded_words +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_escaped_quotes +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_escaped_quotes_and_modification_param +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_null_byte +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_percent_escaped_quotes +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_single_quote +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages2 +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_percentages3 +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/filename_with_unescaped_quotes +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/ie +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/invalid_character +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/mixed_files +21 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/nested +10 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/none +9 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/quoted +15 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/rack-logo.png +0 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/semicolon +6 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/text +15 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/three_files_three_fields +31 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/unity3d_wwwform +11 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/multipart/webkit +32 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/rackup/config.ru +31 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/registering_handler/rack/handler/registering_myself.rb +8 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_auth_basic.rb +89 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_auth_digest.rb +260 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_body_proxy.rb +85 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_builder.rb +233 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_cascade.rb +63 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_cgi.rb +84 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_chunked.rb +103 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_common_logger.rb +95 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_conditional_get.rb +103 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_config.rb +23 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_content_length.rb +86 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_content_type.rb +46 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_deflater.rb +375 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_directory.rb +148 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_etag.rb +108 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_events.rb +133 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_fastcgi.rb +85 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_file.rb +264 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_handler.rb +57 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_head.rb +46 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lint.rb +515 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lobster.rb +59 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_lock.rb +194 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_logger.rb +24 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_media_type.rb +42 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_method_override.rb +96 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_mime.rb +51 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_mock.rb +359 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_multipart.rb +722 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_null_logger.rb +21 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_recursive.rb +75 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_request.rb +1393 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_response.rb +510 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_rewindable_input.rb +128 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_runtime.rb +50 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_sendfile.rb +125 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_server.rb +193 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_abstract_id.rb +31 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_abstract_session_hash.rb +45 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_cookie.rb +442 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_memcache.rb +320 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_session_pool.rb +210 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_show_exceptions.rb +80 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_show_status.rb +104 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_static.rb +184 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_tempfile_reaper.rb +64 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_thin.rb +96 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_urlmap.rb +237 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_utils.rb +742 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_version.rb +11 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/spec_webrick.rb +209 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/another/index.html +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/foo.html +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/static/index.html +1 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/testrequest.rb +78 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
- data/.gem/ruby/2.3.0/gems/rack-2.0.3/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/History.md +191 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/MIT-LICENSE.txt +19 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/README.md +110 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/mock_session.rb +66 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test.rb +323 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/cookie_jar.rb +198 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/methods.rb +83 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/mock_digest_request.rb +29 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/uploaded_file.rb +64 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/utils.rb +156 -0
- data/.gem/ruby/2.3.0/gems/rack-test-0.7.0/lib/rack/test/version.rb +5 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.gitignore +17 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.rubocop.yml +14 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/.travis.yml +22 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Changelog.md +87 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Gemfile +23 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Guardfile +9 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/LICENSE +20 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/README.markdown +217 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/Rakefile +6 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/ext/Rakefile +1 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/ext/mkrf_conf.rb +22 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow.rb +24 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/color.rb +144 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/ext/string.rb +56 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/global.rb +21 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/legacy.rb +15 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb +41 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/presenter.rb +135 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/string_utils.rb +20 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/version.rb +3 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/wrapper.rb +22 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/x11_color_names.rb +152 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/rainbow.gemspec +26 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/instance_spec.rb +35 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/rainbow_spec.rb +160 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/integration/string_spec.rb +84 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/spec_helper.rb +6 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/support/presenter_shared_examples.rb +9 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/color_spec.rb +301 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/namespace_spec.rb +31 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/null_presenter_spec.rb +111 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/presenter_spec.rb +201 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/string_utils_spec.rb +62 -0
- data/.gem/ruby/2.3.0/gems/rainbow-2.2.2/spec/unit/wrapper_spec.rb +34 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.rspec +2 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.travis.yml +46 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/.yardopts +13 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/Gemfile +20 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/LICENSE +144 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/README.md +60 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/Rakefile +62 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/.gitignore +0 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/.gitignore +0 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/.gitignore +0 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
- data/.gem/ruby/2.3.0/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/.yardopts +6 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/CHANGES.md +770 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/LICENSE +19 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/README.md +151 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/Rakefile +107 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo.rb +40 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country.rb +196 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_index_definition.rb +31 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_info.rb +42 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/country_timezone.rb +123 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_source.rb +190 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_timezone.rb +58 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/data_timezone_info.rb +55 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/info_timezone.rb +30 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/linked_timezone.rb +63 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/linked_timezone_info.rb +26 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/offset_rationals.rb +77 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_core_support.rb +146 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_country_info.rb +70 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/ruby_data_source.rb +136 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/time_or_datetime.rb +333 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone.rb +669 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_definition.rb +36 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_index_definition.rb +54 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_info.rb +30 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_offset.rb +78 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_period.rb +221 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_proxy.rb +99 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_transition.rb +120 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/timezone_transition_definition.rb +101 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/transition_data_timezone_info.rb +274 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb +35 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_data_source.rb +487 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_timezone_info.rb +294 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country.rb +236 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_index_definition.rb +69 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_info.rb +16 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_country_timezone.rb +161 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_source.rb +218 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_timezone.rb +99 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_data_timezone_info.rb +18 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_info_timezone.rb +34 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_linked_timezone.rb +155 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_linked_timezone_info.rb +23 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_offset_rationals.rb +23 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_core_support.rb +168 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_country_info.rb +80 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_ruby_data_source.rb +143 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_time_or_datetime.rb +639 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone.rb +1350 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_definition.rb +113 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_index_definition.rb +73 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_info.rb +11 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_london.rb +143 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_melbourne.rb +142 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_new_york.rb +142 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_offset.rb +126 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_period.rb +548 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_proxy.rb +127 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_transition.rb +352 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_transition_definition.rb +284 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_timezone_utc.rb +27 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_transition_data_timezone_info.rb +423 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_country_info.rb +64 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_data_source.rb +1193 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tc_zoneinfo_timezone_info.rb +1128 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/test_utils.rb +134 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all.rb +7 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all_ruby.rb +5 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/ts_all_zoneinfo.rb +7 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data.rb +8 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/tzinfo-data/tzinfo/data/version.rb +14 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/America/New_York +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Australia/Melbourne +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/EST +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Etc/UTC +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Amsterdam +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Andorra +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/London +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Paris +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Europe/Prague +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/Factory +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/iso3166.tab +275 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/posix/Europe/London +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/posixrules +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/right/Europe/London +0 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/zone.tab +439 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/test/zoneinfo/zone1970.tab +369 -0
- data/.gem/ruby/2.3.0/gems/tzinfo-1.2.3/tzinfo.gemspec +21 -0
- data/.gem/ruby/2.3.0/specifications/activesupport-5.1.4.gemspec +43 -0
- data/.gem/ruby/2.3.0/specifications/bundler-1.16.0.pre.3.gemspec +52 -0
- data/.gem/ruby/2.3.0/specifications/concurrent-ruby-1.0.5.gemspec +23 -0
- data/.gem/ruby/2.3.0/specifications/i18n-0.8.6.gemspec +22 -0
- data/.gem/ruby/2.3.0/specifications/mini_portile2-2.3.0.gemspec +48 -0
- data/.gem/ruby/2.3.0/specifications/rack-2.0.3.gemspec +45 -0
- data/.gem/ruby/2.3.0/specifications/rack-test-0.7.0.gemspec +53 -0
- data/.gem/ruby/2.3.0/specifications/thread_safe-0.3.6.gemspec +38 -0
- data/.gem/ruby/2.3.0/specifications/tzinfo-1.2.3.gemspec +37 -0
- data/.gem/specs/api.rubygems.org%443/latest_specs.4.8 +0 -0
- data/.gem/specs/api.rubygems.org%443/prerelease_specs.4.8 +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/activesupport-5.1.4.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundle-0.0.1.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundler-1.15.4.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundler-1.16.0.pre.3.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/coderay-1.1.2.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/concurrent-ruby-1.0.5.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/ffi-1.9.18.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/i18n-0.8.6.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/mini_portile2-2.3.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/nokogiri-1.8.1.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/pry-0.11.1.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rack-2.0.3.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rack-test-0.7.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rails-5.1.4.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rainbow-2.2.2.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rdoc-5.1.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rspec-3.7.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rspec-support-3.7.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rubocop-0.50.0.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/thread_safe-0.3.6.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/tzinfo-1.2.3.gemspec +0 -0
- data/.gem/specs/api.rubygems.org%443/specs.4.8 +0 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +111 -0
- data/Guardfile +82 -0
- data/README.md +33 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/docs/Alimento.html +344 -0
- data/docs/Bebidas.html +103 -0
- data/docs/Carnes.html +103 -0
- data/docs/Frutas.html +103 -0
- data/docs/Grasos.html +103 -0
- data/docs/Hiperglucemicos.html +103 -0
- data/docs/Lacteos.html +103 -0
- data/docs/List.html +377 -0
- data/docs/Object.html +117 -0
- data/docs/Pescados.html +103 -0
- data/docs/Pract6.html +110 -0
- data/docs/Verduras.html +103 -0
- data/docs/created.rid +4 -0
- data/docs/css/fonts.css +167 -0
- data/docs/css/rdoc.css +590 -0
- data/docs/fonts/Lato-Light.ttf +0 -0
- data/docs/fonts/Lato-LightItalic.ttf +0 -0
- data/docs/fonts/Lato-Regular.ttf +0 -0
- data/docs/fonts/Lato-RegularItalic.ttf +0 -0
- data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
- data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
- data/docs/images/add.png +0 -0
- data/docs/images/arrow_up.png +0 -0
- data/docs/images/brick.png +0 -0
- data/docs/images/brick_link.png +0 -0
- data/docs/images/bug.png +0 -0
- data/docs/images/bullet_black.png +0 -0
- data/docs/images/bullet_toggle_minus.png +0 -0
- data/docs/images/bullet_toggle_plus.png +0 -0
- data/docs/images/date.png +0 -0
- data/docs/images/delete.png +0 -0
- data/docs/images/find.png +0 -0
- data/docs/images/loadingAnimation.gif +0 -0
- data/docs/images/macFFBgHack.png +0 -0
- data/docs/images/package.png +0 -0
- data/docs/images/page_green.png +0 -0
- data/docs/images/page_white_text.png +0 -0
- data/docs/images/page_white_width.png +0 -0
- data/docs/images/plugin.png +0 -0
- data/docs/images/ruby.png +0 -0
- data/docs/images/tag_blue.png +0 -0
- data/docs/images/tag_green.png +0 -0
- data/docs/images/transparent.png +0 -0
- data/docs/images/wrench.png +0 -0
- data/docs/images/wrench_orange.png +0 -0
- data/docs/images/zoom.png +0 -0
- data/docs/index.html +103 -0
- data/docs/js/darkfish.js +161 -0
- data/docs/js/jquery.js +4 -0
- data/docs/js/navigation.js +142 -0
- data/docs/js/navigation.js.gz +0 -0
- data/docs/js/search.js +109 -0
- data/docs/js/search_index.js +1 -0
- data/docs/js/search_index.js.gz +0 -0
- data/docs/js/searcher.js +229 -0
- data/docs/js/searcher.js.gz +0 -0
- data/docs/table_of_contents.html +131 -0
- data/lib/pract6.rb +7 -0
- data/lib/pract6/Alimento.rb +185 -0
- data/lib/pract6/List.rb +143 -0
- data/lib/pract6/version.rb +3 -0
- data/pract6.gemspec +39 -0
- metadata +1698 -0
@@ -0,0 +1,199 @@
|
|
1
|
+
/*
|
2
|
+
* Written by Doug Lea with assistance from members of JCP JSR-166
|
3
|
+
* Expert Group and released to the public domain, as explained at
|
4
|
+
* http://creativecommons.org/publicdomain/zero/1.0/
|
5
|
+
*/
|
6
|
+
|
7
|
+
// This is based on 1.16 version
|
8
|
+
|
9
|
+
package org.jruby.ext.thread_safe.jsr166y;
|
10
|
+
|
11
|
+
import java.util.Random;
|
12
|
+
|
13
|
+
/**
|
14
|
+
* A random number generator isolated to the current thread. Like the
|
15
|
+
* global {@link java.util.Random} generator used by the {@link
|
16
|
+
* java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
|
17
|
+
* with an internally generated seed that may not otherwise be
|
18
|
+
* modified. When applicable, use of {@code ThreadLocalRandom} rather
|
19
|
+
* than shared {@code Random} objects in concurrent programs will
|
20
|
+
* typically encounter much less overhead and contention. Use of
|
21
|
+
* {@code ThreadLocalRandom} is particularly appropriate when multiple
|
22
|
+
* tasks (for example, each a {@link ForkJoinTask}) use random numbers
|
23
|
+
* in parallel in thread pools.
|
24
|
+
*
|
25
|
+
* <p>Usages of this class should typically be of the form:
|
26
|
+
* {@code ThreadLocalRandom.current().nextX(...)} (where
|
27
|
+
* {@code X} is {@code Int}, {@code Long}, etc).
|
28
|
+
* When all usages are of this form, it is never possible to
|
29
|
+
* accidently share a {@code ThreadLocalRandom} across multiple threads.
|
30
|
+
*
|
31
|
+
* <p>This class also provides additional commonly used bounded random
|
32
|
+
* generation methods.
|
33
|
+
*
|
34
|
+
* @since 1.7
|
35
|
+
* @author Doug Lea
|
36
|
+
*/
|
37
|
+
public class ThreadLocalRandom extends Random {
|
38
|
+
// same constants as Random, but must be redeclared because private
|
39
|
+
private static final long multiplier = 0x5DEECE66DL;
|
40
|
+
private static final long addend = 0xBL;
|
41
|
+
private static final long mask = (1L << 48) - 1;
|
42
|
+
|
43
|
+
/**
|
44
|
+
* The random seed. We can't use super.seed.
|
45
|
+
*/
|
46
|
+
private long rnd;
|
47
|
+
|
48
|
+
/**
|
49
|
+
* Initialization flag to permit calls to setSeed to succeed only
|
50
|
+
* while executing the Random constructor. We can't allow others
|
51
|
+
* since it would cause setting seed in one part of a program to
|
52
|
+
* unintentionally impact other usages by the thread.
|
53
|
+
*/
|
54
|
+
boolean initialized;
|
55
|
+
|
56
|
+
// Padding to help avoid memory contention among seed updates in
|
57
|
+
// different TLRs in the common case that they are located near
|
58
|
+
// each other.
|
59
|
+
private long pad0, pad1, pad2, pad3, pad4, pad5, pad6, pad7;
|
60
|
+
|
61
|
+
/**
|
62
|
+
* The actual ThreadLocal
|
63
|
+
*/
|
64
|
+
private static final ThreadLocal<ThreadLocalRandom> localRandom =
|
65
|
+
new ThreadLocal<ThreadLocalRandom>() {
|
66
|
+
protected ThreadLocalRandom initialValue() {
|
67
|
+
return new ThreadLocalRandom();
|
68
|
+
}
|
69
|
+
};
|
70
|
+
|
71
|
+
|
72
|
+
/**
|
73
|
+
* Constructor called only by localRandom.initialValue.
|
74
|
+
*/
|
75
|
+
ThreadLocalRandom() {
|
76
|
+
super();
|
77
|
+
initialized = true;
|
78
|
+
}
|
79
|
+
|
80
|
+
/**
|
81
|
+
* Returns the current thread's {@code ThreadLocalRandom}.
|
82
|
+
*
|
83
|
+
* @return the current thread's {@code ThreadLocalRandom}
|
84
|
+
*/
|
85
|
+
public static ThreadLocalRandom current() {
|
86
|
+
return localRandom.get();
|
87
|
+
}
|
88
|
+
|
89
|
+
/**
|
90
|
+
* Throws {@code UnsupportedOperationException}. Setting seeds in
|
91
|
+
* this generator is not supported.
|
92
|
+
*
|
93
|
+
* @throws UnsupportedOperationException always
|
94
|
+
*/
|
95
|
+
public void setSeed(long seed) {
|
96
|
+
if (initialized)
|
97
|
+
throw new UnsupportedOperationException();
|
98
|
+
rnd = (seed ^ multiplier) & mask;
|
99
|
+
}
|
100
|
+
|
101
|
+
protected int next(int bits) {
|
102
|
+
rnd = (rnd * multiplier + addend) & mask;
|
103
|
+
return (int) (rnd >>> (48-bits));
|
104
|
+
}
|
105
|
+
|
106
|
+
/**
|
107
|
+
* Returns a pseudorandom, uniformly distributed value between the
|
108
|
+
* given least value (inclusive) and bound (exclusive).
|
109
|
+
*
|
110
|
+
* @param least the least value returned
|
111
|
+
* @param bound the upper bound (exclusive)
|
112
|
+
* @throws IllegalArgumentException if least greater than or equal
|
113
|
+
* to bound
|
114
|
+
* @return the next value
|
115
|
+
*/
|
116
|
+
public int nextInt(int least, int bound) {
|
117
|
+
if (least >= bound)
|
118
|
+
throw new IllegalArgumentException();
|
119
|
+
return nextInt(bound - least) + least;
|
120
|
+
}
|
121
|
+
|
122
|
+
/**
|
123
|
+
* Returns a pseudorandom, uniformly distributed value
|
124
|
+
* between 0 (inclusive) and the specified value (exclusive).
|
125
|
+
*
|
126
|
+
* @param n the bound on the random number to be returned. Must be
|
127
|
+
* positive.
|
128
|
+
* @return the next value
|
129
|
+
* @throws IllegalArgumentException if n is not positive
|
130
|
+
*/
|
131
|
+
public long nextLong(long n) {
|
132
|
+
if (n <= 0)
|
133
|
+
throw new IllegalArgumentException("n must be positive");
|
134
|
+
// Divide n by two until small enough for nextInt. On each
|
135
|
+
// iteration (at most 31 of them but usually much less),
|
136
|
+
// randomly choose both whether to include high bit in result
|
137
|
+
// (offset) and whether to continue with the lower vs upper
|
138
|
+
// half (which makes a difference only if odd).
|
139
|
+
long offset = 0;
|
140
|
+
while (n >= Integer.MAX_VALUE) {
|
141
|
+
int bits = next(2);
|
142
|
+
long half = n >>> 1;
|
143
|
+
long nextn = ((bits & 2) == 0) ? half : n - half;
|
144
|
+
if ((bits & 1) == 0)
|
145
|
+
offset += n - nextn;
|
146
|
+
n = nextn;
|
147
|
+
}
|
148
|
+
return offset + nextInt((int) n);
|
149
|
+
}
|
150
|
+
|
151
|
+
/**
|
152
|
+
* Returns a pseudorandom, uniformly distributed value between the
|
153
|
+
* given least value (inclusive) and bound (exclusive).
|
154
|
+
*
|
155
|
+
* @param least the least value returned
|
156
|
+
* @param bound the upper bound (exclusive)
|
157
|
+
* @return the next value
|
158
|
+
* @throws IllegalArgumentException if least greater than or equal
|
159
|
+
* to bound
|
160
|
+
*/
|
161
|
+
public long nextLong(long least, long bound) {
|
162
|
+
if (least >= bound)
|
163
|
+
throw new IllegalArgumentException();
|
164
|
+
return nextLong(bound - least) + least;
|
165
|
+
}
|
166
|
+
|
167
|
+
/**
|
168
|
+
* Returns a pseudorandom, uniformly distributed {@code double} value
|
169
|
+
* between 0 (inclusive) and the specified value (exclusive).
|
170
|
+
*
|
171
|
+
* @param n the bound on the random number to be returned. Must be
|
172
|
+
* positive.
|
173
|
+
* @return the next value
|
174
|
+
* @throws IllegalArgumentException if n is not positive
|
175
|
+
*/
|
176
|
+
public double nextDouble(double n) {
|
177
|
+
if (n <= 0)
|
178
|
+
throw new IllegalArgumentException("n must be positive");
|
179
|
+
return nextDouble() * n;
|
180
|
+
}
|
181
|
+
|
182
|
+
/**
|
183
|
+
* Returns a pseudorandom, uniformly distributed value between the
|
184
|
+
* given least value (inclusive) and bound (exclusive).
|
185
|
+
*
|
186
|
+
* @param least the least value returned
|
187
|
+
* @param bound the upper bound (exclusive)
|
188
|
+
* @return the next value
|
189
|
+
* @throws IllegalArgumentException if least greater than or equal
|
190
|
+
* to bound
|
191
|
+
*/
|
192
|
+
public double nextDouble(double least, double bound) {
|
193
|
+
if (least >= bound)
|
194
|
+
throw new IllegalArgumentException();
|
195
|
+
return nextDouble() * (bound - least) + least;
|
196
|
+
}
|
197
|
+
|
198
|
+
private static final long serialVersionUID = -5851777807851030925L;
|
199
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
package thread_safe;
|
2
|
+
|
3
|
+
import java.io.IOException;
|
4
|
+
|
5
|
+
import org.jruby.Ruby;
|
6
|
+
import org.jruby.ext.thread_safe.JRubyCacheBackendLibrary;
|
7
|
+
import org.jruby.runtime.load.BasicLibraryService;
|
8
|
+
|
9
|
+
// can't name this JRubyCacheBackendService or else JRuby doesn't pick this up
|
10
|
+
public class JrubyCacheBackendService implements BasicLibraryService {
|
11
|
+
public boolean basicLoad(final Ruby runtime) throws IOException {
|
12
|
+
new JRubyCacheBackendLibrary().load(runtime, false);
|
13
|
+
return true;
|
14
|
+
}
|
15
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require 'thread_safe/version'
|
2
|
+
require 'thread_safe/synchronized_delegator'
|
3
|
+
|
4
|
+
module ThreadSafe
|
5
|
+
autoload :Cache, 'thread_safe/cache'
|
6
|
+
autoload :Util, 'thread_safe/util'
|
7
|
+
|
8
|
+
# Various classes within allows for +nil+ values to be stored, so a special +NULL+ token is required to indicate the "nil-ness".
|
9
|
+
NULL = Object.new
|
10
|
+
|
11
|
+
if defined?(JRUBY_VERSION)
|
12
|
+
require 'jruby/synchronized'
|
13
|
+
|
14
|
+
# A thread-safe subclass of Array. This version locks
|
15
|
+
# against the object itself for every method call,
|
16
|
+
# ensuring only one thread can be reading or writing
|
17
|
+
# at a time. This includes iteration methods like
|
18
|
+
# #each.
|
19
|
+
class Array < ::Array
|
20
|
+
include JRuby::Synchronized
|
21
|
+
end
|
22
|
+
|
23
|
+
# A thread-safe subclass of Hash. This version locks
|
24
|
+
# against the object itself for every method call,
|
25
|
+
# ensuring only one thread can be reading or writing
|
26
|
+
# at a time. This includes iteration methods like
|
27
|
+
# #each.
|
28
|
+
class Hash < ::Hash
|
29
|
+
include JRuby::Synchronized
|
30
|
+
end
|
31
|
+
elsif !defined?(RUBY_ENGINE) || RUBY_ENGINE == 'ruby'
|
32
|
+
# Because MRI never runs code in parallel, the existing
|
33
|
+
# non-thread-safe structures should usually work fine.
|
34
|
+
Array = ::Array
|
35
|
+
Hash = ::Hash
|
36
|
+
elsif defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
37
|
+
require 'monitor'
|
38
|
+
|
39
|
+
class Hash < ::Hash; end
|
40
|
+
class Array < ::Array; end
|
41
|
+
|
42
|
+
[Hash, Array].each do |klass|
|
43
|
+
klass.class_eval do
|
44
|
+
private
|
45
|
+
def _mon_initialize
|
46
|
+
@_monitor = Monitor.new unless @_monitor # avoid double initialisation
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.allocate
|
50
|
+
obj = super
|
51
|
+
obj.send(:_mon_initialize)
|
52
|
+
obj
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
klass.superclass.instance_methods(false).each do |method|
|
57
|
+
klass.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
58
|
+
def #{method}(*args)
|
59
|
+
@_monitor.synchronize { super }
|
60
|
+
end
|
61
|
+
RUBY_EVAL
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,908 @@
|
|
1
|
+
module ThreadSafe
|
2
|
+
# A Ruby port of the Doug Lea's jsr166e.ConcurrentHashMapV8 class version 1.59
|
3
|
+
# available in public domain.
|
4
|
+
#
|
5
|
+
# Original source code available here:
|
6
|
+
# http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/ConcurrentHashMapV8.java?revision=1.59
|
7
|
+
#
|
8
|
+
# The Ruby port skips out the +TreeBin+ (red-black trees for use in bins whose
|
9
|
+
# size exceeds a threshold).
|
10
|
+
#
|
11
|
+
# A hash table supporting full concurrency of retrievals and high expected
|
12
|
+
# concurrency for updates. However, even though all operations are
|
13
|
+
# thread-safe, retrieval operations do _not_ entail locking, and there is
|
14
|
+
# _not_ any support for locking the entire table in a way that prevents all
|
15
|
+
# access.
|
16
|
+
#
|
17
|
+
# Retrieval operations generally do not block, so may overlap with update
|
18
|
+
# operations. Retrievals reflect the results of the most recently _completed_
|
19
|
+
# update operations holding upon their onset. (More formally, an update
|
20
|
+
# operation for a given key bears a _happens-before_ relation with any (non
|
21
|
+
# +nil+) retrieval for that key reporting the updated value.) For aggregate
|
22
|
+
# operations such as +clear()+, concurrent retrievals may reflect insertion or
|
23
|
+
# removal of only some entries. Similarly, the +each_pair+ iterator yields
|
24
|
+
# elements reflecting the state of the hash table at some point at or since
|
25
|
+
# the start of the +each_pair+. Bear in mind that the results of aggregate
|
26
|
+
# status methods including +size()+ and +empty?+} are typically useful only
|
27
|
+
# when a map is not undergoing concurrent updates in other threads. Otherwise
|
28
|
+
# the results of these methods reflect transient states that may be adequate
|
29
|
+
# for monitoring or estimation purposes, but not for program control.
|
30
|
+
#
|
31
|
+
# The table is dynamically expanded when there are too many collisions (i.e.,
|
32
|
+
# keys that have distinct hash codes but fall into the same slot modulo the
|
33
|
+
# table size), with the expected average effect of maintaining roughly two
|
34
|
+
# bins per mapping (corresponding to a 0.75 load factor threshold for
|
35
|
+
# resizing). There may be much variance around this average as mappings are
|
36
|
+
# added and removed, but overall, this maintains a commonly accepted
|
37
|
+
# time/space tradeoff for hash tables. However, resizing this or any other
|
38
|
+
# kind of hash table may be a relatively slow operation. When possible, it is
|
39
|
+
# a good idea to provide a size estimate as an optional :initial_capacity
|
40
|
+
# initializer argument. An additional optional :load_factor constructor
|
41
|
+
# argument provides a further means of customizing initial table capacity by
|
42
|
+
# specifying the table density to be used in calculating the amount of space
|
43
|
+
# to allocate for the given number of elements. Note that using many keys with
|
44
|
+
# exactly the same +hash+ is a sure way to slow down performance of any hash
|
45
|
+
# table.
|
46
|
+
#
|
47
|
+
# ## Design overview
|
48
|
+
#
|
49
|
+
# The primary design goal of this hash table is to maintain concurrent
|
50
|
+
# readability (typically method +[]+, but also iteration and related methods)
|
51
|
+
# while minimizing update contention. Secondary goals are to keep space
|
52
|
+
# consumption about the same or better than plain +Hash+, and to support high
|
53
|
+
# initial insertion rates on an empty table by many threads.
|
54
|
+
#
|
55
|
+
# Each key-value mapping is held in a +Node+. The validation-based approach
|
56
|
+
# explained below leads to a lot of code sprawl because retry-control
|
57
|
+
# precludes factoring into smaller methods.
|
58
|
+
#
|
59
|
+
# The table is lazily initialized to a power-of-two size upon the first
|
60
|
+
# insertion. Each bin in the table normally contains a list of +Node+s (most
|
61
|
+
# often, the list has only zero or one +Node+). Table accesses require
|
62
|
+
# volatile/atomic reads, writes, and CASes. The lists of nodes within bins are
|
63
|
+
# always accurately traversable under volatile reads, so long as lookups check
|
64
|
+
# hash code and non-nullness of value before checking key equality.
|
65
|
+
#
|
66
|
+
# We use the top two bits of +Node+ hash fields for control purposes -- they
|
67
|
+
# are available anyway because of addressing constraints. As explained further
|
68
|
+
# below, these top bits are used as follows:
|
69
|
+
#
|
70
|
+
# - 00 - Normal
|
71
|
+
# - 01 - Locked
|
72
|
+
# - 11 - Locked and may have a thread waiting for lock
|
73
|
+
# - 10 - +Node+ is a forwarding node
|
74
|
+
#
|
75
|
+
# The lower 28 bits of each +Node+'s hash field contain a the key's hash code,
|
76
|
+
# except for forwarding nodes, for which the lower bits are zero (and so
|
77
|
+
# always have hash field == +MOVED+).
|
78
|
+
#
|
79
|
+
# Insertion (via +[]=+ or its variants) of the first node in an empty bin is
|
80
|
+
# performed by just CASing it to the bin. This is by far the most common case
|
81
|
+
# for put operations under most key/hash distributions. Other update
|
82
|
+
# operations (insert, delete, and replace) require locks. We do not want to
|
83
|
+
# waste the space required to associate a distinct lock object with each bin,
|
84
|
+
# so instead use the first node of a bin list itself as a lock. Blocking
|
85
|
+
# support for these locks relies +Util::CheapLockable. However, we also need a
|
86
|
+
# +try_lock+ construction, so we overlay these by using bits of the +Node+
|
87
|
+
# hash field for lock control (see above), and so normally use builtin
|
88
|
+
# monitors only for blocking and signalling using
|
89
|
+
# +cheap_wait+/+cheap_broadcast+ constructions. See +Node#try_await_lock+.
|
90
|
+
#
|
91
|
+
# Using the first node of a list as a lock does not by itself suffice though:
|
92
|
+
# When a node is locked, any update must first validate that it is still the
|
93
|
+
# first node after locking it, and retry if not. Because new nodes are always
|
94
|
+
# appended to lists, once a node is first in a bin, it remains first until
|
95
|
+
# deleted or the bin becomes invalidated (upon resizing). However, operations
|
96
|
+
# that only conditionally update may inspect nodes until the point of update.
|
97
|
+
# This is a converse of sorts to the lazy locking technique described by
|
98
|
+
# Herlihy & Shavit.
|
99
|
+
#
|
100
|
+
# The main disadvantage of per-bin locks is that other update operations on
|
101
|
+
# other nodes in a bin list protected by the same lock can stall, for example
|
102
|
+
# when user +eql?+ or mapping functions take a long time. However,
|
103
|
+
# statistically, under random hash codes, this is not a common problem.
|
104
|
+
# Ideally, the frequency of nodes in bins follows a Poisson distribution
|
105
|
+
# (http://en.wikipedia.org/wiki/Poisson_distribution) with a parameter of
|
106
|
+
# about 0.5 on average, given the resizing threshold of 0.75, although with a
|
107
|
+
# large variance because of resizing granularity. Ignoring variance, the
|
108
|
+
# expected occurrences of list size k are (exp(-0.5) * pow(0.5, k) /
|
109
|
+
# factorial(k)). The first values are:
|
110
|
+
#
|
111
|
+
# - 0: 0.60653066
|
112
|
+
# - 1: 0.30326533
|
113
|
+
# - 2: 0.07581633
|
114
|
+
# - 3: 0.01263606
|
115
|
+
# - 4: 0.00157952
|
116
|
+
# - 5: 0.00015795
|
117
|
+
# - 6: 0.00001316
|
118
|
+
# - 7: 0.00000094
|
119
|
+
# - 8: 0.00000006
|
120
|
+
# - more: less than 1 in ten million
|
121
|
+
#
|
122
|
+
# Lock contention probability for two threads accessing distinct elements is
|
123
|
+
# roughly 1 / (8 * #elements) under random hashes.
|
124
|
+
#
|
125
|
+
# The table is resized when occupancy exceeds a percentage threshold
|
126
|
+
# (nominally, 0.75, but see below). Only a single thread performs the resize
|
127
|
+
# (using field +size_control+, to arrange exclusion), but the table otherwise
|
128
|
+
# remains usable for reads and updates. Resizing proceeds by transferring
|
129
|
+
# bins, one by one, from the table to the next table. Because we are using
|
130
|
+
# power-of-two expansion, the elements from each bin must either stay at same
|
131
|
+
# index, or move with a power of two offset. We eliminate unnecessary node
|
132
|
+
# creation by catching cases where old nodes can be reused because their next
|
133
|
+
# fields won't change. On average, only about one-sixth of them need cloning
|
134
|
+
# when a table doubles. The nodes they replace will be garbage collectable as
|
135
|
+
# soon as they are no longer referenced by any reader thread that may be in
|
136
|
+
# the midst of concurrently traversing table. Upon transfer, the old table bin
|
137
|
+
# contains only a special forwarding node (with hash field +MOVED+) that
|
138
|
+
# contains the next table as its key. On encountering a forwarding node,
|
139
|
+
# access and update operations restart, using the new table.
|
140
|
+
#
|
141
|
+
# Each bin transfer requires its bin lock. However, unlike other cases, a
|
142
|
+
# transfer can skip a bin if it fails to acquire its lock, and revisit it
|
143
|
+
# later. Method +rebuild+ maintains a buffer of TRANSFER_BUFFER_SIZE bins that
|
144
|
+
# have been skipped because of failure to acquire a lock, and blocks only if
|
145
|
+
# none are available (i.e., only very rarely). The transfer operation must
|
146
|
+
# also ensure that all accessible bins in both the old and new table are
|
147
|
+
# usable by any traversal. When there are no lock acquisition failures, this
|
148
|
+
# is arranged simply by proceeding from the last bin (+table.size - 1+) up
|
149
|
+
# towards the first. Upon seeing a forwarding node, traversals arrange to move
|
150
|
+
# to the new table without revisiting nodes. However, when any node is skipped
|
151
|
+
# during a transfer, all earlier table bins may have become visible, so are
|
152
|
+
# initialized with a reverse-forwarding node back to the old table until the
|
153
|
+
# new ones are established. (This sometimes requires transiently locking a
|
154
|
+
# forwarding node, which is possible under the above encoding.) These more
|
155
|
+
# expensive mechanics trigger only when necessary.
|
156
|
+
#
|
157
|
+
# The traversal scheme also applies to partial traversals of
|
158
|
+
# ranges of bins (via an alternate Traverser constructor)
|
159
|
+
# to support partitioned aggregate operations. Also, read-only
|
160
|
+
# operations give up if ever forwarded to a null table, which
|
161
|
+
# provides support for shutdown-style clearing, which is also not
|
162
|
+
# currently implemented.
|
163
|
+
#
|
164
|
+
# Lazy table initialization minimizes footprint until first use.
|
165
|
+
#
|
166
|
+
# The element count is maintained using a +ThreadSafe::Util::Adder+,
|
167
|
+
# which avoids contention on updates but can encounter cache thrashing
|
168
|
+
# if read too frequently during concurrent access. To avoid reading so
|
169
|
+
# often, resizing is attempted either when a bin lock is
|
170
|
+
# contended, or upon adding to a bin already holding two or more
|
171
|
+
# nodes (checked before adding in the +x_if_absent+ methods, after
|
172
|
+
# adding in others). Under uniform hash distributions, the
|
173
|
+
# probability of this occurring at threshold is around 13%,
|
174
|
+
# meaning that only about 1 in 8 puts check threshold (and after
|
175
|
+
# resizing, many fewer do so). But this approximation has high
|
176
|
+
# variance for small table sizes, so we check on any collision
|
177
|
+
# for sizes <= 64. The bulk putAll operation further reduces
|
178
|
+
# contention by only committing count updates upon these size
|
179
|
+
# checks.
|
180
|
+
class AtomicReferenceCacheBackend
|
181
|
+
class Table < Util::PowerOfTwoTuple
|
182
|
+
def cas_new_node(i, hash, key, value)
|
183
|
+
cas(i, nil, Node.new(hash, key, value))
|
184
|
+
end
|
185
|
+
|
186
|
+
def try_to_cas_in_computed(i, hash, key)
|
187
|
+
succeeded = false
|
188
|
+
new_value = nil
|
189
|
+
new_node = Node.new(locked_hash = hash | LOCKED, key, NULL)
|
190
|
+
if cas(i, nil, new_node)
|
191
|
+
begin
|
192
|
+
if NULL == (new_value = yield(NULL))
|
193
|
+
was_null = true
|
194
|
+
else
|
195
|
+
new_node.value = new_value
|
196
|
+
end
|
197
|
+
succeeded = true
|
198
|
+
ensure
|
199
|
+
volatile_set(i, nil) if !succeeded || was_null
|
200
|
+
new_node.unlock_via_hash(locked_hash, hash)
|
201
|
+
end
|
202
|
+
end
|
203
|
+
return succeeded, new_value
|
204
|
+
end
|
205
|
+
|
206
|
+
def try_lock_via_hash(i, node, node_hash)
|
207
|
+
node.try_lock_via_hash(node_hash) do
|
208
|
+
yield if volatile_get(i) == node
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
def delete_node_at(i, node, predecessor_node)
|
213
|
+
if predecessor_node
|
214
|
+
predecessor_node.next = node.next
|
215
|
+
else
|
216
|
+
volatile_set(i, node.next)
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
220
|
+
|
221
|
+
# Key-value entry. Nodes with a hash field of +MOVED+ are special, and do
|
222
|
+
# not contain user keys or values. Otherwise, keys are never +nil+, and
|
223
|
+
# +NULL+ +value+ fields indicate that a node is in the process of being
|
224
|
+
# deleted or created. For purposes of read-only access, a key may be read
|
225
|
+
# before a value, but can only be used after checking value to be +!= NULL+.
|
226
|
+
class Node
|
227
|
+
extend Util::Volatile
|
228
|
+
attr_volatile :hash, :value, :next
|
229
|
+
|
230
|
+
include Util::CheapLockable
|
231
|
+
|
232
|
+
bit_shift = Util::FIXNUM_BIT_SIZE - 2 # need 2 bits for ourselves
|
233
|
+
# Encodings for special uses of Node hash fields. See above for explanation.
|
234
|
+
MOVED = ('10' << ('0' * bit_shift)).to_i(2) # hash field for forwarding nodes
|
235
|
+
LOCKED = ('01' << ('0' * bit_shift)).to_i(2) # set/tested only as a bit
|
236
|
+
WAITING = ('11' << ('0' * bit_shift)).to_i(2) # both bits set/tested together
|
237
|
+
HASH_BITS = ('00' << ('1' * bit_shift)).to_i(2) # usable bits of normal node hash
|
238
|
+
|
239
|
+
SPIN_LOCK_ATTEMPTS = Util::CPU_COUNT > 1 ? Util::CPU_COUNT * 2 : 0
|
240
|
+
|
241
|
+
attr_reader :key
|
242
|
+
|
243
|
+
def initialize(hash, key, value, next_node = nil)
|
244
|
+
super()
|
245
|
+
@key = key
|
246
|
+
self.lazy_set_hash(hash)
|
247
|
+
self.lazy_set_value(value)
|
248
|
+
self.next = next_node
|
249
|
+
end
|
250
|
+
|
251
|
+
# Spins a while if +LOCKED+ bit set and this node is the first of its bin,
|
252
|
+
# and then sets +WAITING+ bits on hash field and blocks (once) if they are
|
253
|
+
# still set. It is OK for this method to return even if lock is not
|
254
|
+
# available upon exit, which enables these simple single-wait mechanics.
|
255
|
+
#
|
256
|
+
# The corresponding signalling operation is performed within callers: Upon
|
257
|
+
# detecting that +WAITING+ has been set when unlocking lock (via a failed
|
258
|
+
# CAS from non-waiting +LOCKED+ state), unlockers acquire the
|
259
|
+
# +cheap_synchronize+ lock and perform a +cheap_broadcast+.
|
260
|
+
def try_await_lock(table, i)
|
261
|
+
if table && i >= 0 && i < table.size # bounds check, TODO: why are we bounds checking?
|
262
|
+
spins = SPIN_LOCK_ATTEMPTS
|
263
|
+
randomizer = base_randomizer = Util::XorShiftRandom.get
|
264
|
+
while equal?(table.volatile_get(i)) && self.class.locked_hash?(my_hash = hash)
|
265
|
+
if spins >= 0
|
266
|
+
if (randomizer = (randomizer >> 1)).even? # spin at random
|
267
|
+
if (spins -= 1) == 0
|
268
|
+
Thread.pass # yield before blocking
|
269
|
+
else
|
270
|
+
randomizer = base_randomizer = Util::XorShiftRandom.xorshift(base_randomizer) if randomizer.zero?
|
271
|
+
end
|
272
|
+
end
|
273
|
+
elsif cas_hash(my_hash, my_hash | WAITING)
|
274
|
+
force_aquire_lock(table, i)
|
275
|
+
break
|
276
|
+
end
|
277
|
+
end
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
def key?(key)
|
282
|
+
@key.eql?(key)
|
283
|
+
end
|
284
|
+
|
285
|
+
def matches?(key, hash)
|
286
|
+
pure_hash == hash && key?(key)
|
287
|
+
end
|
288
|
+
|
289
|
+
def pure_hash
|
290
|
+
hash & HASH_BITS
|
291
|
+
end
|
292
|
+
|
293
|
+
def try_lock_via_hash(node_hash = hash)
|
294
|
+
if cas_hash(node_hash, locked_hash = node_hash | LOCKED)
|
295
|
+
begin
|
296
|
+
yield
|
297
|
+
ensure
|
298
|
+
unlock_via_hash(locked_hash, node_hash)
|
299
|
+
end
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
def locked?
|
304
|
+
self.class.locked_hash?(hash)
|
305
|
+
end
|
306
|
+
|
307
|
+
def unlock_via_hash(locked_hash, node_hash)
|
308
|
+
unless cas_hash(locked_hash, node_hash)
|
309
|
+
self.hash = node_hash
|
310
|
+
cheap_synchronize { cheap_broadcast }
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
private
|
315
|
+
def force_aquire_lock(table, i)
|
316
|
+
cheap_synchronize do
|
317
|
+
if equal?(table.volatile_get(i)) && (hash & WAITING) == WAITING
|
318
|
+
cheap_wait
|
319
|
+
else
|
320
|
+
cheap_broadcast # possibly won race vs signaller
|
321
|
+
end
|
322
|
+
end
|
323
|
+
end
|
324
|
+
|
325
|
+
class << self
|
326
|
+
def locked_hash?(hash)
|
327
|
+
(hash & LOCKED) != 0
|
328
|
+
end
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
332
|
+
# shorthands
|
333
|
+
MOVED = Node::MOVED
|
334
|
+
LOCKED = Node::LOCKED
|
335
|
+
WAITING = Node::WAITING
|
336
|
+
HASH_BITS = Node::HASH_BITS
|
337
|
+
|
338
|
+
NOW_RESIZING = -1
|
339
|
+
DEFAULT_CAPACITY = 16
|
340
|
+
MAX_CAPACITY = Util::MAX_INT
|
341
|
+
|
342
|
+
# The buffer size for skipped bins during transfers. The
|
343
|
+
# value is arbitrary but should be large enough to avoid
|
344
|
+
# most locking stalls during resizes.
|
345
|
+
TRANSFER_BUFFER_SIZE = 32
|
346
|
+
|
347
|
+
extend Util::Volatile
|
348
|
+
attr_volatile :table, # The array of bins. Lazily initialized upon first insertion. Size is always a power of two.
|
349
|
+
|
350
|
+
# Table initialization and resizing control. When negative, the
|
351
|
+
# table is being initialized or resized. Otherwise, when table is
|
352
|
+
# null, holds the initial table size to use upon creation, or 0
|
353
|
+
# for default. After initialization, holds the next element count
|
354
|
+
# value upon which to resize the table.
|
355
|
+
:size_control
|
356
|
+
|
357
|
+
def initialize(options = nil)
|
358
|
+
super()
|
359
|
+
@counter = Util::Adder.new
|
360
|
+
initial_capacity = options && options[:initial_capacity] || DEFAULT_CAPACITY
|
361
|
+
self.size_control = (capacity = table_size_for(initial_capacity)) > MAX_CAPACITY ? MAX_CAPACITY : capacity
|
362
|
+
end
|
363
|
+
|
364
|
+
def get_or_default(key, else_value = nil)
|
365
|
+
hash = key_hash(key)
|
366
|
+
current_table = table
|
367
|
+
while current_table
|
368
|
+
node = current_table.volatile_get_by_hash(hash)
|
369
|
+
current_table =
|
370
|
+
while node
|
371
|
+
if (node_hash = node.hash) == MOVED
|
372
|
+
break node.key
|
373
|
+
elsif (node_hash & HASH_BITS) == hash && node.key?(key) && NULL != (value = node.value)
|
374
|
+
return value
|
375
|
+
end
|
376
|
+
node = node.next
|
377
|
+
end
|
378
|
+
end
|
379
|
+
else_value
|
380
|
+
end
|
381
|
+
|
382
|
+
def [](key)
|
383
|
+
get_or_default(key)
|
384
|
+
end
|
385
|
+
|
386
|
+
def key?(key)
|
387
|
+
get_or_default(key, NULL) != NULL
|
388
|
+
end
|
389
|
+
|
390
|
+
def []=(key, value)
|
391
|
+
get_and_set(key, value)
|
392
|
+
value
|
393
|
+
end
|
394
|
+
|
395
|
+
def compute_if_absent(key)
|
396
|
+
hash = key_hash(key)
|
397
|
+
current_table = table || initialize_table
|
398
|
+
while true
|
399
|
+
if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
|
400
|
+
succeeded, new_value = current_table.try_to_cas_in_computed(i, hash, key) { yield }
|
401
|
+
if succeeded
|
402
|
+
increment_size
|
403
|
+
return new_value
|
404
|
+
end
|
405
|
+
elsif (node_hash = node.hash) == MOVED
|
406
|
+
current_table = node.key
|
407
|
+
elsif NULL != (current_value = find_value_in_node_list(node, key, hash, node_hash & HASH_BITS))
|
408
|
+
return current_value
|
409
|
+
elsif Node.locked_hash?(node_hash)
|
410
|
+
try_await_lock(current_table, i, node)
|
411
|
+
else
|
412
|
+
succeeded, value = attempt_internal_compute_if_absent(key, hash, current_table, i, node, node_hash) { yield }
|
413
|
+
return value if succeeded
|
414
|
+
end
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
def compute_if_present(key)
|
419
|
+
new_value = nil
|
420
|
+
internal_replace(key) do |old_value|
|
421
|
+
if (new_value = yield(NULL == old_value ? nil : old_value)).nil?
|
422
|
+
NULL
|
423
|
+
else
|
424
|
+
new_value
|
425
|
+
end
|
426
|
+
end
|
427
|
+
new_value
|
428
|
+
end
|
429
|
+
|
430
|
+
def compute(key)
|
431
|
+
internal_compute(key) do |old_value|
|
432
|
+
if (new_value = yield(NULL == old_value ? nil : old_value)).nil?
|
433
|
+
NULL
|
434
|
+
else
|
435
|
+
new_value
|
436
|
+
end
|
437
|
+
end
|
438
|
+
end
|
439
|
+
|
440
|
+
def merge_pair(key, value)
|
441
|
+
internal_compute(key) do |old_value|
|
442
|
+
if NULL == old_value || !(value = yield(old_value)).nil?
|
443
|
+
value
|
444
|
+
else
|
445
|
+
NULL
|
446
|
+
end
|
447
|
+
end
|
448
|
+
end
|
449
|
+
|
450
|
+
def replace_pair(key, old_value, new_value)
|
451
|
+
NULL != internal_replace(key, old_value) { new_value }
|
452
|
+
end
|
453
|
+
|
454
|
+
def replace_if_exists(key, new_value)
|
455
|
+
if (result = internal_replace(key) { new_value }) && NULL != result
|
456
|
+
result
|
457
|
+
end
|
458
|
+
end
|
459
|
+
|
460
|
+
def get_and_set(key, value) # internalPut in the original CHMV8
|
461
|
+
hash = key_hash(key)
|
462
|
+
current_table = table || initialize_table
|
463
|
+
while true
|
464
|
+
if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
|
465
|
+
if current_table.cas_new_node(i, hash, key, value)
|
466
|
+
increment_size
|
467
|
+
break
|
468
|
+
end
|
469
|
+
elsif (node_hash = node.hash) == MOVED
|
470
|
+
current_table = node.key
|
471
|
+
elsif Node.locked_hash?(node_hash)
|
472
|
+
try_await_lock(current_table, i, node)
|
473
|
+
else
|
474
|
+
succeeded, old_value = attempt_get_and_set(key, value, hash, current_table, i, node, node_hash)
|
475
|
+
break old_value if succeeded
|
476
|
+
end
|
477
|
+
end
|
478
|
+
end
|
479
|
+
|
480
|
+
def delete(key)
|
481
|
+
replace_if_exists(key, NULL)
|
482
|
+
end
|
483
|
+
|
484
|
+
def delete_pair(key, value)
|
485
|
+
result = internal_replace(key, value) { NULL }
|
486
|
+
if result && NULL != result
|
487
|
+
!!result
|
488
|
+
else
|
489
|
+
false
|
490
|
+
end
|
491
|
+
end
|
492
|
+
|
493
|
+
def each_pair
|
494
|
+
return self unless current_table = table
|
495
|
+
current_table_size = base_size = current_table.size
|
496
|
+
i = base_index = 0
|
497
|
+
while base_index < base_size
|
498
|
+
if node = current_table.volatile_get(i)
|
499
|
+
if node.hash == MOVED
|
500
|
+
current_table = node.key
|
501
|
+
current_table_size = current_table.size
|
502
|
+
else
|
503
|
+
begin
|
504
|
+
if NULL != (value = node.value) # skip deleted or special nodes
|
505
|
+
yield node.key, value
|
506
|
+
end
|
507
|
+
end while node = node.next
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
511
|
+
if (i_with_base = i + base_size) < current_table_size
|
512
|
+
i = i_with_base # visit upper slots if present
|
513
|
+
else
|
514
|
+
i = base_index += 1
|
515
|
+
end
|
516
|
+
end
|
517
|
+
self
|
518
|
+
end
|
519
|
+
|
520
|
+
def size
|
521
|
+
(sum = @counter.sum) < 0 ? 0 : sum # ignore transient negative values
|
522
|
+
end
|
523
|
+
|
524
|
+
def empty?
|
525
|
+
size == 0
|
526
|
+
end
|
527
|
+
|
528
|
+
# Implementation for clear. Steps through each bin, removing all nodes.
|
529
|
+
def clear
|
530
|
+
return self unless current_table = table
|
531
|
+
current_table_size = current_table.size
|
532
|
+
deleted_count = i = 0
|
533
|
+
while i < current_table_size
|
534
|
+
if !(node = current_table.volatile_get(i))
|
535
|
+
i += 1
|
536
|
+
elsif (node_hash = node.hash) == MOVED
|
537
|
+
current_table = node.key
|
538
|
+
current_table_size = current_table.size
|
539
|
+
elsif Node.locked_hash?(node_hash)
|
540
|
+
decrement_size(deleted_count) # opportunistically update count
|
541
|
+
deleted_count = 0
|
542
|
+
node.try_await_lock(current_table, i)
|
543
|
+
else
|
544
|
+
current_table.try_lock_via_hash(i, node, node_hash) do
|
545
|
+
begin
|
546
|
+
deleted_count += 1 if NULL != node.value # recheck under lock
|
547
|
+
node.value = nil
|
548
|
+
end while node = node.next
|
549
|
+
current_table.volatile_set(i, nil)
|
550
|
+
i += 1
|
551
|
+
end
|
552
|
+
end
|
553
|
+
end
|
554
|
+
decrement_size(deleted_count)
|
555
|
+
self
|
556
|
+
end
|
557
|
+
|
558
|
+
private
|
559
|
+
# Internal versions of the insertion methods, each a
|
560
|
+
# little more complicated than the last. All have
|
561
|
+
# the same basic structure:
|
562
|
+
# 1. If table uninitialized, create
|
563
|
+
# 2. If bin empty, try to CAS new node
|
564
|
+
# 3. If bin stale, use new table
|
565
|
+
# 4. Lock and validate; if valid, scan and add or update
|
566
|
+
#
|
567
|
+
# The others interweave other checks and/or alternative actions:
|
568
|
+
# * Plain +get_and_set+ checks for and performs resize after insertion.
|
569
|
+
# * compute_if_absent prescans for mapping without lock (and fails to add
|
570
|
+
# if present), which also makes pre-emptive resize checks worthwhile.
|
571
|
+
#
|
572
|
+
# Someday when details settle down a bit more, it might be worth
|
573
|
+
# some factoring to reduce sprawl.
|
574
|
+
def internal_replace(key, expected_old_value = NULL, &block)
|
575
|
+
hash = key_hash(key)
|
576
|
+
current_table = table
|
577
|
+
while current_table
|
578
|
+
if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
|
579
|
+
break
|
580
|
+
elsif (node_hash = node.hash) == MOVED
|
581
|
+
current_table = node.key
|
582
|
+
elsif (node_hash & HASH_BITS) != hash && !node.next # precheck
|
583
|
+
break # rules out possible existence
|
584
|
+
elsif Node.locked_hash?(node_hash)
|
585
|
+
try_await_lock(current_table, i, node)
|
586
|
+
else
|
587
|
+
succeeded, old_value = attempt_internal_replace(key, expected_old_value, hash, current_table, i, node, node_hash, &block)
|
588
|
+
return old_value if succeeded
|
589
|
+
end
|
590
|
+
end
|
591
|
+
NULL
|
592
|
+
end
|
593
|
+
|
594
|
+
def attempt_internal_replace(key, expected_old_value, hash, current_table, i, node, node_hash)
|
595
|
+
current_table.try_lock_via_hash(i, node, node_hash) do
|
596
|
+
predecessor_node = nil
|
597
|
+
old_value = NULL
|
598
|
+
begin
|
599
|
+
if node.matches?(key, hash) && NULL != (current_value = node.value)
|
600
|
+
if NULL == expected_old_value || expected_old_value == current_value # NULL == expected_old_value means whatever value
|
601
|
+
old_value = current_value
|
602
|
+
if NULL == (node.value = yield(old_value))
|
603
|
+
current_table.delete_node_at(i, node, predecessor_node)
|
604
|
+
decrement_size
|
605
|
+
end
|
606
|
+
end
|
607
|
+
break
|
608
|
+
end
|
609
|
+
|
610
|
+
predecessor_node = node
|
611
|
+
end while node = node.next
|
612
|
+
|
613
|
+
return true, old_value
|
614
|
+
end
|
615
|
+
end
|
616
|
+
|
617
|
+
def find_value_in_node_list(node, key, hash, pure_hash)
|
618
|
+
do_check_for_resize = false
|
619
|
+
while true
|
620
|
+
if pure_hash == hash && node.key?(key) && NULL != (value = node.value)
|
621
|
+
return value
|
622
|
+
elsif node = node.next
|
623
|
+
do_check_for_resize = true # at least 2 nodes -> check for resize
|
624
|
+
pure_hash = node.pure_hash
|
625
|
+
else
|
626
|
+
return NULL
|
627
|
+
end
|
628
|
+
end
|
629
|
+
ensure
|
630
|
+
check_for_resize if do_check_for_resize
|
631
|
+
end
|
632
|
+
|
633
|
+
def internal_compute(key, &block)
|
634
|
+
hash = key_hash(key)
|
635
|
+
current_table = table || initialize_table
|
636
|
+
while true
|
637
|
+
if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
|
638
|
+
succeeded, new_value = current_table.try_to_cas_in_computed(i, hash, key, &block)
|
639
|
+
if succeeded
|
640
|
+
if NULL == new_value
|
641
|
+
break nil
|
642
|
+
else
|
643
|
+
increment_size
|
644
|
+
break new_value
|
645
|
+
end
|
646
|
+
end
|
647
|
+
elsif (node_hash = node.hash) == MOVED
|
648
|
+
current_table = node.key
|
649
|
+
elsif Node.locked_hash?(node_hash)
|
650
|
+
try_await_lock(current_table, i, node)
|
651
|
+
else
|
652
|
+
succeeded, new_value = attempt_compute(key, hash, current_table, i, node, node_hash, &block)
|
653
|
+
break new_value if succeeded
|
654
|
+
end
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
def attempt_internal_compute_if_absent(key, hash, current_table, i, node, node_hash)
|
659
|
+
added = false
|
660
|
+
current_table.try_lock_via_hash(i, node, node_hash) do
|
661
|
+
while true
|
662
|
+
if node.matches?(key, hash) && NULL != (value = node.value)
|
663
|
+
return true, value
|
664
|
+
end
|
665
|
+
last = node
|
666
|
+
unless node = node.next
|
667
|
+
last.next = Node.new(hash, key, value = yield)
|
668
|
+
added = true
|
669
|
+
increment_size
|
670
|
+
return true, value
|
671
|
+
end
|
672
|
+
end
|
673
|
+
end
|
674
|
+
ensure
|
675
|
+
check_for_resize if added
|
676
|
+
end
|
677
|
+
|
678
|
+
def attempt_compute(key, hash, current_table, i, node, node_hash)
|
679
|
+
added = false
|
680
|
+
current_table.try_lock_via_hash(i, node, node_hash) do
|
681
|
+
predecessor_node = nil
|
682
|
+
while true
|
683
|
+
if node.matches?(key, hash) && NULL != (value = node.value)
|
684
|
+
if NULL == (node.value = value = yield(value))
|
685
|
+
current_table.delete_node_at(i, node, predecessor_node)
|
686
|
+
decrement_size
|
687
|
+
value = nil
|
688
|
+
end
|
689
|
+
return true, value
|
690
|
+
end
|
691
|
+
predecessor_node = node
|
692
|
+
unless node = node.next
|
693
|
+
if NULL == (value = yield(NULL))
|
694
|
+
value = nil
|
695
|
+
else
|
696
|
+
predecessor_node.next = Node.new(hash, key, value)
|
697
|
+
added = true
|
698
|
+
increment_size
|
699
|
+
end
|
700
|
+
return true, value
|
701
|
+
end
|
702
|
+
end
|
703
|
+
end
|
704
|
+
ensure
|
705
|
+
check_for_resize if added
|
706
|
+
end
|
707
|
+
|
708
|
+
def attempt_get_and_set(key, value, hash, current_table, i, node, node_hash)
|
709
|
+
node_nesting = nil
|
710
|
+
current_table.try_lock_via_hash(i, node, node_hash) do
|
711
|
+
node_nesting = 1
|
712
|
+
old_value = nil
|
713
|
+
found_old_value = false
|
714
|
+
while node
|
715
|
+
if node.matches?(key, hash) && NULL != (old_value = node.value)
|
716
|
+
found_old_value = true
|
717
|
+
node.value = value
|
718
|
+
break
|
719
|
+
end
|
720
|
+
last = node
|
721
|
+
unless node = node.next
|
722
|
+
last.next = Node.new(hash, key, value)
|
723
|
+
break
|
724
|
+
end
|
725
|
+
node_nesting += 1
|
726
|
+
end
|
727
|
+
|
728
|
+
return true, old_value if found_old_value
|
729
|
+
increment_size
|
730
|
+
true
|
731
|
+
end
|
732
|
+
ensure
|
733
|
+
check_for_resize if node_nesting && (node_nesting > 1 || current_table.size <= 64)
|
734
|
+
end
|
735
|
+
|
736
|
+
def initialize_copy(other)
|
737
|
+
super
|
738
|
+
@counter = Util::Adder.new
|
739
|
+
self.table = nil
|
740
|
+
self.size_control = (other_table = other.table) ? other_table.size : DEFAULT_CAPACITY
|
741
|
+
self
|
742
|
+
end
|
743
|
+
|
744
|
+
def try_await_lock(current_table, i, node)
|
745
|
+
check_for_resize # try resizing if can't get lock
|
746
|
+
node.try_await_lock(current_table, i)
|
747
|
+
end
|
748
|
+
|
749
|
+
def key_hash(key)
|
750
|
+
key.hash & HASH_BITS
|
751
|
+
end
|
752
|
+
|
753
|
+
# Returns a power of two table size for the given desired capacity.
|
754
|
+
def table_size_for(entry_count)
|
755
|
+
size = 2
|
756
|
+
size <<= 1 while size < entry_count
|
757
|
+
size
|
758
|
+
end
|
759
|
+
|
760
|
+
# Initializes table, using the size recorded in +size_control+.
|
761
|
+
def initialize_table
|
762
|
+
until current_table ||= table
|
763
|
+
if (size_ctrl = size_control) == NOW_RESIZING
|
764
|
+
Thread.pass # lost initialization race; just spin
|
765
|
+
else
|
766
|
+
try_in_resize_lock(current_table, size_ctrl) do
|
767
|
+
initial_size = size_ctrl > 0 ? size_ctrl : DEFAULT_CAPACITY
|
768
|
+
current_table = self.table = Table.new(initial_size)
|
769
|
+
initial_size - (initial_size >> 2) # 75% load factor
|
770
|
+
end
|
771
|
+
end
|
772
|
+
end
|
773
|
+
current_table
|
774
|
+
end
|
775
|
+
|
776
|
+
# If table is too small and not already resizing, creates next table and
|
777
|
+
# transfers bins. Rechecks occupancy after a transfer to see if another
|
778
|
+
# resize is already needed because resizings are lagging additions.
|
779
|
+
def check_for_resize
|
780
|
+
while (current_table = table) && MAX_CAPACITY > (table_size = current_table.size) && NOW_RESIZING != (size_ctrl = size_control) && size_ctrl < @counter.sum
|
781
|
+
try_in_resize_lock(current_table, size_ctrl) do
|
782
|
+
self.table = rebuild(current_table)
|
783
|
+
(table_size << 1) - (table_size >> 1) # 75% load factor
|
784
|
+
end
|
785
|
+
end
|
786
|
+
end
|
787
|
+
|
788
|
+
def try_in_resize_lock(current_table, size_ctrl)
|
789
|
+
if cas_size_control(size_ctrl, NOW_RESIZING)
|
790
|
+
begin
|
791
|
+
if current_table == table # recheck under lock
|
792
|
+
size_ctrl = yield # get new size_control
|
793
|
+
end
|
794
|
+
ensure
|
795
|
+
self.size_control = size_ctrl
|
796
|
+
end
|
797
|
+
end
|
798
|
+
end
|
799
|
+
|
800
|
+
# Moves and/or copies the nodes in each bin to new table. See above for explanation.
|
801
|
+
def rebuild(table)
|
802
|
+
old_table_size = table.size
|
803
|
+
new_table = table.next_in_size_table
|
804
|
+
# puts "#{old_table_size} -> #{new_table.size}"
|
805
|
+
forwarder = Node.new(MOVED, new_table, NULL)
|
806
|
+
rev_forwarder = nil
|
807
|
+
locked_indexes = nil # holds bins to revisit; nil until needed
|
808
|
+
locked_arr_idx = 0
|
809
|
+
bin = old_table_size - 1
|
810
|
+
i = bin
|
811
|
+
while true
|
812
|
+
if !(node = table.volatile_get(i))
|
813
|
+
# no lock needed (or available) if bin >= 0, because we're not popping values from locked_indexes until we've run through the whole table
|
814
|
+
redo unless (bin >= 0 ? table.cas(i, nil, forwarder) : lock_and_clean_up_reverse_forwarders(table, old_table_size, new_table, i, forwarder))
|
815
|
+
elsif Node.locked_hash?(node_hash = node.hash)
|
816
|
+
locked_indexes ||= Array.new
|
817
|
+
if bin < 0 && locked_arr_idx > 0
|
818
|
+
locked_arr_idx -= 1
|
819
|
+
i, locked_indexes[locked_arr_idx] = locked_indexes[locked_arr_idx], i # swap with another bin
|
820
|
+
redo
|
821
|
+
end
|
822
|
+
if bin < 0 || locked_indexes.size >= TRANSFER_BUFFER_SIZE
|
823
|
+
node.try_await_lock(table, i) # no other options -- block
|
824
|
+
redo
|
825
|
+
end
|
826
|
+
rev_forwarder ||= Node.new(MOVED, table, NULL)
|
827
|
+
redo unless table.volatile_get(i) == node && node.locked? # recheck before adding to list
|
828
|
+
locked_indexes << i
|
829
|
+
new_table.volatile_set(i, rev_forwarder)
|
830
|
+
new_table.volatile_set(i + old_table_size, rev_forwarder)
|
831
|
+
else
|
832
|
+
redo unless split_old_bin(table, new_table, i, node, node_hash, forwarder)
|
833
|
+
end
|
834
|
+
|
835
|
+
if bin > 0
|
836
|
+
i = (bin -= 1)
|
837
|
+
elsif locked_indexes && !locked_indexes.empty?
|
838
|
+
bin = -1
|
839
|
+
i = locked_indexes.pop
|
840
|
+
locked_arr_idx = locked_indexes.size - 1
|
841
|
+
else
|
842
|
+
return new_table
|
843
|
+
end
|
844
|
+
end
|
845
|
+
end
|
846
|
+
|
847
|
+
def lock_and_clean_up_reverse_forwarders(old_table, old_table_size, new_table, i, forwarder)
|
848
|
+
# transiently use a locked forwarding node
|
849
|
+
locked_forwarder = Node.new(moved_locked_hash = MOVED | LOCKED, new_table, NULL)
|
850
|
+
if old_table.cas(i, nil, locked_forwarder)
|
851
|
+
new_table.volatile_set(i, nil) # kill the potential reverse forwarders
|
852
|
+
new_table.volatile_set(i + old_table_size, nil) # kill the potential reverse forwarders
|
853
|
+
old_table.volatile_set(i, forwarder)
|
854
|
+
locked_forwarder.unlock_via_hash(moved_locked_hash, MOVED)
|
855
|
+
true
|
856
|
+
end
|
857
|
+
end
|
858
|
+
|
859
|
+
# Splits a normal bin with list headed by e into lo and hi parts; installs in given table.
|
860
|
+
def split_old_bin(table, new_table, i, node, node_hash, forwarder)
|
861
|
+
table.try_lock_via_hash(i, node, node_hash) do
|
862
|
+
split_bin(new_table, i, node, node_hash)
|
863
|
+
table.volatile_set(i, forwarder)
|
864
|
+
end
|
865
|
+
end
|
866
|
+
|
867
|
+
def split_bin(new_table, i, node, node_hash)
|
868
|
+
bit = new_table.size >> 1 # bit to split on
|
869
|
+
run_bit = node_hash & bit
|
870
|
+
last_run = nil
|
871
|
+
low = nil
|
872
|
+
high = nil
|
873
|
+
current_node = node
|
874
|
+
# this optimises for the lowest amount of volatile writes and objects created
|
875
|
+
while current_node = current_node.next
|
876
|
+
unless (b = current_node.hash & bit) == run_bit
|
877
|
+
run_bit = b
|
878
|
+
last_run = current_node
|
879
|
+
end
|
880
|
+
end
|
881
|
+
if run_bit == 0
|
882
|
+
low = last_run
|
883
|
+
else
|
884
|
+
high = last_run
|
885
|
+
end
|
886
|
+
current_node = node
|
887
|
+
until current_node == last_run
|
888
|
+
pure_hash = current_node.pure_hash
|
889
|
+
if (pure_hash & bit) == 0
|
890
|
+
low = Node.new(pure_hash, current_node.key, current_node.value, low)
|
891
|
+
else
|
892
|
+
high = Node.new(pure_hash, current_node.key, current_node.value, high)
|
893
|
+
end
|
894
|
+
current_node = current_node.next
|
895
|
+
end
|
896
|
+
new_table.volatile_set(i, low)
|
897
|
+
new_table.volatile_set(i + bit, high)
|
898
|
+
end
|
899
|
+
|
900
|
+
def increment_size
|
901
|
+
@counter.increment
|
902
|
+
end
|
903
|
+
|
904
|
+
def decrement_size(by = 1)
|
905
|
+
@counter.add(-by)
|
906
|
+
end
|
907
|
+
end
|
908
|
+
end
|