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,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
module UI
|
5
|
+
class Silent
|
6
|
+
attr_writer :shell
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
@warnings = []
|
10
|
+
end
|
11
|
+
|
12
|
+
def add_color(string, color)
|
13
|
+
string
|
14
|
+
end
|
15
|
+
|
16
|
+
def info(message, newline = nil)
|
17
|
+
end
|
18
|
+
|
19
|
+
def confirm(message, newline = nil)
|
20
|
+
end
|
21
|
+
|
22
|
+
def warn(message, newline = nil)
|
23
|
+
@warnings |= [message]
|
24
|
+
end
|
25
|
+
|
26
|
+
def error(message, newline = nil)
|
27
|
+
end
|
28
|
+
|
29
|
+
def debug(message, newline = nil)
|
30
|
+
end
|
31
|
+
|
32
|
+
def debug?
|
33
|
+
false
|
34
|
+
end
|
35
|
+
|
36
|
+
def quiet?
|
37
|
+
false
|
38
|
+
end
|
39
|
+
|
40
|
+
def ask(message)
|
41
|
+
end
|
42
|
+
|
43
|
+
def yes?(msg)
|
44
|
+
raise "Cannot ask yes? with a silent shell"
|
45
|
+
end
|
46
|
+
|
47
|
+
def no?
|
48
|
+
raise "Cannot ask no? with a silent shell"
|
49
|
+
end
|
50
|
+
|
51
|
+
def level=(name)
|
52
|
+
end
|
53
|
+
|
54
|
+
def level(name = nil)
|
55
|
+
end
|
56
|
+
|
57
|
+
def trace(message, newline = nil, force = false)
|
58
|
+
end
|
59
|
+
|
60
|
+
def silence
|
61
|
+
yield
|
62
|
+
end
|
63
|
+
|
64
|
+
def unprinted_warnings
|
65
|
+
@warnings
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
module URICredentialsFilter
|
5
|
+
module_function
|
6
|
+
|
7
|
+
def credential_filtered_uri(uri_to_anonymize)
|
8
|
+
return uri_to_anonymize if uri_to_anonymize.nil?
|
9
|
+
uri = uri_to_anonymize.dup
|
10
|
+
uri = URI(uri.to_s) unless uri.is_a?(URI)
|
11
|
+
if uri.userinfo
|
12
|
+
# oauth authentication
|
13
|
+
if uri.password == "x-oauth-basic" || uri.password == "x"
|
14
|
+
# URI as string does not display with password if no user is set
|
15
|
+
oauth_designation = uri.password
|
16
|
+
uri.user = oauth_designation
|
17
|
+
end
|
18
|
+
uri.password = nil
|
19
|
+
end
|
20
|
+
return uri if uri_to_anonymize.is_a?(URI)
|
21
|
+
return uri.to_s if uri_to_anonymize.is_a?(String)
|
22
|
+
rescue URI::InvalidURIError # uri is not canonical uri scheme
|
23
|
+
uri
|
24
|
+
end
|
25
|
+
|
26
|
+
def credential_filtered_string(str_to_filter, uri)
|
27
|
+
return str_to_filter if uri.nil? || str_to_filter.nil?
|
28
|
+
str_with_no_credentials = str_to_filter.dup
|
29
|
+
anonymous_uri_str = credential_filtered_uri(uri).to_s
|
30
|
+
uri_str = uri.to_s
|
31
|
+
if anonymous_uri_str != uri_str
|
32
|
+
str_with_no_credentials = str_with_no_credentials.gsub(uri_str, anonymous_uri_str)
|
33
|
+
end
|
34
|
+
str_with_no_credentials
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,1638 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# = fileutils.rb
|
4
|
+
#
|
5
|
+
# Copyright (c) 2000-2007 Minero Aoki
|
6
|
+
#
|
7
|
+
# This program is free software.
|
8
|
+
# You can distribute/modify this program under the same terms of ruby.
|
9
|
+
#
|
10
|
+
# == module Bundler::FileUtils
|
11
|
+
#
|
12
|
+
# Namespace for several file utility methods for copying, moving, removing, etc.
|
13
|
+
#
|
14
|
+
# === Module Functions
|
15
|
+
#
|
16
|
+
# require 'bundler/vendor/fileutils/lib/fileutils'
|
17
|
+
#
|
18
|
+
# Bundler::FileUtils.cd(dir, options)
|
19
|
+
# Bundler::FileUtils.cd(dir, options) {|dir| block }
|
20
|
+
# Bundler::FileUtils.pwd()
|
21
|
+
# Bundler::FileUtils.mkdir(dir, options)
|
22
|
+
# Bundler::FileUtils.mkdir(list, options)
|
23
|
+
# Bundler::FileUtils.mkdir_p(dir, options)
|
24
|
+
# Bundler::FileUtils.mkdir_p(list, options)
|
25
|
+
# Bundler::FileUtils.rmdir(dir, options)
|
26
|
+
# Bundler::FileUtils.rmdir(list, options)
|
27
|
+
# Bundler::FileUtils.ln(target, link, options)
|
28
|
+
# Bundler::FileUtils.ln(targets, dir, options)
|
29
|
+
# Bundler::FileUtils.ln_s(target, link, options)
|
30
|
+
# Bundler::FileUtils.ln_s(targets, dir, options)
|
31
|
+
# Bundler::FileUtils.ln_sf(target, link, options)
|
32
|
+
# Bundler::FileUtils.cp(src, dest, options)
|
33
|
+
# Bundler::FileUtils.cp(list, dir, options)
|
34
|
+
# Bundler::FileUtils.cp_r(src, dest, options)
|
35
|
+
# Bundler::FileUtils.cp_r(list, dir, options)
|
36
|
+
# Bundler::FileUtils.mv(src, dest, options)
|
37
|
+
# Bundler::FileUtils.mv(list, dir, options)
|
38
|
+
# Bundler::FileUtils.rm(list, options)
|
39
|
+
# Bundler::FileUtils.rm_r(list, options)
|
40
|
+
# Bundler::FileUtils.rm_rf(list, options)
|
41
|
+
# Bundler::FileUtils.install(src, dest, options)
|
42
|
+
# Bundler::FileUtils.chmod(mode, list, options)
|
43
|
+
# Bundler::FileUtils.chmod_R(mode, list, options)
|
44
|
+
# Bundler::FileUtils.chown(user, group, list, options)
|
45
|
+
# Bundler::FileUtils.chown_R(user, group, list, options)
|
46
|
+
# Bundler::FileUtils.touch(list, options)
|
47
|
+
#
|
48
|
+
# The <tt>options</tt> parameter is a hash of options, taken from the list
|
49
|
+
# <tt>:force</tt>, <tt>:noop</tt>, <tt>:preserve</tt>, and <tt>:verbose</tt>.
|
50
|
+
# <tt>:noop</tt> means that no changes are made. The other three are obvious.
|
51
|
+
# Each method documents the options that it honours.
|
52
|
+
#
|
53
|
+
# All methods that have the concept of a "source" file or directory can take
|
54
|
+
# either one file or a list of files in that argument. See the method
|
55
|
+
# documentation for examples.
|
56
|
+
#
|
57
|
+
# There are some `low level' methods, which do not accept any option:
|
58
|
+
#
|
59
|
+
# Bundler::FileUtils.copy_entry(src, dest, preserve = false, dereference = false)
|
60
|
+
# Bundler::FileUtils.copy_file(src, dest, preserve = false, dereference = true)
|
61
|
+
# Bundler::FileUtils.copy_stream(srcstream, deststream)
|
62
|
+
# Bundler::FileUtils.remove_entry(path, force = false)
|
63
|
+
# Bundler::FileUtils.remove_entry_secure(path, force = false)
|
64
|
+
# Bundler::FileUtils.remove_file(path, force = false)
|
65
|
+
# Bundler::FileUtils.compare_file(path_a, path_b)
|
66
|
+
# Bundler::FileUtils.compare_stream(stream_a, stream_b)
|
67
|
+
# Bundler::FileUtils.uptodate?(file, cmp_list)
|
68
|
+
#
|
69
|
+
# == module Bundler::FileUtils::Verbose
|
70
|
+
#
|
71
|
+
# This module has all methods of Bundler::FileUtils module, but it outputs messages
|
72
|
+
# before acting. This equates to passing the <tt>:verbose</tt> flag to methods
|
73
|
+
# in Bundler::FileUtils.
|
74
|
+
#
|
75
|
+
# == module Bundler::FileUtils::NoWrite
|
76
|
+
#
|
77
|
+
# This module has all methods of Bundler::FileUtils module, but never changes
|
78
|
+
# files/directories. This equates to passing the <tt>:noop</tt> flag to methods
|
79
|
+
# in Bundler::FileUtils.
|
80
|
+
#
|
81
|
+
# == module Bundler::FileUtils::DryRun
|
82
|
+
#
|
83
|
+
# This module has all methods of Bundler::FileUtils module, but never changes
|
84
|
+
# files/directories. This equates to passing the <tt>:noop</tt> and
|
85
|
+
# <tt>:verbose</tt> flags to methods in Bundler::FileUtils.
|
86
|
+
#
|
87
|
+
|
88
|
+
module Bundler::FileUtils
|
89
|
+
|
90
|
+
def self.private_module_function(name) #:nodoc:
|
91
|
+
module_function name
|
92
|
+
private_class_method name
|
93
|
+
end
|
94
|
+
|
95
|
+
#
|
96
|
+
# Returns the name of the current directory.
|
97
|
+
#
|
98
|
+
def pwd
|
99
|
+
Dir.pwd
|
100
|
+
end
|
101
|
+
module_function :pwd
|
102
|
+
|
103
|
+
alias getwd pwd
|
104
|
+
module_function :getwd
|
105
|
+
|
106
|
+
#
|
107
|
+
# Changes the current directory to the directory +dir+.
|
108
|
+
#
|
109
|
+
# If this method is called with block, resumes to the old
|
110
|
+
# working directory after the block execution finished.
|
111
|
+
#
|
112
|
+
# Bundler::FileUtils.cd('/', :verbose => true) # chdir and report it
|
113
|
+
#
|
114
|
+
# Bundler::FileUtils.cd('/') do # chdir
|
115
|
+
# # ... # do something
|
116
|
+
# end # return to original directory
|
117
|
+
#
|
118
|
+
def cd(dir, verbose: nil, &block) # :yield: dir
|
119
|
+
fu_output_message "cd #{dir}" if verbose
|
120
|
+
Dir.chdir(dir, &block)
|
121
|
+
fu_output_message 'cd -' if verbose and block
|
122
|
+
end
|
123
|
+
module_function :cd
|
124
|
+
|
125
|
+
alias chdir cd
|
126
|
+
module_function :chdir
|
127
|
+
|
128
|
+
#
|
129
|
+
# Returns true if +new+ is newer than all +old_list+.
|
130
|
+
# Non-existent files are older than any file.
|
131
|
+
#
|
132
|
+
# Bundler::FileUtils.uptodate?('hello.o', %w(hello.c hello.h)) or \
|
133
|
+
# system 'make hello.o'
|
134
|
+
#
|
135
|
+
def uptodate?(new, old_list)
|
136
|
+
return false unless File.exist?(new)
|
137
|
+
new_time = File.mtime(new)
|
138
|
+
old_list.each do |old|
|
139
|
+
if File.exist?(old)
|
140
|
+
return false unless new_time > File.mtime(old)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
true
|
144
|
+
end
|
145
|
+
module_function :uptodate?
|
146
|
+
|
147
|
+
def remove_trailing_slash(dir) #:nodoc:
|
148
|
+
dir == '/' ? dir : dir.chomp(?/)
|
149
|
+
end
|
150
|
+
private_module_function :remove_trailing_slash
|
151
|
+
|
152
|
+
#
|
153
|
+
# Creates one or more directories.
|
154
|
+
#
|
155
|
+
# Bundler::FileUtils.mkdir 'test'
|
156
|
+
# Bundler::FileUtils.mkdir %w( tmp data )
|
157
|
+
# Bundler::FileUtils.mkdir 'notexist', :noop => true # Does not really create.
|
158
|
+
# Bundler::FileUtils.mkdir 'tmp', :mode => 0700
|
159
|
+
#
|
160
|
+
def mkdir(list, mode: nil, noop: nil, verbose: nil)
|
161
|
+
list = fu_list(list)
|
162
|
+
fu_output_message "mkdir #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
|
163
|
+
return if noop
|
164
|
+
|
165
|
+
list.each do |dir|
|
166
|
+
fu_mkdir dir, mode
|
167
|
+
end
|
168
|
+
end
|
169
|
+
module_function :mkdir
|
170
|
+
|
171
|
+
#
|
172
|
+
# Creates a directory and all its parent directories.
|
173
|
+
# For example,
|
174
|
+
#
|
175
|
+
# Bundler::FileUtils.mkdir_p '/usr/local/lib/ruby'
|
176
|
+
#
|
177
|
+
# causes to make following directories, if it does not exist.
|
178
|
+
#
|
179
|
+
# * /usr
|
180
|
+
# * /usr/local
|
181
|
+
# * /usr/local/lib
|
182
|
+
# * /usr/local/lib/ruby
|
183
|
+
#
|
184
|
+
# You can pass several directories at a time in a list.
|
185
|
+
#
|
186
|
+
def mkdir_p(list, mode: nil, noop: nil, verbose: nil)
|
187
|
+
list = fu_list(list)
|
188
|
+
fu_output_message "mkdir -p #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
|
189
|
+
return *list if noop
|
190
|
+
|
191
|
+
list.map {|path| remove_trailing_slash(path)}.each do |path|
|
192
|
+
# optimize for the most common case
|
193
|
+
begin
|
194
|
+
fu_mkdir path, mode
|
195
|
+
next
|
196
|
+
rescue SystemCallError
|
197
|
+
next if File.directory?(path)
|
198
|
+
end
|
199
|
+
|
200
|
+
stack = []
|
201
|
+
until path == stack.last # dirname("/")=="/", dirname("C:/")=="C:/"
|
202
|
+
stack.push path
|
203
|
+
path = File.dirname(path)
|
204
|
+
end
|
205
|
+
stack.pop # root directory should exist
|
206
|
+
stack.reverse_each do |dir|
|
207
|
+
begin
|
208
|
+
fu_mkdir dir, mode
|
209
|
+
rescue SystemCallError
|
210
|
+
raise unless File.directory?(dir)
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
return *list
|
216
|
+
end
|
217
|
+
module_function :mkdir_p
|
218
|
+
|
219
|
+
alias mkpath mkdir_p
|
220
|
+
alias makedirs mkdir_p
|
221
|
+
module_function :mkpath
|
222
|
+
module_function :makedirs
|
223
|
+
|
224
|
+
def fu_mkdir(path, mode) #:nodoc:
|
225
|
+
path = remove_trailing_slash(path)
|
226
|
+
if mode
|
227
|
+
Dir.mkdir path, mode
|
228
|
+
File.chmod mode, path
|
229
|
+
else
|
230
|
+
Dir.mkdir path
|
231
|
+
end
|
232
|
+
end
|
233
|
+
private_module_function :fu_mkdir
|
234
|
+
|
235
|
+
#
|
236
|
+
# Removes one or more directories.
|
237
|
+
#
|
238
|
+
# Bundler::FileUtils.rmdir 'somedir'
|
239
|
+
# Bundler::FileUtils.rmdir %w(somedir anydir otherdir)
|
240
|
+
# # Does not really remove directory; outputs message.
|
241
|
+
# Bundler::FileUtils.rmdir 'somedir', :verbose => true, :noop => true
|
242
|
+
#
|
243
|
+
def rmdir(list, parents: nil, noop: nil, verbose: nil)
|
244
|
+
list = fu_list(list)
|
245
|
+
fu_output_message "rmdir #{parents ? '-p ' : ''}#{list.join ' '}" if verbose
|
246
|
+
return if noop
|
247
|
+
list.each do |dir|
|
248
|
+
begin
|
249
|
+
Dir.rmdir(dir = remove_trailing_slash(dir))
|
250
|
+
if parents
|
251
|
+
until (parent = File.dirname(dir)) == '.' or parent == dir
|
252
|
+
dir = parent
|
253
|
+
Dir.rmdir(dir)
|
254
|
+
end
|
255
|
+
end
|
256
|
+
rescue Errno::ENOTEMPTY, Errno::EEXIST, Errno::ENOENT
|
257
|
+
end
|
258
|
+
end
|
259
|
+
end
|
260
|
+
module_function :rmdir
|
261
|
+
|
262
|
+
#
|
263
|
+
# :call-seq:
|
264
|
+
# Bundler::FileUtils.ln(target, link, force: nil, noop: nil, verbose: nil)
|
265
|
+
# Bundler::FileUtils.ln(target, dir, force: nil, noop: nil, verbose: nil)
|
266
|
+
# Bundler::FileUtils.ln(targets, dir, force: nil, noop: nil, verbose: nil)
|
267
|
+
#
|
268
|
+
# In the first form, creates a hard link +link+ which points to +target+.
|
269
|
+
# If +link+ already exists, raises Errno::EEXIST.
|
270
|
+
# But if the :force option is set, overwrites +link+.
|
271
|
+
#
|
272
|
+
# Bundler::FileUtils.ln 'gcc', 'cc', verbose: true
|
273
|
+
# Bundler::FileUtils.ln '/usr/bin/emacs21', '/usr/bin/emacs'
|
274
|
+
#
|
275
|
+
# In the second form, creates a link +dir/target+ pointing to +target+.
|
276
|
+
# In the third form, creates several hard links in the directory +dir+,
|
277
|
+
# pointing to each item in +targets+.
|
278
|
+
# If +dir+ is not a directory, raises Errno::ENOTDIR.
|
279
|
+
#
|
280
|
+
# Bundler::FileUtils.cd '/sbin'
|
281
|
+
# Bundler::FileUtils.ln %w(cp mv mkdir), '/bin' # Now /sbin/cp and /bin/cp are linked.
|
282
|
+
#
|
283
|
+
def ln(src, dest, force: nil, noop: nil, verbose: nil)
|
284
|
+
fu_output_message "ln#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
|
285
|
+
return if noop
|
286
|
+
fu_each_src_dest0(src, dest) do |s,d|
|
287
|
+
remove_file d, true if force
|
288
|
+
File.link s, d
|
289
|
+
end
|
290
|
+
end
|
291
|
+
module_function :ln
|
292
|
+
|
293
|
+
alias link ln
|
294
|
+
module_function :link
|
295
|
+
|
296
|
+
#
|
297
|
+
# :call-seq:
|
298
|
+
# Bundler::FileUtils.ln_s(target, link, force: nil, noop: nil, verbose: nil)
|
299
|
+
# Bundler::FileUtils.ln_s(target, dir, force: nil, noop: nil, verbose: nil)
|
300
|
+
# Bundler::FileUtils.ln_s(targets, dir, force: nil, noop: nil, verbose: nil)
|
301
|
+
#
|
302
|
+
# In the first form, creates a symbolic link +link+ which points to +target+.
|
303
|
+
# If +link+ already exists, raises Errno::EEXIST.
|
304
|
+
# But if the :force option is set, overwrites +link+.
|
305
|
+
#
|
306
|
+
# Bundler::FileUtils.ln_s '/usr/bin/ruby', '/usr/local/bin/ruby'
|
307
|
+
# Bundler::FileUtils.ln_s 'verylongsourcefilename.c', 'c', force: true
|
308
|
+
#
|
309
|
+
# In the second form, creates a link +dir/target+ pointing to +target+.
|
310
|
+
# In the third form, creates several symbolic links in the directory +dir+,
|
311
|
+
# pointing to each item in +targets+.
|
312
|
+
# If +dir+ is not a directory, raises Errno::ENOTDIR.
|
313
|
+
#
|
314
|
+
# Bundler::FileUtils.ln_s Dir.glob('/bin/*.rb'), '/home/foo/bin'
|
315
|
+
#
|
316
|
+
def ln_s(src, dest, force: nil, noop: nil, verbose: nil)
|
317
|
+
fu_output_message "ln -s#{force ? 'f' : ''} #{[src,dest].flatten.join ' '}" if verbose
|
318
|
+
return if noop
|
319
|
+
fu_each_src_dest0(src, dest) do |s,d|
|
320
|
+
remove_file d, true if force
|
321
|
+
File.symlink s, d
|
322
|
+
end
|
323
|
+
end
|
324
|
+
module_function :ln_s
|
325
|
+
|
326
|
+
alias symlink ln_s
|
327
|
+
module_function :symlink
|
328
|
+
|
329
|
+
#
|
330
|
+
# :call-seq:
|
331
|
+
# Bundler::FileUtils.ln_sf(*args)
|
332
|
+
#
|
333
|
+
# Same as
|
334
|
+
#
|
335
|
+
# Bundler::FileUtils.ln_s(*args, force: true)
|
336
|
+
#
|
337
|
+
def ln_sf(src, dest, noop: nil, verbose: nil)
|
338
|
+
ln_s src, dest, force: true, noop: noop, verbose: verbose
|
339
|
+
end
|
340
|
+
module_function :ln_sf
|
341
|
+
|
342
|
+
#
|
343
|
+
# Copies a file content +src+ to +dest+. If +dest+ is a directory,
|
344
|
+
# copies +src+ to +dest/src+.
|
345
|
+
#
|
346
|
+
# If +src+ is a list of files, then +dest+ must be a directory.
|
347
|
+
#
|
348
|
+
# Bundler::FileUtils.cp 'eval.c', 'eval.c.org'
|
349
|
+
# Bundler::FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'
|
350
|
+
# Bundler::FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6', :verbose => true
|
351
|
+
# Bundler::FileUtils.cp 'symlink', 'dest' # copy content, "dest" is not a symlink
|
352
|
+
#
|
353
|
+
def cp(src, dest, preserve: nil, noop: nil, verbose: nil)
|
354
|
+
fu_output_message "cp#{preserve ? ' -p' : ''} #{[src,dest].flatten.join ' '}" if verbose
|
355
|
+
return if noop
|
356
|
+
fu_each_src_dest(src, dest) do |s, d|
|
357
|
+
copy_file s, d, preserve
|
358
|
+
end
|
359
|
+
end
|
360
|
+
module_function :cp
|
361
|
+
|
362
|
+
alias copy cp
|
363
|
+
module_function :copy
|
364
|
+
|
365
|
+
#
|
366
|
+
# Copies +src+ to +dest+. If +src+ is a directory, this method copies
|
367
|
+
# all its contents recursively. If +dest+ is a directory, copies
|
368
|
+
# +src+ to +dest/src+.
|
369
|
+
#
|
370
|
+
# +src+ can be a list of files.
|
371
|
+
#
|
372
|
+
# # Installing Ruby library "mylib" under the site_ruby
|
373
|
+
# Bundler::FileUtils.rm_r site_ruby + '/mylib', :force
|
374
|
+
# Bundler::FileUtils.cp_r 'lib/', site_ruby + '/mylib'
|
375
|
+
#
|
376
|
+
# # Examples of copying several files to target directory.
|
377
|
+
# Bundler::FileUtils.cp_r %w(mail.rb field.rb debug/), site_ruby + '/tmail'
|
378
|
+
# Bundler::FileUtils.cp_r Dir.glob('*.rb'), '/home/foo/lib/ruby', :noop => true, :verbose => true
|
379
|
+
#
|
380
|
+
# # If you want to copy all contents of a directory instead of the
|
381
|
+
# # directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
|
382
|
+
# # use following code.
|
383
|
+
# Bundler::FileUtils.cp_r 'src/.', 'dest' # cp_r('src', 'dest') makes dest/src,
|
384
|
+
# # but this doesn't.
|
385
|
+
#
|
386
|
+
def cp_r(src, dest, preserve: nil, noop: nil, verbose: nil,
|
387
|
+
dereference_root: true, remove_destination: nil)
|
388
|
+
fu_output_message "cp -r#{preserve ? 'p' : ''}#{remove_destination ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if verbose
|
389
|
+
return if noop
|
390
|
+
fu_each_src_dest(src, dest) do |s, d|
|
391
|
+
copy_entry s, d, preserve, dereference_root, remove_destination
|
392
|
+
end
|
393
|
+
end
|
394
|
+
module_function :cp_r
|
395
|
+
|
396
|
+
#
|
397
|
+
# Copies a file system entry +src+ to +dest+.
|
398
|
+
# If +src+ is a directory, this method copies its contents recursively.
|
399
|
+
# This method preserves file types, c.f. symlink, directory...
|
400
|
+
# (FIFO, device files and etc. are not supported yet)
|
401
|
+
#
|
402
|
+
# Both of +src+ and +dest+ must be a path name.
|
403
|
+
# +src+ must exist, +dest+ must not exist.
|
404
|
+
#
|
405
|
+
# If +preserve+ is true, this method preserves owner, group, and
|
406
|
+
# modified time. Permissions are copied regardless +preserve+.
|
407
|
+
#
|
408
|
+
# If +dereference_root+ is true, this method dereference tree root.
|
409
|
+
#
|
410
|
+
# If +remove_destination+ is true, this method removes each destination file before copy.
|
411
|
+
#
|
412
|
+
def copy_entry(src, dest, preserve = false, dereference_root = false, remove_destination = false)
|
413
|
+
Entry_.new(src, nil, dereference_root).wrap_traverse(proc do |ent|
|
414
|
+
destent = Entry_.new(dest, ent.rel, false)
|
415
|
+
File.unlink destent.path if remove_destination && File.file?(destent.path)
|
416
|
+
ent.copy destent.path
|
417
|
+
end, proc do |ent|
|
418
|
+
destent = Entry_.new(dest, ent.rel, false)
|
419
|
+
ent.copy_metadata destent.path if preserve
|
420
|
+
end)
|
421
|
+
end
|
422
|
+
module_function :copy_entry
|
423
|
+
|
424
|
+
#
|
425
|
+
# Copies file contents of +src+ to +dest+.
|
426
|
+
# Both of +src+ and +dest+ must be a path name.
|
427
|
+
#
|
428
|
+
def copy_file(src, dest, preserve = false, dereference = true)
|
429
|
+
ent = Entry_.new(src, nil, dereference)
|
430
|
+
ent.copy_file dest
|
431
|
+
ent.copy_metadata dest if preserve
|
432
|
+
end
|
433
|
+
module_function :copy_file
|
434
|
+
|
435
|
+
#
|
436
|
+
# Copies stream +src+ to +dest+.
|
437
|
+
# +src+ must respond to #read(n) and
|
438
|
+
# +dest+ must respond to #write(str).
|
439
|
+
#
|
440
|
+
def copy_stream(src, dest)
|
441
|
+
IO.copy_stream(src, dest)
|
442
|
+
end
|
443
|
+
module_function :copy_stream
|
444
|
+
|
445
|
+
#
|
446
|
+
# Moves file(s) +src+ to +dest+. If +file+ and +dest+ exist on the different
|
447
|
+
# disk partition, the file is copied then the original file is removed.
|
448
|
+
#
|
449
|
+
# Bundler::FileUtils.mv 'badname.rb', 'goodname.rb'
|
450
|
+
# Bundler::FileUtils.mv 'stuff.rb', '/notexist/lib/ruby', :force => true # no error
|
451
|
+
#
|
452
|
+
# Bundler::FileUtils.mv %w(junk.txt dust.txt), '/home/foo/.trash/'
|
453
|
+
# Bundler::FileUtils.mv Dir.glob('test*.rb'), 'test', :noop => true, :verbose => true
|
454
|
+
#
|
455
|
+
def mv(src, dest, force: nil, noop: nil, verbose: nil, secure: nil)
|
456
|
+
fu_output_message "mv#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
|
457
|
+
return if noop
|
458
|
+
fu_each_src_dest(src, dest) do |s, d|
|
459
|
+
destent = Entry_.new(d, nil, true)
|
460
|
+
begin
|
461
|
+
if destent.exist?
|
462
|
+
if destent.directory?
|
463
|
+
raise Errno::EEXIST, d
|
464
|
+
else
|
465
|
+
destent.remove_file if rename_cannot_overwrite_file?
|
466
|
+
end
|
467
|
+
end
|
468
|
+
begin
|
469
|
+
File.rename s, d
|
470
|
+
rescue Errno::EXDEV
|
471
|
+
copy_entry s, d, true
|
472
|
+
if secure
|
473
|
+
remove_entry_secure s, force
|
474
|
+
else
|
475
|
+
remove_entry s, force
|
476
|
+
end
|
477
|
+
end
|
478
|
+
rescue SystemCallError
|
479
|
+
raise unless force
|
480
|
+
end
|
481
|
+
end
|
482
|
+
end
|
483
|
+
module_function :mv
|
484
|
+
|
485
|
+
alias move mv
|
486
|
+
module_function :move
|
487
|
+
|
488
|
+
def rename_cannot_overwrite_file? #:nodoc:
|
489
|
+
/emx/ =~ RUBY_PLATFORM
|
490
|
+
end
|
491
|
+
private_module_function :rename_cannot_overwrite_file?
|
492
|
+
|
493
|
+
#
|
494
|
+
# Remove file(s) specified in +list+. This method cannot remove directories.
|
495
|
+
# All StandardErrors are ignored when the :force option is set.
|
496
|
+
#
|
497
|
+
# Bundler::FileUtils.rm %w( junk.txt dust.txt )
|
498
|
+
# Bundler::FileUtils.rm Dir.glob('*.so')
|
499
|
+
# Bundler::FileUtils.rm 'NotExistFile', :force => true # never raises exception
|
500
|
+
#
|
501
|
+
def rm(list, force: nil, noop: nil, verbose: nil)
|
502
|
+
list = fu_list(list)
|
503
|
+
fu_output_message "rm#{force ? ' -f' : ''} #{list.join ' '}" if verbose
|
504
|
+
return if noop
|
505
|
+
|
506
|
+
list.each do |path|
|
507
|
+
remove_file path, force
|
508
|
+
end
|
509
|
+
end
|
510
|
+
module_function :rm
|
511
|
+
|
512
|
+
alias remove rm
|
513
|
+
module_function :remove
|
514
|
+
|
515
|
+
#
|
516
|
+
# Equivalent to
|
517
|
+
#
|
518
|
+
# Bundler::FileUtils.rm(list, :force => true)
|
519
|
+
#
|
520
|
+
def rm_f(list, noop: nil, verbose: nil)
|
521
|
+
rm list, force: true, noop: noop, verbose: verbose
|
522
|
+
end
|
523
|
+
module_function :rm_f
|
524
|
+
|
525
|
+
alias safe_unlink rm_f
|
526
|
+
module_function :safe_unlink
|
527
|
+
|
528
|
+
#
|
529
|
+
# remove files +list+[0] +list+[1]... If +list+[n] is a directory,
|
530
|
+
# removes its all contents recursively. This method ignores
|
531
|
+
# StandardError when :force option is set.
|
532
|
+
#
|
533
|
+
# Bundler::FileUtils.rm_r Dir.glob('/tmp/*')
|
534
|
+
# Bundler::FileUtils.rm_r 'some_dir', :force => true
|
535
|
+
#
|
536
|
+
# WARNING: This method causes local vulnerability
|
537
|
+
# if one of parent directories or removing directory tree are world
|
538
|
+
# writable (including /tmp, whose permission is 1777), and the current
|
539
|
+
# process has strong privilege such as Unix super user (root), and the
|
540
|
+
# system has symbolic link. For secure removing, read the documentation
|
541
|
+
# of #remove_entry_secure carefully, and set :secure option to true.
|
542
|
+
# Default is :secure=>false.
|
543
|
+
#
|
544
|
+
# NOTE: This method calls #remove_entry_secure if :secure option is set.
|
545
|
+
# See also #remove_entry_secure.
|
546
|
+
#
|
547
|
+
def rm_r(list, force: nil, noop: nil, verbose: nil, secure: nil)
|
548
|
+
list = fu_list(list)
|
549
|
+
fu_output_message "rm -r#{force ? 'f' : ''} #{list.join ' '}" if verbose
|
550
|
+
return if noop
|
551
|
+
list.each do |path|
|
552
|
+
if secure
|
553
|
+
remove_entry_secure path, force
|
554
|
+
else
|
555
|
+
remove_entry path, force
|
556
|
+
end
|
557
|
+
end
|
558
|
+
end
|
559
|
+
module_function :rm_r
|
560
|
+
|
561
|
+
#
|
562
|
+
# Equivalent to
|
563
|
+
#
|
564
|
+
# Bundler::FileUtils.rm_r(list, :force => true)
|
565
|
+
#
|
566
|
+
# WARNING: This method causes local vulnerability.
|
567
|
+
# Read the documentation of #rm_r first.
|
568
|
+
#
|
569
|
+
def rm_rf(list, noop: nil, verbose: nil, secure: nil)
|
570
|
+
rm_r list, force: true, noop: noop, verbose: verbose, secure: secure
|
571
|
+
end
|
572
|
+
module_function :rm_rf
|
573
|
+
|
574
|
+
alias rmtree rm_rf
|
575
|
+
module_function :rmtree
|
576
|
+
|
577
|
+
#
|
578
|
+
# This method removes a file system entry +path+. +path+ shall be a
|
579
|
+
# regular file, a directory, or something. If +path+ is a directory,
|
580
|
+
# remove it recursively. This method is required to avoid TOCTTOU
|
581
|
+
# (time-of-check-to-time-of-use) local security vulnerability of #rm_r.
|
582
|
+
# #rm_r causes security hole when:
|
583
|
+
#
|
584
|
+
# * Parent directory is world writable (including /tmp).
|
585
|
+
# * Removing directory tree includes world writable directory.
|
586
|
+
# * The system has symbolic link.
|
587
|
+
#
|
588
|
+
# To avoid this security hole, this method applies special preprocess.
|
589
|
+
# If +path+ is a directory, this method chown(2) and chmod(2) all
|
590
|
+
# removing directories. This requires the current process is the
|
591
|
+
# owner of the removing whole directory tree, or is the super user (root).
|
592
|
+
#
|
593
|
+
# WARNING: You must ensure that *ALL* parent directories cannot be
|
594
|
+
# moved by other untrusted users. For example, parent directories
|
595
|
+
# should not be owned by untrusted users, and should not be world
|
596
|
+
# writable except when the sticky bit set.
|
597
|
+
#
|
598
|
+
# WARNING: Only the owner of the removing directory tree, or Unix super
|
599
|
+
# user (root) should invoke this method. Otherwise this method does not
|
600
|
+
# work.
|
601
|
+
#
|
602
|
+
# For details of this security vulnerability, see Perl's case:
|
603
|
+
#
|
604
|
+
# * http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0448
|
605
|
+
# * http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0452
|
606
|
+
#
|
607
|
+
# For fileutils.rb, this vulnerability is reported in [ruby-dev:26100].
|
608
|
+
#
|
609
|
+
def remove_entry_secure(path, force = false)
|
610
|
+
unless fu_have_symlink?
|
611
|
+
remove_entry path, force
|
612
|
+
return
|
613
|
+
end
|
614
|
+
fullpath = File.expand_path(path)
|
615
|
+
st = File.lstat(fullpath)
|
616
|
+
unless st.directory?
|
617
|
+
File.unlink fullpath
|
618
|
+
return
|
619
|
+
end
|
620
|
+
# is a directory.
|
621
|
+
parent_st = File.stat(File.dirname(fullpath))
|
622
|
+
unless parent_st.world_writable?
|
623
|
+
remove_entry path, force
|
624
|
+
return
|
625
|
+
end
|
626
|
+
unless parent_st.sticky?
|
627
|
+
raise ArgumentError, "parent directory is world writable, Bundler::FileUtils#remove_entry_secure does not work; abort: #{path.inspect} (parent directory mode #{'%o' % parent_st.mode})"
|
628
|
+
end
|
629
|
+
# freeze tree root
|
630
|
+
euid = Process.euid
|
631
|
+
File.open(fullpath + '/.') {|f|
|
632
|
+
unless fu_stat_identical_entry?(st, f.stat)
|
633
|
+
# symlink (TOC-to-TOU attack?)
|
634
|
+
File.unlink fullpath
|
635
|
+
return
|
636
|
+
end
|
637
|
+
f.chown euid, -1
|
638
|
+
f.chmod 0700
|
639
|
+
unless fu_stat_identical_entry?(st, File.lstat(fullpath))
|
640
|
+
# TOC-to-TOU attack?
|
641
|
+
File.unlink fullpath
|
642
|
+
return
|
643
|
+
end
|
644
|
+
}
|
645
|
+
# ---- tree root is frozen ----
|
646
|
+
root = Entry_.new(path)
|
647
|
+
root.preorder_traverse do |ent|
|
648
|
+
if ent.directory?
|
649
|
+
ent.chown euid, -1
|
650
|
+
ent.chmod 0700
|
651
|
+
end
|
652
|
+
end
|
653
|
+
root.postorder_traverse do |ent|
|
654
|
+
begin
|
655
|
+
ent.remove
|
656
|
+
rescue
|
657
|
+
raise unless force
|
658
|
+
end
|
659
|
+
end
|
660
|
+
rescue
|
661
|
+
raise unless force
|
662
|
+
end
|
663
|
+
module_function :remove_entry_secure
|
664
|
+
|
665
|
+
def fu_have_symlink? #:nodoc:
|
666
|
+
File.symlink nil, nil
|
667
|
+
rescue NotImplementedError
|
668
|
+
return false
|
669
|
+
rescue TypeError
|
670
|
+
return true
|
671
|
+
end
|
672
|
+
private_module_function :fu_have_symlink?
|
673
|
+
|
674
|
+
def fu_stat_identical_entry?(a, b) #:nodoc:
|
675
|
+
a.dev == b.dev and a.ino == b.ino
|
676
|
+
end
|
677
|
+
private_module_function :fu_stat_identical_entry?
|
678
|
+
|
679
|
+
#
|
680
|
+
# This method removes a file system entry +path+.
|
681
|
+
# +path+ might be a regular file, a directory, or something.
|
682
|
+
# If +path+ is a directory, remove it recursively.
|
683
|
+
#
|
684
|
+
# See also #remove_entry_secure.
|
685
|
+
#
|
686
|
+
def remove_entry(path, force = false)
|
687
|
+
Entry_.new(path).postorder_traverse do |ent|
|
688
|
+
begin
|
689
|
+
ent.remove
|
690
|
+
rescue
|
691
|
+
raise unless force
|
692
|
+
end
|
693
|
+
end
|
694
|
+
rescue
|
695
|
+
raise unless force
|
696
|
+
end
|
697
|
+
module_function :remove_entry
|
698
|
+
|
699
|
+
#
|
700
|
+
# Removes a file +path+.
|
701
|
+
# This method ignores StandardError if +force+ is true.
|
702
|
+
#
|
703
|
+
def remove_file(path, force = false)
|
704
|
+
Entry_.new(path).remove_file
|
705
|
+
rescue
|
706
|
+
raise unless force
|
707
|
+
end
|
708
|
+
module_function :remove_file
|
709
|
+
|
710
|
+
#
|
711
|
+
# Removes a directory +dir+ and its contents recursively.
|
712
|
+
# This method ignores StandardError if +force+ is true.
|
713
|
+
#
|
714
|
+
def remove_dir(path, force = false)
|
715
|
+
remove_entry path, force # FIXME?? check if it is a directory
|
716
|
+
end
|
717
|
+
module_function :remove_dir
|
718
|
+
|
719
|
+
#
|
720
|
+
# Returns true if the contents of a file +a+ and a file +b+ are identical.
|
721
|
+
#
|
722
|
+
# Bundler::FileUtils.compare_file('somefile', 'somefile') #=> true
|
723
|
+
# Bundler::FileUtils.compare_file('/dev/null', '/dev/urandom') #=> false
|
724
|
+
#
|
725
|
+
def compare_file(a, b)
|
726
|
+
return false unless File.size(a) == File.size(b)
|
727
|
+
File.open(a, 'rb') {|fa|
|
728
|
+
File.open(b, 'rb') {|fb|
|
729
|
+
return compare_stream(fa, fb)
|
730
|
+
}
|
731
|
+
}
|
732
|
+
end
|
733
|
+
module_function :compare_file
|
734
|
+
|
735
|
+
alias identical? compare_file
|
736
|
+
alias cmp compare_file
|
737
|
+
module_function :identical?
|
738
|
+
module_function :cmp
|
739
|
+
|
740
|
+
#
|
741
|
+
# Returns true if the contents of a stream +a+ and +b+ are identical.
|
742
|
+
#
|
743
|
+
def compare_stream(a, b)
|
744
|
+
bsize = fu_stream_blksize(a, b)
|
745
|
+
sa = String.new(capacity: bsize)
|
746
|
+
sb = String.new(capacity: bsize)
|
747
|
+
begin
|
748
|
+
a.read(bsize, sa)
|
749
|
+
b.read(bsize, sb)
|
750
|
+
return true if sa.empty? && sb.empty?
|
751
|
+
end while sa == sb
|
752
|
+
false
|
753
|
+
end
|
754
|
+
module_function :compare_stream
|
755
|
+
|
756
|
+
#
|
757
|
+
# If +src+ is not same as +dest+, copies it and changes the permission
|
758
|
+
# mode to +mode+. If +dest+ is a directory, destination is +dest+/+src+.
|
759
|
+
# This method removes destination before copy.
|
760
|
+
#
|
761
|
+
# Bundler::FileUtils.install 'ruby', '/usr/local/bin/ruby', :mode => 0755, :verbose => true
|
762
|
+
# Bundler::FileUtils.install 'lib.rb', '/usr/local/lib/ruby/site_ruby', :verbose => true
|
763
|
+
#
|
764
|
+
def install(src, dest, mode: nil, owner: nil, group: nil, preserve: nil,
|
765
|
+
noop: nil, verbose: nil)
|
766
|
+
if verbose
|
767
|
+
msg = +"install -c"
|
768
|
+
msg << ' -p' if preserve
|
769
|
+
msg << ' -m ' << mode_to_s(mode) if mode
|
770
|
+
msg << " -o #{owner}" if owner
|
771
|
+
msg << " -g #{group}" if group
|
772
|
+
msg << ' ' << [src,dest].flatten.join(' ')
|
773
|
+
fu_output_message msg
|
774
|
+
end
|
775
|
+
return if noop
|
776
|
+
uid = fu_get_uid(owner)
|
777
|
+
gid = fu_get_gid(group)
|
778
|
+
fu_each_src_dest(src, dest) do |s, d|
|
779
|
+
st = File.stat(s)
|
780
|
+
unless File.exist?(d) and compare_file(s, d)
|
781
|
+
remove_file d, true
|
782
|
+
copy_file s, d
|
783
|
+
File.utime st.atime, st.mtime, d if preserve
|
784
|
+
File.chmod fu_mode(mode, st), d if mode
|
785
|
+
File.chown uid, gid, d if uid or gid
|
786
|
+
end
|
787
|
+
end
|
788
|
+
end
|
789
|
+
module_function :install
|
790
|
+
|
791
|
+
def user_mask(target) #:nodoc:
|
792
|
+
target.each_char.inject(0) do |mask, chr|
|
793
|
+
case chr
|
794
|
+
when "u"
|
795
|
+
mask | 04700
|
796
|
+
when "g"
|
797
|
+
mask | 02070
|
798
|
+
when "o"
|
799
|
+
mask | 01007
|
800
|
+
when "a"
|
801
|
+
mask | 07777
|
802
|
+
else
|
803
|
+
raise ArgumentError, "invalid `who' symbol in file mode: #{chr}"
|
804
|
+
end
|
805
|
+
end
|
806
|
+
end
|
807
|
+
private_module_function :user_mask
|
808
|
+
|
809
|
+
def apply_mask(mode, user_mask, op, mode_mask) #:nodoc:
|
810
|
+
case op
|
811
|
+
when '='
|
812
|
+
(mode & ~user_mask) | (user_mask & mode_mask)
|
813
|
+
when '+'
|
814
|
+
mode | (user_mask & mode_mask)
|
815
|
+
when '-'
|
816
|
+
mode & ~(user_mask & mode_mask)
|
817
|
+
end
|
818
|
+
end
|
819
|
+
private_module_function :apply_mask
|
820
|
+
|
821
|
+
def symbolic_modes_to_i(mode_sym, path) #:nodoc:
|
822
|
+
mode = if File::Stat === path
|
823
|
+
path.mode
|
824
|
+
else
|
825
|
+
File.stat(path).mode
|
826
|
+
end
|
827
|
+
mode_sym.split(/,/).inject(mode & 07777) do |current_mode, clause|
|
828
|
+
target, *actions = clause.split(/([=+-])/)
|
829
|
+
raise ArgumentError, "invalid file mode: #{mode_sym}" if actions.empty?
|
830
|
+
target = 'a' if target.empty?
|
831
|
+
user_mask = user_mask(target)
|
832
|
+
actions.each_slice(2) do |op, perm|
|
833
|
+
need_apply = op == '='
|
834
|
+
mode_mask = (perm || '').each_char.inject(0) do |mask, chr|
|
835
|
+
case chr
|
836
|
+
when "r"
|
837
|
+
mask | 0444
|
838
|
+
when "w"
|
839
|
+
mask | 0222
|
840
|
+
when "x"
|
841
|
+
mask | 0111
|
842
|
+
when "X"
|
843
|
+
if FileTest.directory? path
|
844
|
+
mask | 0111
|
845
|
+
else
|
846
|
+
mask
|
847
|
+
end
|
848
|
+
when "s"
|
849
|
+
mask | 06000
|
850
|
+
when "t"
|
851
|
+
mask | 01000
|
852
|
+
when "u", "g", "o"
|
853
|
+
if mask.nonzero?
|
854
|
+
current_mode = apply_mask(current_mode, user_mask, op, mask)
|
855
|
+
end
|
856
|
+
need_apply = false
|
857
|
+
copy_mask = user_mask(chr)
|
858
|
+
(current_mode & copy_mask) / (copy_mask & 0111) * (user_mask & 0111)
|
859
|
+
else
|
860
|
+
raise ArgumentError, "invalid `perm' symbol in file mode: #{chr}"
|
861
|
+
end
|
862
|
+
end
|
863
|
+
|
864
|
+
if mode_mask.nonzero? || need_apply
|
865
|
+
current_mode = apply_mask(current_mode, user_mask, op, mode_mask)
|
866
|
+
end
|
867
|
+
end
|
868
|
+
current_mode
|
869
|
+
end
|
870
|
+
end
|
871
|
+
private_module_function :symbolic_modes_to_i
|
872
|
+
|
873
|
+
def fu_mode(mode, path) #:nodoc:
|
874
|
+
mode.is_a?(String) ? symbolic_modes_to_i(mode, path) : mode
|
875
|
+
end
|
876
|
+
private_module_function :fu_mode
|
877
|
+
|
878
|
+
def mode_to_s(mode) #:nodoc:
|
879
|
+
mode.is_a?(String) ? mode : "%o" % mode
|
880
|
+
end
|
881
|
+
private_module_function :mode_to_s
|
882
|
+
|
883
|
+
#
|
884
|
+
# Changes permission bits on the named files (in +list+) to the bit pattern
|
885
|
+
# represented by +mode+.
|
886
|
+
#
|
887
|
+
# +mode+ is the symbolic and absolute mode can be used.
|
888
|
+
#
|
889
|
+
# Absolute mode is
|
890
|
+
# Bundler::FileUtils.chmod 0755, 'somecommand'
|
891
|
+
# Bundler::FileUtils.chmod 0644, %w(my.rb your.rb his.rb her.rb)
|
892
|
+
# Bundler::FileUtils.chmod 0755, '/usr/bin/ruby', :verbose => true
|
893
|
+
#
|
894
|
+
# Symbolic mode is
|
895
|
+
# Bundler::FileUtils.chmod "u=wrx,go=rx", 'somecommand'
|
896
|
+
# Bundler::FileUtils.chmod "u=wr,go=rr", %w(my.rb your.rb his.rb her.rb)
|
897
|
+
# Bundler::FileUtils.chmod "u=wrx,go=rx", '/usr/bin/ruby', :verbose => true
|
898
|
+
#
|
899
|
+
# "a" :: is user, group, other mask.
|
900
|
+
# "u" :: is user's mask.
|
901
|
+
# "g" :: is group's mask.
|
902
|
+
# "o" :: is other's mask.
|
903
|
+
# "w" :: is write permission.
|
904
|
+
# "r" :: is read permission.
|
905
|
+
# "x" :: is execute permission.
|
906
|
+
# "X" ::
|
907
|
+
# is execute permission for directories only, must be used in conjunction with "+"
|
908
|
+
# "s" :: is uid, gid.
|
909
|
+
# "t" :: is sticky bit.
|
910
|
+
# "+" :: is added to a class given the specified mode.
|
911
|
+
# "-" :: Is removed from a given class given mode.
|
912
|
+
# "=" :: Is the exact nature of the class will be given a specified mode.
|
913
|
+
|
914
|
+
def chmod(mode, list, noop: nil, verbose: nil)
|
915
|
+
list = fu_list(list)
|
916
|
+
fu_output_message sprintf('chmod %s %s', mode_to_s(mode), list.join(' ')) if verbose
|
917
|
+
return if noop
|
918
|
+
list.each do |path|
|
919
|
+
Entry_.new(path).chmod(fu_mode(mode, path))
|
920
|
+
end
|
921
|
+
end
|
922
|
+
module_function :chmod
|
923
|
+
|
924
|
+
#
|
925
|
+
# Changes permission bits on the named files (in +list+)
|
926
|
+
# to the bit pattern represented by +mode+.
|
927
|
+
#
|
928
|
+
# Bundler::FileUtils.chmod_R 0700, "/tmp/app.#{$$}"
|
929
|
+
# Bundler::FileUtils.chmod_R "u=wrx", "/tmp/app.#{$$}"
|
930
|
+
#
|
931
|
+
def chmod_R(mode, list, noop: nil, verbose: nil, force: nil)
|
932
|
+
list = fu_list(list)
|
933
|
+
fu_output_message sprintf('chmod -R%s %s %s',
|
934
|
+
(force ? 'f' : ''),
|
935
|
+
mode_to_s(mode), list.join(' ')) if verbose
|
936
|
+
return if noop
|
937
|
+
list.each do |root|
|
938
|
+
Entry_.new(root).traverse do |ent|
|
939
|
+
begin
|
940
|
+
ent.chmod(fu_mode(mode, ent.path))
|
941
|
+
rescue
|
942
|
+
raise unless force
|
943
|
+
end
|
944
|
+
end
|
945
|
+
end
|
946
|
+
end
|
947
|
+
module_function :chmod_R
|
948
|
+
|
949
|
+
#
|
950
|
+
# Changes owner and group on the named files (in +list+)
|
951
|
+
# to the user +user+ and the group +group+. +user+ and +group+
|
952
|
+
# may be an ID (Integer/String) or a name (String).
|
953
|
+
# If +user+ or +group+ is nil, this method does not change
|
954
|
+
# the attribute.
|
955
|
+
#
|
956
|
+
# Bundler::FileUtils.chown 'root', 'staff', '/usr/local/bin/ruby'
|
957
|
+
# Bundler::FileUtils.chown nil, 'bin', Dir.glob('/usr/bin/*'), :verbose => true
|
958
|
+
#
|
959
|
+
def chown(user, group, list, noop: nil, verbose: nil)
|
960
|
+
list = fu_list(list)
|
961
|
+
fu_output_message sprintf('chown %s %s',
|
962
|
+
(group ? "#{user}:#{group}" : user || ':'),
|
963
|
+
list.join(' ')) if verbose
|
964
|
+
return if noop
|
965
|
+
uid = fu_get_uid(user)
|
966
|
+
gid = fu_get_gid(group)
|
967
|
+
list.each do |path|
|
968
|
+
Entry_.new(path).chown uid, gid
|
969
|
+
end
|
970
|
+
end
|
971
|
+
module_function :chown
|
972
|
+
|
973
|
+
#
|
974
|
+
# Changes owner and group on the named files (in +list+)
|
975
|
+
# to the user +user+ and the group +group+ recursively.
|
976
|
+
# +user+ and +group+ may be an ID (Integer/String) or
|
977
|
+
# a name (String). If +user+ or +group+ is nil, this
|
978
|
+
# method does not change the attribute.
|
979
|
+
#
|
980
|
+
# Bundler::FileUtils.chown_R 'www', 'www', '/var/www/htdocs'
|
981
|
+
# Bundler::FileUtils.chown_R 'cvs', 'cvs', '/var/cvs', :verbose => true
|
982
|
+
#
|
983
|
+
def chown_R(user, group, list, noop: nil, verbose: nil, force: nil)
|
984
|
+
list = fu_list(list)
|
985
|
+
fu_output_message sprintf('chown -R%s %s %s',
|
986
|
+
(force ? 'f' : ''),
|
987
|
+
(group ? "#{user}:#{group}" : user || ':'),
|
988
|
+
list.join(' ')) if verbose
|
989
|
+
return if noop
|
990
|
+
uid = fu_get_uid(user)
|
991
|
+
gid = fu_get_gid(group)
|
992
|
+
list.each do |root|
|
993
|
+
Entry_.new(root).traverse do |ent|
|
994
|
+
begin
|
995
|
+
ent.chown uid, gid
|
996
|
+
rescue
|
997
|
+
raise unless force
|
998
|
+
end
|
999
|
+
end
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
module_function :chown_R
|
1003
|
+
|
1004
|
+
begin
|
1005
|
+
require 'etc'
|
1006
|
+
rescue LoadError # rescue LoadError for miniruby
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
def fu_get_uid(user) #:nodoc:
|
1010
|
+
return nil unless user
|
1011
|
+
case user
|
1012
|
+
when Integer
|
1013
|
+
user
|
1014
|
+
when /\A\d+\z/
|
1015
|
+
user.to_i
|
1016
|
+
else
|
1017
|
+
Etc.getpwnam(user) ? Etc.getpwnam(user).uid : nil
|
1018
|
+
end
|
1019
|
+
end
|
1020
|
+
private_module_function :fu_get_uid
|
1021
|
+
|
1022
|
+
def fu_get_gid(group) #:nodoc:
|
1023
|
+
return nil unless group
|
1024
|
+
case group
|
1025
|
+
when Integer
|
1026
|
+
group
|
1027
|
+
when /\A\d+\z/
|
1028
|
+
group.to_i
|
1029
|
+
else
|
1030
|
+
Etc.getgrnam(group) ? Etc.getgrnam(group).gid : nil
|
1031
|
+
end
|
1032
|
+
end
|
1033
|
+
private_module_function :fu_get_gid
|
1034
|
+
|
1035
|
+
#
|
1036
|
+
# Updates modification time (mtime) and access time (atime) of file(s) in
|
1037
|
+
# +list+. Files are created if they don't exist.
|
1038
|
+
#
|
1039
|
+
# Bundler::FileUtils.touch 'timestamp'
|
1040
|
+
# Bundler::FileUtils.touch Dir.glob('*.c'); system 'make'
|
1041
|
+
#
|
1042
|
+
def touch(list, noop: nil, verbose: nil, mtime: nil, nocreate: nil)
|
1043
|
+
list = fu_list(list)
|
1044
|
+
t = mtime
|
1045
|
+
if verbose
|
1046
|
+
fu_output_message "touch #{nocreate ? '-c ' : ''}#{t ? t.strftime('-t %Y%m%d%H%M.%S ') : ''}#{list.join ' '}"
|
1047
|
+
end
|
1048
|
+
return if noop
|
1049
|
+
list.each do |path|
|
1050
|
+
created = nocreate
|
1051
|
+
begin
|
1052
|
+
File.utime(t, t, path)
|
1053
|
+
rescue Errno::ENOENT
|
1054
|
+
raise if created
|
1055
|
+
File.open(path, 'a') {
|
1056
|
+
;
|
1057
|
+
}
|
1058
|
+
created = true
|
1059
|
+
retry if t
|
1060
|
+
end
|
1061
|
+
end
|
1062
|
+
end
|
1063
|
+
module_function :touch
|
1064
|
+
|
1065
|
+
private
|
1066
|
+
|
1067
|
+
module StreamUtils_
|
1068
|
+
private
|
1069
|
+
|
1070
|
+
def fu_windows?
|
1071
|
+
/mswin|mingw|bccwin|emx/ =~ RUBY_PLATFORM
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
def fu_copy_stream0(src, dest, blksize = nil) #:nodoc:
|
1075
|
+
IO.copy_stream(src, dest)
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
def fu_stream_blksize(*streams)
|
1079
|
+
streams.each do |s|
|
1080
|
+
next unless s.respond_to?(:stat)
|
1081
|
+
size = fu_blksize(s.stat)
|
1082
|
+
return size if size
|
1083
|
+
end
|
1084
|
+
fu_default_blksize()
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
def fu_blksize(st)
|
1088
|
+
s = st.blksize
|
1089
|
+
return nil unless s
|
1090
|
+
return nil if s == 0
|
1091
|
+
s
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
def fu_default_blksize
|
1095
|
+
1024
|
1096
|
+
end
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
include StreamUtils_
|
1100
|
+
extend StreamUtils_
|
1101
|
+
|
1102
|
+
class Entry_ #:nodoc: internal use only
|
1103
|
+
include StreamUtils_
|
1104
|
+
|
1105
|
+
def initialize(a, b = nil, deref = false)
|
1106
|
+
@prefix = @rel = @path = nil
|
1107
|
+
if b
|
1108
|
+
@prefix = a
|
1109
|
+
@rel = b
|
1110
|
+
else
|
1111
|
+
@path = a
|
1112
|
+
end
|
1113
|
+
@deref = deref
|
1114
|
+
@stat = nil
|
1115
|
+
@lstat = nil
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
def inspect
|
1119
|
+
"\#<#{self.class} #{path()}>"
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
def path
|
1123
|
+
if @path
|
1124
|
+
File.path(@path)
|
1125
|
+
else
|
1126
|
+
join(@prefix, @rel)
|
1127
|
+
end
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
def prefix
|
1131
|
+
@prefix || @path
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
def rel
|
1135
|
+
@rel
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
def dereference?
|
1139
|
+
@deref
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
def exist?
|
1143
|
+
begin
|
1144
|
+
lstat
|
1145
|
+
true
|
1146
|
+
rescue Errno::ENOENT
|
1147
|
+
false
|
1148
|
+
end
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
def file?
|
1152
|
+
s = lstat!
|
1153
|
+
s and s.file?
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
def directory?
|
1157
|
+
s = lstat!
|
1158
|
+
s and s.directory?
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
def symlink?
|
1162
|
+
s = lstat!
|
1163
|
+
s and s.symlink?
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
def chardev?
|
1167
|
+
s = lstat!
|
1168
|
+
s and s.chardev?
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
def blockdev?
|
1172
|
+
s = lstat!
|
1173
|
+
s and s.blockdev?
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
def socket?
|
1177
|
+
s = lstat!
|
1178
|
+
s and s.socket?
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
def pipe?
|
1182
|
+
s = lstat!
|
1183
|
+
s and s.pipe?
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
S_IF_DOOR = 0xD000
|
1187
|
+
|
1188
|
+
def door?
|
1189
|
+
s = lstat!
|
1190
|
+
s and (s.mode & 0xF000 == S_IF_DOOR)
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
def entries
|
1194
|
+
opts = {}
|
1195
|
+
opts[:encoding] = ::Encoding::UTF_8 if fu_windows?
|
1196
|
+
Dir.entries(path(), opts)\
|
1197
|
+
.reject {|n| n == '.' or n == '..' }\
|
1198
|
+
.map {|n| Entry_.new(prefix(), join(rel(), n.untaint)) }
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
def stat
|
1202
|
+
return @stat if @stat
|
1203
|
+
if lstat() and lstat().symlink?
|
1204
|
+
@stat = File.stat(path())
|
1205
|
+
else
|
1206
|
+
@stat = lstat()
|
1207
|
+
end
|
1208
|
+
@stat
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
def stat!
|
1212
|
+
return @stat if @stat
|
1213
|
+
if lstat! and lstat!.symlink?
|
1214
|
+
@stat = File.stat(path())
|
1215
|
+
else
|
1216
|
+
@stat = lstat!
|
1217
|
+
end
|
1218
|
+
@stat
|
1219
|
+
rescue SystemCallError
|
1220
|
+
nil
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
def lstat
|
1224
|
+
if dereference?
|
1225
|
+
@lstat ||= File.stat(path())
|
1226
|
+
else
|
1227
|
+
@lstat ||= File.lstat(path())
|
1228
|
+
end
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
def lstat!
|
1232
|
+
lstat()
|
1233
|
+
rescue SystemCallError
|
1234
|
+
nil
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
def chmod(mode)
|
1238
|
+
if symlink?
|
1239
|
+
File.lchmod mode, path() if have_lchmod?
|
1240
|
+
else
|
1241
|
+
File.chmod mode, path()
|
1242
|
+
end
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
def chown(uid, gid)
|
1246
|
+
if symlink?
|
1247
|
+
File.lchown uid, gid, path() if have_lchown?
|
1248
|
+
else
|
1249
|
+
File.chown uid, gid, path()
|
1250
|
+
end
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
def copy(dest)
|
1254
|
+
lstat
|
1255
|
+
case
|
1256
|
+
when file?
|
1257
|
+
copy_file dest
|
1258
|
+
when directory?
|
1259
|
+
if !File.exist?(dest) and descendant_directory?(dest, path)
|
1260
|
+
raise ArgumentError, "cannot copy directory %s to itself %s" % [path, dest]
|
1261
|
+
end
|
1262
|
+
begin
|
1263
|
+
Dir.mkdir dest
|
1264
|
+
rescue
|
1265
|
+
raise unless File.directory?(dest)
|
1266
|
+
end
|
1267
|
+
when symlink?
|
1268
|
+
File.symlink File.readlink(path()), dest
|
1269
|
+
when chardev?
|
1270
|
+
raise "cannot handle device file" unless File.respond_to?(:mknod)
|
1271
|
+
mknod dest, ?c, 0666, lstat().rdev
|
1272
|
+
when blockdev?
|
1273
|
+
raise "cannot handle device file" unless File.respond_to?(:mknod)
|
1274
|
+
mknod dest, ?b, 0666, lstat().rdev
|
1275
|
+
when socket?
|
1276
|
+
raise "cannot handle socket" unless File.respond_to?(:mknod)
|
1277
|
+
mknod dest, nil, lstat().mode, 0
|
1278
|
+
when pipe?
|
1279
|
+
raise "cannot handle FIFO" unless File.respond_to?(:mkfifo)
|
1280
|
+
mkfifo dest, 0666
|
1281
|
+
when door?
|
1282
|
+
raise "cannot handle door: #{path()}"
|
1283
|
+
else
|
1284
|
+
raise "unknown file type: #{path()}"
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
def copy_file(dest)
|
1289
|
+
File.open(path()) do |s|
|
1290
|
+
File.open(dest, 'wb', s.stat.mode) do |f|
|
1291
|
+
IO.copy_stream(s, f)
|
1292
|
+
end
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
def copy_metadata(path)
|
1297
|
+
st = lstat()
|
1298
|
+
if !st.symlink?
|
1299
|
+
File.utime st.atime, st.mtime, path
|
1300
|
+
end
|
1301
|
+
mode = st.mode
|
1302
|
+
begin
|
1303
|
+
if st.symlink?
|
1304
|
+
begin
|
1305
|
+
File.lchown st.uid, st.gid, path
|
1306
|
+
rescue NotImplementedError
|
1307
|
+
end
|
1308
|
+
else
|
1309
|
+
File.chown st.uid, st.gid, path
|
1310
|
+
end
|
1311
|
+
rescue Errno::EPERM, Errno::EACCES
|
1312
|
+
# clear setuid/setgid
|
1313
|
+
mode &= 01777
|
1314
|
+
end
|
1315
|
+
if st.symlink?
|
1316
|
+
begin
|
1317
|
+
File.lchmod mode, path
|
1318
|
+
rescue NotImplementedError
|
1319
|
+
end
|
1320
|
+
else
|
1321
|
+
File.chmod mode, path
|
1322
|
+
end
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
def remove
|
1326
|
+
if directory?
|
1327
|
+
remove_dir1
|
1328
|
+
else
|
1329
|
+
remove_file
|
1330
|
+
end
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
def remove_dir1
|
1334
|
+
platform_support {
|
1335
|
+
Dir.rmdir path().chomp(?/)
|
1336
|
+
}
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
def remove_file
|
1340
|
+
platform_support {
|
1341
|
+
File.unlink path
|
1342
|
+
}
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
def platform_support
|
1346
|
+
return yield unless fu_windows?
|
1347
|
+
first_time_p = true
|
1348
|
+
begin
|
1349
|
+
yield
|
1350
|
+
rescue Errno::ENOENT
|
1351
|
+
raise
|
1352
|
+
rescue => err
|
1353
|
+
if first_time_p
|
1354
|
+
first_time_p = false
|
1355
|
+
begin
|
1356
|
+
File.chmod 0700, path() # Windows does not have symlink
|
1357
|
+
retry
|
1358
|
+
rescue SystemCallError
|
1359
|
+
end
|
1360
|
+
end
|
1361
|
+
raise err
|
1362
|
+
end
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
def preorder_traverse
|
1366
|
+
stack = [self]
|
1367
|
+
while ent = stack.pop
|
1368
|
+
yield ent
|
1369
|
+
stack.concat ent.entries.reverse if ent.directory?
|
1370
|
+
end
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
alias traverse preorder_traverse
|
1374
|
+
|
1375
|
+
def postorder_traverse
|
1376
|
+
if directory?
|
1377
|
+
entries().each do |ent|
|
1378
|
+
ent.postorder_traverse do |e|
|
1379
|
+
yield e
|
1380
|
+
end
|
1381
|
+
end
|
1382
|
+
end
|
1383
|
+
ensure
|
1384
|
+
yield self
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
def wrap_traverse(pre, post)
|
1388
|
+
pre.call self
|
1389
|
+
if directory?
|
1390
|
+
entries.each do |ent|
|
1391
|
+
ent.wrap_traverse pre, post
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
post.call self
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
private
|
1398
|
+
|
1399
|
+
$fileutils_rb_have_lchmod = nil
|
1400
|
+
|
1401
|
+
def have_lchmod?
|
1402
|
+
# This is not MT-safe, but it does not matter.
|
1403
|
+
if $fileutils_rb_have_lchmod == nil
|
1404
|
+
$fileutils_rb_have_lchmod = check_have_lchmod?
|
1405
|
+
end
|
1406
|
+
$fileutils_rb_have_lchmod
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
def check_have_lchmod?
|
1410
|
+
return false unless File.respond_to?(:lchmod)
|
1411
|
+
File.lchmod 0
|
1412
|
+
return true
|
1413
|
+
rescue NotImplementedError
|
1414
|
+
return false
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
$fileutils_rb_have_lchown = nil
|
1418
|
+
|
1419
|
+
def have_lchown?
|
1420
|
+
# This is not MT-safe, but it does not matter.
|
1421
|
+
if $fileutils_rb_have_lchown == nil
|
1422
|
+
$fileutils_rb_have_lchown = check_have_lchown?
|
1423
|
+
end
|
1424
|
+
$fileutils_rb_have_lchown
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
def check_have_lchown?
|
1428
|
+
return false unless File.respond_to?(:lchown)
|
1429
|
+
File.lchown nil, nil
|
1430
|
+
return true
|
1431
|
+
rescue NotImplementedError
|
1432
|
+
return false
|
1433
|
+
end
|
1434
|
+
|
1435
|
+
def join(dir, base)
|
1436
|
+
return File.path(dir) if not base or base == '.'
|
1437
|
+
return File.path(base) if not dir or dir == '.'
|
1438
|
+
File.join(dir, base)
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
if File::ALT_SEPARATOR
|
1442
|
+
DIRECTORY_TERM = "(?=[/#{Regexp.quote(File::ALT_SEPARATOR)}]|\\z)"
|
1443
|
+
else
|
1444
|
+
DIRECTORY_TERM = "(?=/|\\z)"
|
1445
|
+
end
|
1446
|
+
SYSCASE = File::FNM_SYSCASE.nonzero? ? "-i" : ""
|
1447
|
+
|
1448
|
+
def descendant_directory?(descendant, ascendant)
|
1449
|
+
/\A(?#{SYSCASE}:#{Regexp.quote(ascendant)})#{DIRECTORY_TERM}/ =~ File.dirname(descendant)
|
1450
|
+
end
|
1451
|
+
end # class Entry_
|
1452
|
+
|
1453
|
+
def fu_list(arg) #:nodoc:
|
1454
|
+
[arg].flatten.map {|path| File.path(path) }
|
1455
|
+
end
|
1456
|
+
private_module_function :fu_list
|
1457
|
+
|
1458
|
+
def fu_each_src_dest(src, dest) #:nodoc:
|
1459
|
+
fu_each_src_dest0(src, dest) do |s, d|
|
1460
|
+
raise ArgumentError, "same file: #{s} and #{d}" if fu_same?(s, d)
|
1461
|
+
yield s, d
|
1462
|
+
end
|
1463
|
+
end
|
1464
|
+
private_module_function :fu_each_src_dest
|
1465
|
+
|
1466
|
+
def fu_each_src_dest0(src, dest) #:nodoc:
|
1467
|
+
if tmp = Array.try_convert(src)
|
1468
|
+
tmp.each do |s|
|
1469
|
+
s = File.path(s)
|
1470
|
+
yield s, File.join(dest, File.basename(s))
|
1471
|
+
end
|
1472
|
+
else
|
1473
|
+
src = File.path(src)
|
1474
|
+
if File.directory?(dest)
|
1475
|
+
yield src, File.join(dest, File.basename(src))
|
1476
|
+
else
|
1477
|
+
yield src, File.path(dest)
|
1478
|
+
end
|
1479
|
+
end
|
1480
|
+
end
|
1481
|
+
private_module_function :fu_each_src_dest0
|
1482
|
+
|
1483
|
+
def fu_same?(a, b) #:nodoc:
|
1484
|
+
File.identical?(a, b)
|
1485
|
+
end
|
1486
|
+
private_module_function :fu_same?
|
1487
|
+
|
1488
|
+
@fileutils_output = $stderr
|
1489
|
+
@fileutils_label = ''
|
1490
|
+
|
1491
|
+
def fu_output_message(msg) #:nodoc:
|
1492
|
+
@fileutils_output ||= $stderr
|
1493
|
+
@fileutils_label ||= ''
|
1494
|
+
@fileutils_output.puts @fileutils_label + msg
|
1495
|
+
end
|
1496
|
+
private_module_function :fu_output_message
|
1497
|
+
|
1498
|
+
# This hash table holds command options.
|
1499
|
+
OPT_TABLE = {} #:nodoc: internal use only
|
1500
|
+
(private_instance_methods & methods(false)).inject(OPT_TABLE) {|tbl, name|
|
1501
|
+
(tbl[name.to_s] = instance_method(name).parameters).map! {|t, n| n if t == :key}.compact!
|
1502
|
+
tbl
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
#
|
1506
|
+
# Returns an Array of method names which have any options.
|
1507
|
+
#
|
1508
|
+
# p Bundler::FileUtils.commands #=> ["chmod", "cp", "cp_r", "install", ...]
|
1509
|
+
#
|
1510
|
+
def self.commands
|
1511
|
+
OPT_TABLE.keys
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
#
|
1515
|
+
# Returns an Array of option names.
|
1516
|
+
#
|
1517
|
+
# p Bundler::FileUtils.options #=> ["noop", "force", "verbose", "preserve", "mode"]
|
1518
|
+
#
|
1519
|
+
def self.options
|
1520
|
+
OPT_TABLE.values.flatten.uniq.map {|sym| sym.to_s }
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
#
|
1524
|
+
# Returns true if the method +mid+ have an option +opt+.
|
1525
|
+
#
|
1526
|
+
# p Bundler::FileUtils.have_option?(:cp, :noop) #=> true
|
1527
|
+
# p Bundler::FileUtils.have_option?(:rm, :force) #=> true
|
1528
|
+
# p Bundler::FileUtils.have_option?(:rm, :preserve) #=> false
|
1529
|
+
#
|
1530
|
+
def self.have_option?(mid, opt)
|
1531
|
+
li = OPT_TABLE[mid.to_s] or raise ArgumentError, "no such method: #{mid}"
|
1532
|
+
li.include?(opt)
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
#
|
1536
|
+
# Returns an Array of option names of the method +mid+.
|
1537
|
+
#
|
1538
|
+
# p Bundler::FileUtils.options_of(:rm) #=> ["noop", "verbose", "force"]
|
1539
|
+
#
|
1540
|
+
def self.options_of(mid)
|
1541
|
+
OPT_TABLE[mid.to_s].map {|sym| sym.to_s }
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
#
|
1545
|
+
# Returns an Array of method names which have the option +opt+.
|
1546
|
+
#
|
1547
|
+
# p Bundler::FileUtils.collect_method(:preserve) #=> ["cp", "cp_r", "copy", "install"]
|
1548
|
+
#
|
1549
|
+
def self.collect_method(opt)
|
1550
|
+
OPT_TABLE.keys.select {|m| OPT_TABLE[m].include?(opt) }
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
LOW_METHODS = singleton_methods(false) - collect_method(:noop).map(&:intern)
|
1554
|
+
module LowMethods
|
1555
|
+
private
|
1556
|
+
def _do_nothing(*)end
|
1557
|
+
::Bundler::FileUtils::LOW_METHODS.map {|name| alias_method name, :_do_nothing}
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
METHODS = singleton_methods() - [:private_module_function,
|
1561
|
+
:commands, :options, :have_option?, :options_of, :collect_method]
|
1562
|
+
|
1563
|
+
#
|
1564
|
+
# This module has all methods of Bundler::FileUtils module, but it outputs messages
|
1565
|
+
# before acting. This equates to passing the <tt>:verbose</tt> flag to
|
1566
|
+
# methods in Bundler::FileUtils.
|
1567
|
+
#
|
1568
|
+
module Verbose
|
1569
|
+
include Bundler::FileUtils
|
1570
|
+
@fileutils_output = $stderr
|
1571
|
+
@fileutils_label = ''
|
1572
|
+
names = ::Bundler::FileUtils.collect_method(:verbose)
|
1573
|
+
names.each do |name|
|
1574
|
+
module_eval(<<-EOS, __FILE__, __LINE__ + 1)
|
1575
|
+
def #{name}(*args, **options)
|
1576
|
+
super(*args, **options, verbose: true)
|
1577
|
+
end
|
1578
|
+
EOS
|
1579
|
+
end
|
1580
|
+
private(*names)
|
1581
|
+
extend self
|
1582
|
+
class << self
|
1583
|
+
public(*::Bundler::FileUtils::METHODS)
|
1584
|
+
end
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
#
|
1588
|
+
# This module has all methods of Bundler::FileUtils module, but never changes
|
1589
|
+
# files/directories. This equates to passing the <tt>:noop</tt> flag
|
1590
|
+
# to methods in Bundler::FileUtils.
|
1591
|
+
#
|
1592
|
+
module NoWrite
|
1593
|
+
include Bundler::FileUtils
|
1594
|
+
include LowMethods
|
1595
|
+
@fileutils_output = $stderr
|
1596
|
+
@fileutils_label = ''
|
1597
|
+
names = ::Bundler::FileUtils.collect_method(:noop)
|
1598
|
+
names.each do |name|
|
1599
|
+
module_eval(<<-EOS, __FILE__, __LINE__ + 1)
|
1600
|
+
def #{name}(*args, **options)
|
1601
|
+
super(*args, **options, noop: true)
|
1602
|
+
end
|
1603
|
+
EOS
|
1604
|
+
end
|
1605
|
+
private(*names)
|
1606
|
+
extend self
|
1607
|
+
class << self
|
1608
|
+
public(*::Bundler::FileUtils::METHODS)
|
1609
|
+
end
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
#
|
1613
|
+
# This module has all methods of Bundler::FileUtils module, but never changes
|
1614
|
+
# files/directories, with printing message before acting.
|
1615
|
+
# This equates to passing the <tt>:noop</tt> and <tt>:verbose</tt> flag
|
1616
|
+
# to methods in Bundler::FileUtils.
|
1617
|
+
#
|
1618
|
+
module DryRun
|
1619
|
+
include Bundler::FileUtils
|
1620
|
+
include LowMethods
|
1621
|
+
@fileutils_output = $stderr
|
1622
|
+
@fileutils_label = ''
|
1623
|
+
names = ::Bundler::FileUtils.collect_method(:noop)
|
1624
|
+
names.each do |name|
|
1625
|
+
module_eval(<<-EOS, __FILE__, __LINE__ + 1)
|
1626
|
+
def #{name}(*args, **options)
|
1627
|
+
super(*args, **options, noop: true, verbose: true)
|
1628
|
+
end
|
1629
|
+
EOS
|
1630
|
+
end
|
1631
|
+
private(*names)
|
1632
|
+
extend self
|
1633
|
+
class << self
|
1634
|
+
public(*::Bundler::FileUtils::METHODS)
|
1635
|
+
end
|
1636
|
+
end
|
1637
|
+
|
1638
|
+
end
|