lazy_record 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/.gitignore +9 -0
- data/.rspec +2 -0
- data/.rubocop.yml +5 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +3 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lazy_record.gemspec +39 -0
- data/lib/lazy_record.rb +14 -0
- data/lib/lazy_record/associations.rb +48 -0
- data/lib/lazy_record/attributes.rb +56 -0
- data/lib/lazy_record/base.rb +62 -0
- data/lib/lazy_record/callbacks.rb +30 -0
- data/lib/lazy_record/dynamic_modules.rb +17 -0
- data/lib/lazy_record/methods.rb +36 -0
- data/lib/lazy_record/relation.rb +37 -0
- data/lib/lazy_record/scopes.rb +20 -0
- data/lib/lazy_record/validations.rb +31 -0
- data/lib/lazy_record/version.rb +4 -0
- data/vendor/bundle/bin/coderay +22 -0
- data/vendor/bundle/bin/htmldiff +24 -0
- data/vendor/bundle/bin/ldiff +24 -0
- data/vendor/bundle/bin/pry +22 -0
- data/vendor/bundle/bin/rake +22 -0
- data/vendor/bundle/bin/rspec +22 -0
- data/vendor/bundle/cache/activesupport-5.0.2.gem +0 -0
- data/vendor/bundle/cache/coderay-1.1.1.gem +0 -0
- data/vendor/bundle/cache/concurrent-ruby-1.0.5.gem +0 -0
- data/vendor/bundle/cache/diff-lcs-1.3.gem +0 -0
- data/vendor/bundle/cache/i18n-0.8.1.gem +0 -0
- data/vendor/bundle/cache/method_source-0.8.2.gem +0 -0
- data/vendor/bundle/cache/minitest-5.10.1.gem +0 -0
- data/vendor/bundle/cache/pry-0.10.4.gem +0 -0
- data/vendor/bundle/cache/rake-10.5.0.gem +0 -0
- data/vendor/bundle/cache/rspec-3.5.0.gem +0 -0
- data/vendor/bundle/cache/rspec-core-3.5.4.gem +0 -0
- data/vendor/bundle/cache/rspec-expectations-3.5.0.gem +0 -0
- data/vendor/bundle/cache/rspec-mocks-3.5.0.gem +0 -0
- data/vendor/bundle/cache/rspec-support-3.5.0.gem +0 -0
- data/vendor/bundle/cache/slop-3.6.0.gem +0 -0
- data/vendor/bundle/cache/thread_safe-0.3.6.gem +0 -0
- data/vendor/bundle/cache/tzinfo-1.2.2.gem +0 -0
- data/vendor/bundle/gems/activesupport-5.0.2/CHANGELOG.md +922 -0
- data/vendor/bundle/gems/activesupport-5.0.2/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/activesupport-5.0.2/README.rdoc +39 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support.rb +99 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/all.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/array_inquirer.rb +44 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/backtrace_cleaner.rb +103 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb +49 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/builder.rb +6 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache.rb +701 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/file_store.rb +204 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/mem_cache_store.rb +207 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/memory_store.rb +167 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/null_store.rb +41 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/strategy/local_cache.rb +172 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/cache/strategy/local_cache_middleware.rb +44 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/callbacks.rb +791 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concern.rb +142 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/latch.rb +26 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/concurrency/share_lock.rb +226 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/configurable.rb +148 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array.rb +7 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/access.rb +90 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/conversions.rb +211 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/extract_options.rb +29 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/grouping.rb +107 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/inquiry.rb +17 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/array/wrap.rb +46 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/benchmark.rb +14 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/big_decimal.rb +1 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/class.rb +2 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/class/attribute.rb +128 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/class/attribute_accessors.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/class/subclasses.rb +41 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date/blank.rb +12 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date/calculations.rb +143 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date/conversions.rb +95 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date/zones.rb +6 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_and_time/calculations.rb +335 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_and_time/compatibility.rb +22 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_and_time/zones.rb +40 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time/acts_like.rb +14 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time/blank.rb +12 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time/calculations.rb +199 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time/compatibility.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/date_time/conversions.rb +105 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/digest/uuid.rb +51 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/enumerable.rb +124 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/file.rb +1 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/file/atomic.rb +68 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash.rb +9 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/compact.rb +24 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/conversions.rb +262 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/deep_merge.rb +38 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/except.rb +22 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/indifferent_access.rb +23 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/keys.rb +170 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/reverse_merge.rb +22 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/slice.rb +48 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/hash/transform_values.rb +29 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/integer.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/integer/inflections.rb +29 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/integer/multiple.rb +10 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/integer/time.rb +29 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel/concern.rb +12 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel/debugger.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel/reporting.rb +43 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/kernel/singleton_class.rb +6 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/load_error.rb +31 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/marshal.rb +22 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module.rb +12 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/anonymous.rb +28 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/attr_internal.rb +36 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/attribute_accessors.rb +212 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +141 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/concerning.rb +135 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/delegation.rb +216 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/deprecation.rb +23 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/introspection.rb +68 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/method_transplanting.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/qualified_const.rb +70 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/reachable.rb +8 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/module/remove_method.rb +35 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/name_error.rb +31 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/numeric.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/numeric/bytes.rb +64 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/numeric/conversions.rb +144 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/numeric/inquiry.rb +26 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/numeric/time.rb +74 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object.rb +14 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/acts_like.rb +10 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/blank.rb +143 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/conversions.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/deep_dup.rb +53 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/duplicable.rb +124 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/inclusion.rb +27 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/instance_variables.rb +28 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/json.rb +205 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/to_param.rb +1 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/to_query.rb +84 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/try.rb +146 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/object/with_options.rb +69 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/range.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/range/conversions.rb +31 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/range/each.rb +21 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/range/include_range.rb +23 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/range/overlaps.rb +8 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/regexp.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/securerandom.rb +23 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string.rb +13 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/access.rb +104 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/behavior.rb +6 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/conversions.rb +57 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/exclude.rb +11 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/filters.rb +102 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/indent.rb +43 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/inflections.rb +244 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/inquiry.rb +13 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/multibyte.rb +53 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/output_safety.rb +260 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb +23 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/zones.rb +14 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/struct.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/calculations.rb +290 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/compatibility.rb +5 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/conversions.rb +67 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/marshal.rb +3 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/time/zones.rb +111 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/uri.rb +24 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies.rb +754 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/autoload.rb +77 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/dependencies/interlock.rb +55 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation.rb +43 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation/behaviors.rb +90 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation/instance_delegator.rb +37 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation/method_wrappers.rb +70 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation/proxy_wrappers.rb +149 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/deprecation/reporting.rb +112 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/descendants_tracker.rb +60 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/duration.rb +182 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/duration/iso8601_parser.rb +122 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/duration/iso8601_serializer.rb +51 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/evented_file_update_checker.rb +194 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/execution_wrapper.rb +126 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/executor.rb +6 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/file_update_checker.rb +157 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gem_version.rb +15 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/gzip.rb +36 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/hash_with_indifferent_access.rb +329 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/i18n.rb +13 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/i18n_railtie.rb +115 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/inflections.rb +70 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/inflector.rb +7 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/inflector/inflections.rb +242 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/inflector/methods.rb +390 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/inflector/transliterate.rb +112 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/json.rb +2 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/json/decoding.rb +74 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/json/encoding.rb +127 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/key_generator.rb +71 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/lazy_load_hooks.rb +56 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/locale/en.yml +135 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/log_subscriber.rb +109 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/log_subscriber/test_helper.rb +104 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/logger.rb +106 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/logger_silence.rb +28 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/logger_thread_safe_level.rb +31 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/message_encryptor.rb +114 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/message_verifier.rb +134 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/multibyte.rb +21 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/multibyte/chars.rb +231 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/multibyte/unicode.rb +413 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/notifications.rb +212 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/notifications/fanout.rb +157 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/notifications/instrumenter.rb +91 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper.rb +368 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_converter.rb +182 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_currency_converter.rb +44 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb +28 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_human_size_converter.rb +62 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_percentage_converter.rb +12 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_rounded_converter.rb +92 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/option_merger.rb +25 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/ordered_hash.rb +48 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/ordered_options.rb +81 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/per_thread_registry.rb +58 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/proxy_object.rb +13 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/rails.rb +27 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/railtie.rb +51 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/reloader.rb +129 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/rescuable.rb +167 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/security_utils.rb +27 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/string_inquirer.rb +26 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/subscriber.rb +120 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/tagged_logging.rb +77 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/test_case.rb +88 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/assertions.rb +99 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/autorun.rb +9 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/constant_lookup.rb +50 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/declarative.rb +26 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/deprecation.rb +36 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/file_fixtures.rb +34 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/isolation.rb +115 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb +41 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/setup_and_teardown.rb +50 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/stream.rb +42 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/tagged_logging.rb +25 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/time_helpers.rb +134 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/time.rb +18 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/time_with_zone.rb +500 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/values/time_zone.rb +474 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/version.rb +8 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini.rb +209 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/jdom.rb +181 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/libxml.rb +79 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/libxmlsax.rb +85 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/nokogirisax.rb +87 -0
- data/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/xml_mini/rexml.rb +128 -0
- data/vendor/bundle/gems/coderay-1.1.1/README_INDEX.rdoc +123 -0
- data/vendor/bundle/gems/coderay-1.1.1/Rakefile +37 -0
- data/vendor/bundle/gems/coderay-1.1.1/bin/coderay +215 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay.rb +284 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/duo.rb +81 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders.rb +18 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/_map.rb +17 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/comment_filter.rb +25 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/count.rb +39 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/debug.rb +49 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/debug_lint.rb +63 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/div.rb +23 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/encoder.rb +190 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/filter.rb +58 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/html.rb +333 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/html/css.rb +65 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/html/numbering.rb +108 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/html/output.rb +166 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/json.rb +83 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/lines_of_code.rb +45 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/lint.rb +59 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/null.rb +18 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/page.rb +24 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/span.rb +23 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/statistic.rb +95 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/terminal.rb +195 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/text.rb +46 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/token_kind_filter.rb +111 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/xml.rb +72 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/encoders/yaml.rb +50 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/for_redcloth.rb +95 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/helpers/file_type.rb +151 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/helpers/plugin.rb +55 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/helpers/plugin_host.rb +221 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/helpers/word_list.rb +72 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners.rb +27 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/_map.rb +24 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/c.rb +189 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/clojure.rb +217 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/cpp.rb +215 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/css.rb +196 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/debug.rb +75 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/delphi.rb +144 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/diff.rb +221 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/erb.rb +81 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/go.rb +208 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/groovy.rb +268 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/haml.rb +168 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/html.rb +275 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/java.rb +174 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/java/builtin_types.rb +421 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/java_script.rb +237 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/json.rb +98 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/lua.rb +280 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/php.rb +527 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/python.rb +287 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/raydebug.rb +75 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/ruby.rb +477 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/ruby/patterns.rb +178 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/ruby/string_state.rb +79 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/sass.rb +232 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/scanner.rb +337 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/sql.rb +169 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/taskpaper.rb +36 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/text.rb +26 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/xml.rb +17 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/scanners/yaml.rb +140 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/styles.rb +15 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/styles/_map.rb +7 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/styles/alpha.rb +153 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/styles/style.rb +18 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/token_kinds.rb +85 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/tokens.rb +161 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/tokens_proxy.rb +55 -0
- data/vendor/bundle/gems/coderay-1.1.1/lib/coderay/version.rb +3 -0
- data/vendor/bundle/gems/coderay-1.1.1/test/functional/basic.rb +318 -0
- data/vendor/bundle/gems/coderay-1.1.1/test/functional/examples.rb +129 -0
- data/vendor/bundle/gems/coderay-1.1.1/test/functional/for_redcloth.rb +78 -0
- data/vendor/bundle/gems/coderay-1.1.1/test/functional/suite.rb +15 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/CHANGELOG.md +387 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/LICENSE.txt +21 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/README.md +247 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent.rb +130 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/agent.rb +587 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/array.rb +39 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/async.rb +445 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atom.rb +222 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_boolean.rb +122 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_fixnum.rb +139 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_reference.rb +51 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/count_down_latch.rb +100 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/event.rb +109 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_count_down_latch.rb +39 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_boolean.rb +60 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_count_down_latch.rb +43 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/read_write_lock.rb +253 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/reentrant_read_write_lock.rb +377 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/semaphore.rb +145 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/thread_local_var.rb +104 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/concurrent_update_error.rb +8 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/direct_update.rb +81 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby+truffle.rb +2 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/jruby.rb +16 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/mutex_atomic.rb +61 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/rbx.rb +22 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/ruby.rb +32 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/atomics.rb +53 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb +141 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/deprecation.rb +34 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/dereferenceable.rb +73 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/logging.rb +27 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/obligation.rb +220 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/observable.rb +110 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/configuration.rb +188 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/constants.rb +8 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/dataflow.rb +80 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/delay.rb +197 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/edge.rb +26 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/errors.rb +69 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/exchanger.rb +356 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/abstract_executor_service.rb +134 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/cached_thread_pool.rb +62 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/executor_service.rb +185 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/immediate_executor.rb +66 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_executor_service.rb +100 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_thread_pool_executor.rb +120 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_executor_service.rb +78 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/safe_task_executor.rb +35 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serial_executor_service.rb +34 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution.rb +107 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/simple_executor_service.rb +100 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/single_thread_executor.rb +56 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/thread_pool_executor.rb +87 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/timer_set.rb +175 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/executors.rb +20 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/future.rb +138 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/hash.rb +36 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/immutable_struct.rb +93 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/ivar.rb +208 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/lazy_register.rb +81 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/map.rb +240 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/maybe.rb +229 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/mutable_struct.rb +228 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/mvar.rb +242 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/options.rb +42 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/promise.rb +547 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/scheduled_task.rb +318 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/settable_struct.rb +128 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization.rb +31 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_object.rb +24 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_struct.rb +157 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/condition.rb +58 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_object.rb +44 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lock.rb +34 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lockable_object.rb +74 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_lockable_object.rb +71 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_object.rb +43 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/object.rb +153 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_object.rb +48 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_lockable_object.rb +9 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_object.rb +31 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/volatile.rb +34 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util.rb +16 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/adder.rb +74 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/array_hash_rbx.rb +30 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/striped64.rb +241 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/volatile.rb +75 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/timer_task.rb +331 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/tuple.rb +86 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/tvar.rb +258 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/at_exit.rb +97 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/engine.rb +56 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/monotonic_time.rb +58 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_extension_loader.rb +73 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_integer.rb +53 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/processor_counter.rb +160 -0
- data/vendor/bundle/gems/concurrent-ruby-1.0.5/lib/concurrent/version.rb +4 -0
- data/vendor/bundle/gems/diff-lcs-1.3/.rspec +1 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Contributing.md +83 -0
- data/vendor/bundle/gems/diff-lcs-1.3/History.md +220 -0
- data/vendor/bundle/gems/diff-lcs-1.3/License.md +39 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Manifest.txt +37 -0
- data/vendor/bundle/gems/diff-lcs-1.3/README.rdoc +84 -0
- data/vendor/bundle/gems/diff-lcs-1.3/Rakefile +57 -0
- data/vendor/bundle/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
- data/vendor/bundle/gems/diff-lcs-1.3/bin/htmldiff +32 -0
- data/vendor/bundle/gems/diff-lcs-1.3/bin/ldiff +6 -0
- data/vendor/bundle/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
- data/vendor/bundle/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
- data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/gems/i18n-0.8.1/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/i18n-0.8.1/README.md +84 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-3.2.x +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-4.0.x +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-4.1.x +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-4.2.x +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-5.0.x +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/gemfiles/Gemfile.rails-master +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n.rb +343 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend.rb +18 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/base.rb +230 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/cache.rb +114 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/cascade.rb +54 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/chain.rb +97 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/fallbacks.rb +84 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/flatten.rb +113 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/gettext.rb +81 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/interpolation_compiler.rb +121 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/key_value.rb +100 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/memoize.rb +46 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/metadata.rb +69 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/pluralization.rb +53 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/simple.rb +87 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/backend/transliterator.rb +106 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/config.rb +142 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/core_ext/hash.rb +29 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/core_ext/kernel/suppress_warnings.rb +8 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/core_ext/string/interpolate.rb +9 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/exceptions.rb +104 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/gettext.rb +25 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/gettext/helpers.rb +73 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/gettext/po_parser.rb +329 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/interpolate/ruby.rb +37 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale.rb +6 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale/fallbacks.rb +96 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale/tag.rb +28 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale/tag/parents.rb +22 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/locale/tag/simple.rb +39 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests.rb +12 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/basics.rb +60 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/defaults.rb +48 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/interpolation.rb +153 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/link.rb +56 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/localization.rb +19 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/localization/date.rb +95 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/localization/date_time.rb +82 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/localization/procs.rb +116 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/localization/time.rb +81 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/lookup.rb +81 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/pluralization.rb +35 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/tests/procs.rb +55 -0
- data/vendor/bundle/gems/i18n-0.8.1/lib/i18n/version.rb +3 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/all_features_test.rb +58 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/cascade_test.rb +28 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/chain_test.rb +24 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/fallbacks_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/key_value_test.rb +24 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/memoize_test.rb +56 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/override_test.rb +42 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/pluralization_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/api/simple_test.rb +28 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/cache_test.rb +108 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/cascade_test.rb +86 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/chain_test.rb +91 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/exceptions_test.rb +36 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/fallbacks_test.rb +206 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/interpolation_compiler_test.rb +118 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/key_value_test.rb +43 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/memoize_test.rb +47 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/metadata_test.rb +48 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/pluralization_test.rb +45 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/simple_test.rb +84 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/backend/transliterator_test.rb +84 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/core_ext/hash_test.rb +42 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/gettext/api_test.rb +214 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/gettext/backend_test.rb +92 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/i18n/exceptions_test.rb +114 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/i18n/interpolate_test.rb +91 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/i18n/load_path_test.rb +34 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/i18n_test.rb +437 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/locale/fallbacks_test.rb +133 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/locale/tag/rfc4646_test.rb +143 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/locale/tag/simple_test.rb +32 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/run_all.rb +20 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/de.po +82 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/en.rb +3 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/en.yml +3 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/invalid/empty.yml +0 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/invalid/syntax.yml +4 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_data/locales/plurals.rb +113 -0
- data/vendor/bundle/gems/i18n-0.8.1/test/test_helper.rb +55 -0
- data/vendor/bundle/gems/method_source-0.8.2/.gemtest +0 -0
- data/vendor/bundle/gems/method_source-0.8.2/.travis.yml +13 -0
- data/vendor/bundle/gems/method_source-0.8.2/.yardopts +1 -0
- data/vendor/bundle/gems/method_source-0.8.2/Gemfile +2 -0
- data/vendor/bundle/gems/method_source-0.8.2/LICENSE +25 -0
- data/vendor/bundle/gems/method_source-0.8.2/README.markdown +91 -0
- data/vendor/bundle/gems/method_source-0.8.2/Rakefile +79 -0
- data/vendor/bundle/gems/method_source-0.8.2/lib/method_source.rb +141 -0
- data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/code_helpers.rb +154 -0
- data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/source_location.rb +138 -0
- data/vendor/bundle/gems/method_source-0.8.2/lib/method_source/version.rb +3 -0
- data/vendor/bundle/gems/method_source-0.8.2/method_source.gemspec +33 -0
- data/vendor/bundle/gems/method_source-0.8.2/test/test.rb +138 -0
- data/vendor/bundle/gems/method_source-0.8.2/test/test_code_helpers.rb +41 -0
- data/vendor/bundle/gems/method_source-0.8.2/test/test_helper.rb +98 -0
- data/vendor/bundle/gems/minitest-5.10.1/.autotest +34 -0
- data/vendor/bundle/gems/minitest-5.10.1/History.rdoc +1207 -0
- data/vendor/bundle/gems/minitest-5.10.1/Manifest.txt +26 -0
- data/vendor/bundle/gems/minitest-5.10.1/README.rdoc +660 -0
- data/vendor/bundle/gems/minitest-5.10.1/Rakefile +86 -0
- data/vendor/bundle/gems/minitest-5.10.1/design_rationale.rb +52 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/hoe/minitest.rb +32 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest.rb +842 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/assertions.rb +688 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/autorun.rb +13 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/benchmark.rb +424 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/expectations.rb +284 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/hell.rb +17 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/mock.rb +232 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/parallel.rb +69 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/pride.rb +4 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/pride_plugin.rb +142 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/spec.rb +331 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/test.rb +282 -0
- data/vendor/bundle/gems/minitest-5.10.1/lib/minitest/unit.rb +45 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/metametameta.rb +101 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/test_minitest_benchmark.rb +137 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/test_minitest_mock.rb +512 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/test_minitest_reporter.rb +281 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/test_minitest_spec.rb +970 -0
- data/vendor/bundle/gems/minitest-5.10.1/test/minitest/test_minitest_test.rb +2058 -0
- data/vendor/bundle/gems/pry-0.10.4/CHANGELOG.md +718 -0
- data/vendor/bundle/gems/pry-0.10.4/LICENSE +25 -0
- data/vendor/bundle/gems/pry-0.10.4/README.md +406 -0
- data/vendor/bundle/gems/pry-0.10.4/bin/pry +16 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry.rb +161 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/cli.rb +220 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/code.rb +348 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/code/code_file.rb +103 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/code/code_range.rb +71 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/code/loc.rb +92 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/code_object.rb +172 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/color_printer.rb +55 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/command.rb +692 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/command_set.rb +443 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands.rb +6 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/amend_line.rb +99 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/bang.rb +20 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/bang_pry.rb +17 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat.rb +62 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/abstract_formatter.rb +27 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/exception_formatter.rb +77 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb +67 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/input_expression_formatter.rb +43 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cd.rb +41 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/change_inspector.rb +27 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/change_prompt.rb +26 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/code_collector.rb +165 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/disable_pry.rb +27 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/disabled_commands.rb +2 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/easter_eggs.rb +112 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/edit.rb +195 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/edit/exception_patcher.rb +25 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/edit/file_and_line_locator.rb +36 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/exit.rb +42 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/exit_all.rb +29 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/exit_program.rb +23 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/find_method.rb +193 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/fix_indent.rb +19 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/gem_cd.rb +26 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/gem_install.rb +32 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/gem_list.rb +33 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/gem_open.rb +29 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/gist.rb +101 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/help.rb +164 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/hist.rb +180 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/import_set.rb +22 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/install_command.rb +53 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/jump_to.rb +29 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/list_inspectors.rb +35 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/list_prompts.rb +35 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls.rb +114 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/constants.rb +47 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/formatter.rb +49 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/globals.rb +48 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/grep.rb +21 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/instance_vars.rb +39 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/interrogatable.rb +18 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/jruby_hacks.rb +49 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/local_names.rb +35 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/local_vars.rb +39 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/ls_entity.rb +70 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/methods.rb +57 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/methods_helper.rb +46 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ls/self_methods.rb +32 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/nesting.rb +25 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/play.rb +103 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/pry_backtrace.rb +25 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/pry_version.rb +17 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/raise_up.rb +32 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/reload_code.rb +62 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/reset.rb +18 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/ri.rb +60 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/save_file.rb +61 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/shell_command.rb +48 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/shell_mode.rb +25 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/show_doc.rb +83 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/show_info.rb +201 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/show_input.rb +17 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/show_source.rb +50 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/simple_prompt.rb +22 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/stat.rb +40 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/switch_to.rb +23 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/toggle_color.rb +24 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/watch_expression.rb +105 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/watch_expression/expression.rb +38 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/whereami.rb +196 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/wtf.rb +57 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/config.rb +24 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/config/behavior.rb +139 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/config/convenience.rb +25 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/config/default.rb +161 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/core_extensions.rb +131 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/editor.rb +135 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/exceptions.rb +78 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers.rb +5 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/base_helpers.rb +113 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/command_helpers.rb +156 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/documentation_helpers.rb +75 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/options_helpers.rb +27 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/table.rb +109 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/helpers/text.rb +107 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/history.rb +127 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/history_array.rb +121 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/hooks.rb +230 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/indent.rb +406 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/input_completer.rb +242 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/input_lock.rb +132 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/inspector.rb +27 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/last_exception.rb +61 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/method.rb +546 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/method/disowned.rb +53 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/method/patcher.rb +125 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/method/weird_method_locator.rb +188 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/module_candidate.rb +137 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/object_path.rb +82 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/output.rb +50 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/pager.rb +239 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/plugins.rb +103 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/prompt.rb +26 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/pry_class.rb +375 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/pry_instance.rb +664 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/rbx_path.rb +22 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/repl.rb +202 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/repl_file_loader.rb +74 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/rubygem.rb +82 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/terminal.rb +79 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/test/helper.rb +170 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/version.rb +3 -0
- data/vendor/bundle/gems/pry-0.10.4/lib/pry/wrapped_module.rb +378 -0
- data/vendor/bundle/gems/rake-10.5.0/.autotest +7 -0
- data/vendor/bundle/gems/rake-10.5.0/.rubocop.yml +27 -0
- data/vendor/bundle/gems/rake-10.5.0/.togglerc +7 -0
- data/vendor/bundle/gems/rake-10.5.0/CONTRIBUTING.rdoc +38 -0
- data/vendor/bundle/gems/rake-10.5.0/History.rdoc +659 -0
- data/vendor/bundle/gems/rake-10.5.0/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/rake-10.5.0/Manifest.txt +166 -0
- data/vendor/bundle/gems/rake-10.5.0/README.rdoc +139 -0
- data/vendor/bundle/gems/rake-10.5.0/Rakefile +81 -0
- data/vendor/bundle/gems/rake-10.5.0/bin/rake +33 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/example/a.c +6 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/example/b.c +6 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/example/main.c +11 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/glossary.rdoc +42 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/jamis.rb +591 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/rake.1 +141 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/rakefile.rdoc +624 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/rational.rdoc +151 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.14.rdoc +23 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.4.15.rdoc +35 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.0.rdoc +53 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.3.rdoc +78 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.5.4.rdoc +46 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.6.0.rdoc +141 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.0.rdoc +119 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.1.rdoc +59 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.2.rdoc +121 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.7.3.rdoc +47 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.0.rdoc +114 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.2.rdoc +165 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.3.rdoc +112 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.4.rdoc +147 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.5.rdoc +53 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.6.rdoc +37 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.8.7.rdoc +55 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.0.rdoc +112 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.1.rdoc +52 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.2.rdoc +49 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.3.rdoc +102 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.4.rdoc +60 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.5.rdoc +55 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-0.9.6.rdoc +64 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.0.rdoc +178 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.1.rdoc +58 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.2.rdoc +53 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.0.3.rdoc +191 -0
- data/vendor/bundle/gems/rake-10.5.0/doc/release_notes/rake-10.1.0.rdoc +61 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake.rb +79 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/alt_system.rb +110 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/application.rb +790 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/backtrace.rb +23 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/clean.rb +76 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/cloneable.rb +16 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/.document +1 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/compositepublisher.rb +21 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/ftptools.rb +137 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/publisher.rb +81 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sshpublisher.rb +61 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/contrib/sys.rb +4 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/cpu_counter.rb +125 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/default_loader.rb +14 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/dsl_definition.rb +201 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/early_time.rb +21 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/core.rb +25 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/module.rb +2 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/pathname.rb +25 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/string.rb +175 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ext/time.rb +18 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_creation_task.rb +24 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_list.rb +428 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_task.rb +46 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils.rb +128 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/file_utils_ext.rb +144 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/gempackagetask.rb +4 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_chain.rb +56 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/invocation_exception_mixin.rb +16 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/late_time.rb +17 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/linked_list.rb +103 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/loaders/makefile.rb +53 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/multi_task.rb +13 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/packagetask.rb +199 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/pathmap.rb +3 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/phony.rb +15 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/private_reader.rb +20 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/promise.rb +99 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/pseudo_status.rb +29 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_module.rb +38 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/rake_test_loader.rb +22 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/rdoctask.rb +4 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/ruby182_test_unit_fix.rb +29 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/runtest.rb +27 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/scope.rb +42 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/task.rb +383 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_argument_error.rb +7 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_arguments.rb +98 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/task_manager.rb +307 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/tasklib.rb +24 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/testtask.rb +213 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_history_display.rb +48 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/thread_pool.rb +164 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/trace_output.rb +22 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/version.rb +7 -0
- data/vendor/bundle/gems/rake-10.5.0/lib/rake/win32.rb +56 -0
- data/vendor/bundle/gems/rake-10.5.0/rakelib/publish.rake +20 -0
- data/vendor/bundle/gems/rake-10.5.0/rakelib/test_times.rake +25 -0
- data/vendor/bundle/gems/rake-10.5.0/test/file_creation.rb +34 -0
- data/vendor/bundle/gems/rake-10.5.0/test/helper.rb +129 -0
- data/vendor/bundle/gems/rake-10.5.0/test/support/rakefile_definitions.rb +478 -0
- data/vendor/bundle/gems/rake-10.5.0/test/support/ruby_runner.rb +34 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_private_reader.rb +42 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake.rb +40 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application.rb +643 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_application_options.rb +468 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_backtrace.rb +119 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_clean.rb +61 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_cpu_counter.rb +68 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_definitions.rb +84 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_directory_task.rb +76 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_dsl.rb +40 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_early_time.rb +31 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_extension.rb +59 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_creation_task.rb +56 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list.rb +670 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_list_path_map.rb +8 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_task.rb +197 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_file_utils.rb +314 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_ftp_file.rb +74 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_functional.rb +482 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_invocation_chain.rb +64 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_late_time.rb +18 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_linked_list.rb +84 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_makefile_loader.rb +46 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_multi_task.rb +64 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_name_space.rb +57 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_package_task.rb +79 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map.rb +168 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_explode.rb +34 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_path_map_partial.rb +18 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pathname_extensions.rb +15 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_pseudo_status.rb +21 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rake_test_loader.rb +20 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_reduce_compat.rb +26 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_require.rb +40 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_rules.rb +388 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_scope.rb +44 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task.rb +393 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_argument_parsing.rb +119 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_arguments.rb +127 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_lib.rb +9 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager.rb +178 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_manager_argument_resolution.rb +19 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_task_with_arguments.rb +172 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_test_task.rb +146 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_thread_pool.rb +145 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_top_level_functions.rb +71 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_rake_win32.rb +72 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_thread_history_display.rb +101 -0
- data/vendor/bundle/gems/rake-10.5.0/test/test_trace_output.rb +52 -0
- data/vendor/bundle/gems/rspec-3.5.0/LICENSE.md +27 -0
- data/vendor/bundle/gems/rspec-3.5.0/README.md +39 -0
- data/vendor/bundle/gems/rspec-3.5.0/lib/rspec.rb +3 -0
- data/vendor/bundle/gems/rspec-3.5.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/.document +5 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/.yardopts +8 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/Changelog.md +2102 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/LICENSE.md +26 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/README.md +384 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/exe/rspec +4 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core.rb +185 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/bisect/coordinator.rb +66 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/bisect/example_minimizer.rb +169 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/bisect/runner.rb +169 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/bisect/server.rb +65 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/configuration.rb +2100 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/configuration_options.rb +194 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/drb.rb +111 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/example.rb +649 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/example_group.rb +879 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters.rb +255 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/bisect_formatter.rb +69 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/bisect_progress_formatter.rb +144 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/documentation_formatter.rb +69 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/exception_presenter.rb +491 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_formatter.rb +151 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/html_snippet_extractor.rb +116 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/json_formatter.rb +96 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/protocol.rb +181 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/formatters/snippet_extractor.rb +136 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/hooks.rb +624 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/invocations.rb +67 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/memoized_helpers.rb +532 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/metadata.rb +499 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/metadata_filter.rb +243 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/notifications.rb +498 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/option_parser.rb +289 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/profiler.rb +32 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer/.rspec +2 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/project_initializer/spec/spec_helper.rb +103 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/rake_task.rb +168 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/reporter.rb +248 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/runner.rb +188 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/set.rb +49 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/shared_example_group.rb +247 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/source.rb +86 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/source/location.rb +13 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/source/node.rb +93 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/source/syntax_highlighter.rb +71 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/source/token.rb +87 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/gems/rspec-core-3.5.4/lib/rspec/core/world.rb +256 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/.document +5 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/.yardopts +6 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/Changelog.md +1034 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/LICENSE.md +25 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/README.md +303 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations.rb +81 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/configuration.rb +201 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/fail_with.rb +31 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers.rb +1038 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/all.rb +85 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be.rb +288 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/change.rb +354 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/compound.rb +272 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/contain_exactly.rb +286 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/include.rb +143 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/respond_to.rb +165 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/satisfy.rb +37 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/built_in/yield.rb +419 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/composable.rb +185 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/dsl.rb +466 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/generated_descriptions.rb +42 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/gems/rspec-expectations-3.5.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/.document +5 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/.yardopts +6 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/Changelog.md +1043 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/LICENSE.md +25 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/README.md +445 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks.rb +130 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/recorder.rb +289 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/stub_chain.rb +47 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +28 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/configuration.rb +205 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/example_methods.rb +422 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/instance_method_stasher.rb +135 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/have_received.rb +130 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/message_expectation.rb +740 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/mutate_const.rb +335 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/proxy.rb +489 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/test_double.rb +170 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/verifying_proxy.rb +213 -0
- data/vendor/bundle/gems/rspec-mocks-3.5.0/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/Changelog.md +192 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/LICENSE.md +23 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/README.md +40 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support.rb +139 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/encoded_string.rb +165 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/method_signature_verifier.rb +392 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/object_formatter.rb +249 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/reentrant_mutex.rb +53 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/ruby_features.rb +149 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec.rb +81 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/in_sub_process.rb +52 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/shell_out.rb +82 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/gems/rspec-support-3.5.0/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/gems/slop-3.6.0/.gitignore +7 -0
- data/vendor/bundle/gems/slop-3.6.0/.travis.yml +9 -0
- data/vendor/bundle/gems/slop-3.6.0/CHANGES.md +309 -0
- data/vendor/bundle/gems/slop-3.6.0/Gemfile +3 -0
- data/vendor/bundle/gems/slop-3.6.0/LICENSE +20 -0
- data/vendor/bundle/gems/slop-3.6.0/README.md +202 -0
- data/vendor/bundle/gems/slop-3.6.0/Rakefile +29 -0
- data/vendor/bundle/gems/slop-3.6.0/lib/slop.rb +687 -0
- data/vendor/bundle/gems/slop-3.6.0/lib/slop/commands.rb +196 -0
- data/vendor/bundle/gems/slop-3.6.0/lib/slop/option.rb +214 -0
- data/vendor/bundle/gems/slop-3.6.0/slop.gemspec +17 -0
- data/vendor/bundle/gems/slop-3.6.0/test/commands_test.rb +26 -0
- data/vendor/bundle/gems/slop-3.6.0/test/helper.rb +12 -0
- data/vendor/bundle/gems/slop-3.6.0/test/option_test.rb +145 -0
- data/vendor/bundle/gems/slop-3.6.0/test/slop_test.rb +518 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/.rspec +2 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/.travis.yml +46 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/.yardopts +13 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/Gemfile +20 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/LICENSE +144 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/README.md +60 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/Rakefile +62 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/.gitignore +0 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/.gitignore +0 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/.gitignore +0 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
- data/vendor/bundle/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/.yardopts +6 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/CHANGES.md +649 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/LICENSE +19 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/README.md +151 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/Rakefile +104 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo.rb +40 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/country.rb +196 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/country_index_definition.rb +31 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/country_info.rb +42 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/country_timezone.rb +123 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/data_source.rb +190 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/data_timezone.rb +58 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/data_timezone_info.rb +55 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/info_timezone.rb +30 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/linked_timezone.rb +63 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/linked_timezone_info.rb +26 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/offset_rationals.rb +77 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/ruby_core_support.rb +146 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/ruby_country_info.rb +70 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/ruby_data_source.rb +136 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/time_or_datetime.rb +333 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone.rb +637 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_definition.rb +36 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_index_definition.rb +54 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_info.rb +30 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_offset.rb +74 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_period.rb +204 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_proxy.rb +70 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_transition.rb +120 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/timezone_transition_definition.rb +101 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/transition_data_timezone_info.rb +274 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb +35 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_data_source.rb +487 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_timezone_info.rb +245 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_country.rb +236 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_country_index_definition.rb +69 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_country_info.rb +16 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_country_timezone.rb +161 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_data_source.rb +218 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_data_timezone.rb +99 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_data_timezone_info.rb +18 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_info_timezone.rb +34 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_linked_timezone.rb +155 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_linked_timezone_info.rb +23 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_offset_rationals.rb +23 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_ruby_core_support.rb +168 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_ruby_country_info.rb +80 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_ruby_data_source.rb +143 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_time_or_datetime.rb +639 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone.rb +1334 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_definition.rb +113 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_index_definition.rb +73 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_info.rb +11 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_london.rb +143 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_melbourne.rb +142 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_new_york.rb +142 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_offset.rb +126 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_period.rb +548 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_proxy.rb +113 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_transition.rb +352 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_transition_definition.rb +284 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_timezone_utc.rb +27 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_transition_data_timezone_info.rb +423 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_zoneinfo_country_info.rb +64 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_zoneinfo_data_source.rb +1122 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tc_zoneinfo_timezone_info.rb +814 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/test_utils.rb +132 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/ts_all.rb +7 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/ts_all_ruby.rb +5 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/ts_all_zoneinfo.rb +7 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data.rb +8 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/tzinfo-data/tzinfo/data/version.rb +14 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/America/New_York +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Australia/Melbourne +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/EST +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Etc/UTC +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Europe/Amsterdam +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Europe/Andorra +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Europe/London +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Europe/Paris +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Europe/Prague +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/Factory +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/iso3166.tab +275 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/posix/Europe/London +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/posixrules +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/right/Europe/London +0 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/zone.tab +439 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/test/zoneinfo/zone1970.tab +369 -0
- data/vendor/bundle/gems/tzinfo-1.2.2/tzinfo.gemspec +21 -0
- data/vendor/bundle/specifications/activesupport-5.0.2.gemspec +43 -0
- data/vendor/bundle/specifications/coderay-1.1.1.gemspec +26 -0
- data/vendor/bundle/specifications/concurrent-ruby-1.0.5.gemspec +23 -0
- data/vendor/bundle/specifications/diff-lcs-1.3.gemspec +61 -0
- data/vendor/bundle/specifications/i18n-0.8.1.gemspec +22 -0
- data/vendor/bundle/specifications/method_source-0.8.2.gemspec +34 -0
- data/vendor/bundle/specifications/minitest-5.10.1.gemspec +39 -0
- data/vendor/bundle/specifications/pry-0.10.4.gemspec +43 -0
- data/vendor/bundle/specifications/rake-10.5.0.gemspec +43 -0
- data/vendor/bundle/specifications/rspec-3.5.0.gemspec +42 -0
- data/vendor/bundle/specifications/rspec-core-3.5.4.gemspec +62 -0
- data/vendor/bundle/specifications/rspec-expectations-3.5.0.gemspec +50 -0
- data/vendor/bundle/specifications/rspec-mocks-3.5.0.gemspec +50 -0
- data/vendor/bundle/specifications/rspec-support-3.5.0.gemspec +41 -0
- data/vendor/bundle/specifications/slop-3.6.0.gemspec +36 -0
- data/vendor/bundle/specifications/thread_safe-0.3.6.gemspec +38 -0
- data/vendor/bundle/specifications/tzinfo-1.2.2.gemspec +37 -0
- metadata +1467 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
require 'autotest/restart'
|
4
|
+
require 'autotest/rcov' if ENV['RCOV']
|
5
|
+
|
6
|
+
Autotest.add_hook :initialize do |at|
|
7
|
+
at.testlib = 'minitest/autorun'
|
8
|
+
|
9
|
+
bench_tests = %w(TestMinitestBenchmark)
|
10
|
+
mock_tests = %w(TestMinitestMock TestMinitestStub)
|
11
|
+
spec_tests = %w(TestMinitestReporter TestMetaStatic TestMeta
|
12
|
+
TestSpecInTestCase)
|
13
|
+
unit_tests = %w(TestMinitestGuard TestMinitestRunnable
|
14
|
+
TestMinitestRunner TestMinitestTest TestMinitestUnit
|
15
|
+
TestMinitestUnitInherited TestMinitestUnitOrder
|
16
|
+
TestMinitestUnitRecording TestMinitestUnitTestCase)
|
17
|
+
|
18
|
+
{
|
19
|
+
bench_tests => "test/minitest/test_minitest_benchmark.rb",
|
20
|
+
mock_tests => "test/minitest/test_minitest_mock.rb",
|
21
|
+
spec_tests => "test/minitest/test_minitest_reporter.rb",
|
22
|
+
unit_tests => "test/minitest/test_minitest_unit.rb",
|
23
|
+
}.each do |klasses, file|
|
24
|
+
klasses.each do |klass|
|
25
|
+
at.extra_class_map[klass] = file
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
at.add_exception 'coverage.info'
|
30
|
+
at.add_exception 'coverage'
|
31
|
+
end
|
32
|
+
|
33
|
+
# require 'autotest/rcov'
|
34
|
+
# Autotest::RCov.command = 'rcov_info'
|
@@ -0,0 +1,1207 @@
|
|
1
|
+
=== 5.10.1 / 2016-12-01
|
2
|
+
|
3
|
+
* 1 bug fix:
|
4
|
+
|
5
|
+
* Added a hack/kludge to deal with missing #prerecord on reporters that aren't properly subclassing AbstractReporter (I'm looking at you minitest-reporters)
|
6
|
+
|
7
|
+
=== 5.10.0 / 2016-11-30
|
8
|
+
|
9
|
+
* 2 minor enhancements:
|
10
|
+
|
11
|
+
* Added AbstractReporter#prerecord and extended ProgressReporter and CompositeReporter to use it.
|
12
|
+
* Minor optimization: remove runnables with no runnable methods before run.
|
13
|
+
|
14
|
+
* 1 bug fix:
|
15
|
+
|
16
|
+
* 2.4: removed deprecation warnings when referring to Fixnum.
|
17
|
+
|
18
|
+
=== 5.9.1 / 2016-09-25
|
19
|
+
|
20
|
+
* 2 bug fixes:
|
21
|
+
|
22
|
+
* Re-release to refresh gem certificate signing. ugh.
|
23
|
+
* Fixed hoe/minitest to not augment load path if we're actually testing minitest.
|
24
|
+
|
25
|
+
=== 5.9.0 / 2016-05-16
|
26
|
+
|
27
|
+
* 8 minor enhancements:
|
28
|
+
|
29
|
+
* Added Minitest.info_signal accessors to customize signal for test run info. (nate)
|
30
|
+
* Added assert_mock to make it more clear that you're testing w/ them.
|
31
|
+
* Added negative filter by test name. (utilum)
|
32
|
+
* Added warning to README that 1.8 and 1.9 support will be dropped in minitest 6.
|
33
|
+
* Automatically activate minitest/hell if $MT_HELL is defined.
|
34
|
+
* Improved default error messages for assert and refute. (bhenderson)
|
35
|
+
* minitest/hell now tries to require minitest/proveit
|
36
|
+
* mu_pp for strings prints out non-standard encodings to improve assert_equal diffs.
|
37
|
+
|
38
|
+
* 1 bug fix:
|
39
|
+
|
40
|
+
* Removed Interrupt from PASSTHROUGH_EXCEPTIONS (already handled). (waldyr)
|
41
|
+
|
42
|
+
=== 5.8.5 / 2016-09-25
|
43
|
+
|
44
|
+
* 2 bug fixes:
|
45
|
+
|
46
|
+
* Re-release to refresh gem certificate signing. ugh.
|
47
|
+
* Fixed hoe/minitest to not augment load path if we're actually testing minitest.
|
48
|
+
|
49
|
+
=== 5.8.4 / 2016-01-21
|
50
|
+
|
51
|
+
* 1 bug fix:
|
52
|
+
|
53
|
+
* Allow Minitest::Assertion to pass through assert_raises so inner failures are dealt with first.
|
54
|
+
|
55
|
+
=== 5.8.3 / 2015-11-17
|
56
|
+
|
57
|
+
* 1 minor enhancement:
|
58
|
+
|
59
|
+
* Added extra note about mocks and threads to readme. (zamith)
|
60
|
+
|
61
|
+
* 1 bug fix:
|
62
|
+
|
63
|
+
* Fixed bug in Mock#verify. (pithub/zamith)
|
64
|
+
|
65
|
+
=== 5.8.2 / 2015-10-26
|
66
|
+
|
67
|
+
* 1 bug fix:
|
68
|
+
|
69
|
+
* Fixed using parallelize_me! and capture_io (or any locking io). (arlt/tenderlove)
|
70
|
+
|
71
|
+
=== 5.8.1 / 2015-09-23
|
72
|
+
|
73
|
+
* 1 minor enhancement:
|
74
|
+
|
75
|
+
* Refactor assert_raises to be cleaner and to pass SystemExit and SignalException. (bhenderson)
|
76
|
+
|
77
|
+
=== 5.8.0 / 2015-08-06
|
78
|
+
|
79
|
+
* 2 minor enhancements:
|
80
|
+
|
81
|
+
* Add optional delegation mechanism to extend object with a mock. (zamith)
|
82
|
+
* Return early if there are no filtered methods. (jeremyevans)
|
83
|
+
|
84
|
+
* 1 bug fix:
|
85
|
+
|
86
|
+
* Don't extend io with pride if io is not a tty. (toy)
|
87
|
+
|
88
|
+
=== 5.7.0 / 2015-05-27
|
89
|
+
|
90
|
+
* 1 major enhancement:
|
91
|
+
|
92
|
+
* assert_raises now matches subclasses of the expected exception types. (jeremyevans)
|
93
|
+
|
94
|
+
* 3 minor enhancements:
|
95
|
+
|
96
|
+
* Added :block type for minitest/spec's #infect_an_assertion. (jeremyevans)
|
97
|
+
* Inline verification error messages in minitest/mock for GC performance. (zamith)
|
98
|
+
* assert_raises defaults to RuntimeError if not specified. (jeremyevans)
|
99
|
+
|
100
|
+
* 4 bug fixes:
|
101
|
+
|
102
|
+
* Added 'class' to minitest/mock's overridden_methods list. (zamith)
|
103
|
+
* Added file/line to infect_an_assertion's class_eval call. (jeremyevans)
|
104
|
+
* Cleared UnexpectedError's mesg w/ generic string.
|
105
|
+
* Fixed non-proc-oriented expectations when used on proc target. (jeremyevans)
|
106
|
+
|
107
|
+
=== 5.6.1 / 2015-04-27
|
108
|
+
|
109
|
+
* 2 bug fixes:
|
110
|
+
|
111
|
+
* Added Minitest.clock_time and switched all Time.now to it. (tenderlove)
|
112
|
+
* Moved Minitest::Expectations#_ into Minitest::Spec::DSL.
|
113
|
+
|
114
|
+
=== 5.6.0 / 2015-04-13
|
115
|
+
|
116
|
+
* 4 major enhancements:
|
117
|
+
|
118
|
+
* Added Minitest::Expectation value monad.
|
119
|
+
* Added Minitest::Expectations#_ that returns an Expectation. Aliased to value.
|
120
|
+
* All expectations are added to Minitest::Expectation.
|
121
|
+
* At some point, the methods on Object will be deprecated and then removed.
|
122
|
+
|
123
|
+
* 4 minor enhancements:
|
124
|
+
|
125
|
+
* Added a note about bundle exec pitfall in ruby 2.2+. (searls)
|
126
|
+
* Lazily start the parallel executor. (tenderlove)
|
127
|
+
* Make mocks more debugger-friendly (edward)
|
128
|
+
* Print out the current test run on interrupt. (riffraff)
|
129
|
+
|
130
|
+
* 3 bug fixes:
|
131
|
+
|
132
|
+
* Fix failing test under Windows. (kimhmadsen)
|
133
|
+
* Record mocked calls before they happen so mocks can raise exceptions easier (tho I'm not a fan). (corecode)
|
134
|
+
* Tried to clarify mocks vs stubs terminology better. (kkirsche)
|
135
|
+
|
136
|
+
=== 5.5.1 / 2015-01-09
|
137
|
+
|
138
|
+
* 1 bug fix:
|
139
|
+
|
140
|
+
* Fixed doco problems. (zzak)
|
141
|
+
|
142
|
+
=== 5.5.0 / 2014-12-12 // mri 2.2.0 (as a real gem)
|
143
|
+
|
144
|
+
* 1 minor enhancement:
|
145
|
+
|
146
|
+
* Allow seed to be given via ENV for rake test loader sadness: eg rake SEED=42.
|
147
|
+
|
148
|
+
=== 5.4.3 / 2014-11-11
|
149
|
+
|
150
|
+
* 2 bug fixes:
|
151
|
+
|
152
|
+
* Clarified requirements for ruby are now 1.8.7 or better.
|
153
|
+
* Force encode error output in case mal-encoded exception is raised. (jasonrclark)
|
154
|
+
|
155
|
+
=== 5.4.2 / 2014-09-26
|
156
|
+
|
157
|
+
* 2 minor enhancements:
|
158
|
+
|
159
|
+
* Extract teardown method list.
|
160
|
+
* Thanks to minitest-gcstats got a 5-10% speedup via reduced GC!
|
161
|
+
|
162
|
+
=== 5.4.1 / 2014-08-28
|
163
|
+
|
164
|
+
* 1 bug fix:
|
165
|
+
|
166
|
+
* Fixed specs hidden by nesting/ordering bug (blowmage/apotonick)
|
167
|
+
|
168
|
+
=== 5.4.0 / 2014-07-07
|
169
|
+
|
170
|
+
* 2 minor enhancements:
|
171
|
+
|
172
|
+
* Kernel#describe extended to splat additional_desc.
|
173
|
+
* Spec#spec_type extended to take a splat of additional items, passed to matcher procs.
|
174
|
+
|
175
|
+
* 1 bug fix:
|
176
|
+
|
177
|
+
* minitest/spec should require minitest/test, not minitest/unit. (doudou)
|
178
|
+
|
179
|
+
=== 5.3.5 / 2014-06-17
|
180
|
+
|
181
|
+
* 1 minor enhancement:
|
182
|
+
|
183
|
+
* Spit and polish (mostly spit).
|
184
|
+
|
185
|
+
=== 5.3.4 / 2014-05-15
|
186
|
+
|
187
|
+
* 1 minor enhancement:
|
188
|
+
|
189
|
+
* Test classes are randomized before running. (judofyr)
|
190
|
+
|
191
|
+
=== 5.3.3 / 2014-04-14
|
192
|
+
|
193
|
+
* 1 bug fix:
|
194
|
+
|
195
|
+
* Fixed using expectations w/ DSL in Test class w/o describe. (blowmage+others)
|
196
|
+
|
197
|
+
=== 5.3.2 / 2014-04-02
|
198
|
+
|
199
|
+
* 1 bug fix:
|
200
|
+
|
201
|
+
* Fixed doco on Assertions.assertions. (xaviershay)
|
202
|
+
|
203
|
+
=== 5.3.1 / 2014-03-14
|
204
|
+
|
205
|
+
* 1 minor enhancement:
|
206
|
+
|
207
|
+
* Modified verbage on bad 'let' names to be more helpful. (Archytaus)
|
208
|
+
|
209
|
+
* 1 bug fix:
|
210
|
+
|
211
|
+
* Fixed 2 cases still using MiniTest. (mikesea)
|
212
|
+
|
213
|
+
=== 5.3.0 / 2014-02-25
|
214
|
+
|
215
|
+
* 1 minor enhancement:
|
216
|
+
|
217
|
+
* Mocked methods can take a block to verify state. Seattle.rb 12 bday present from ernie! Thanks!!
|
218
|
+
|
219
|
+
=== 5.2.3 / 2014-02-10
|
220
|
+
|
221
|
+
* 1 bug fix:
|
222
|
+
|
223
|
+
* Fixed Spec#let check to allow overriding of other lets. (mvz)
|
224
|
+
|
225
|
+
=== 5.2.2 / 2014-01-22
|
226
|
+
|
227
|
+
* 1 minor enhancement:
|
228
|
+
|
229
|
+
* Spec#let raises ArgumentError if you override _any_ instance method (except subject). (rynr)
|
230
|
+
|
231
|
+
* 1 bug fix:
|
232
|
+
|
233
|
+
* Fixed up benchmark spec doco and added a test to demonstrate. (bhenderson)
|
234
|
+
|
235
|
+
=== 5.2.1 / 2014-01-07
|
236
|
+
|
237
|
+
* 1 bug fix:
|
238
|
+
|
239
|
+
* Properly deal with horrible mix of runtime load errors + other at_exit handlers. (dougo/chqr)
|
240
|
+
|
241
|
+
=== 5.2.0 / 2013-12-13
|
242
|
+
|
243
|
+
* 1 minor enhancement:
|
244
|
+
|
245
|
+
* Change expectations to allow calling most on procs (but not calling the proc). (bhenderson+others)
|
246
|
+
|
247
|
+
=== 5.1.0 / 2013-12-05
|
248
|
+
|
249
|
+
* 1 minor enhancement:
|
250
|
+
|
251
|
+
* Use a Queue for scheduling parallel tests. (tenderlove)
|
252
|
+
|
253
|
+
* 1 bug fix:
|
254
|
+
|
255
|
+
* Fixed misspelling in doco. (amatsuda)
|
256
|
+
|
257
|
+
=== 5.0.8 / 2013-09-20
|
258
|
+
|
259
|
+
* 1 bug fix:
|
260
|
+
|
261
|
+
* Fixed siginfo handler by rearranging reporters and fixing to_s. (tenderlove)
|
262
|
+
|
263
|
+
=== 5.0.7 / 2013-09-05
|
264
|
+
|
265
|
+
* 2 minor enhancements:
|
266
|
+
|
267
|
+
* Added clarification about the use of thread local variables in expectations. (jemc)
|
268
|
+
* Added extra message about skipped tests, if any. Disable globally with $MT_NO_SKIP_MSG.
|
269
|
+
|
270
|
+
* 2 bug fixes:
|
271
|
+
|
272
|
+
* Only require minitest, not minitest/autorun in pride_plugin. (judofyr)
|
273
|
+
* Require rubygems in load_plugins in case you're not using minitest/autorun.
|
274
|
+
|
275
|
+
=== 5.0.6 / 2013-06-28
|
276
|
+
|
277
|
+
* 3 minor enhancements:
|
278
|
+
|
279
|
+
* Allow stub to pass args to blocks. (swindsor)
|
280
|
+
* Improved warning message about minitest/autorun to address 1.9's minitest/autorun.
|
281
|
+
* Made minitest/test require minitest as needed. For lib writers. (erikh)
|
282
|
+
|
283
|
+
* 1 bug fix:
|
284
|
+
|
285
|
+
* Fixed missing require in minitest/test. (erikh)
|
286
|
+
|
287
|
+
=== 4.7.5 / 2013-06-21 // mri 2.1.1
|
288
|
+
|
289
|
+
* 2 bug fixes:
|
290
|
+
|
291
|
+
* Fix Spec#describe_stack to be thread local.
|
292
|
+
* Fix multithreaded test failures by defining Time local to mock test namespace
|
293
|
+
|
294
|
+
=== 5.0.5 / 2013-06-20
|
295
|
+
|
296
|
+
* 6 bug fixes:
|
297
|
+
|
298
|
+
* DOH! Fixed the rest of the new casing on Minitest. (splattael)
|
299
|
+
* Fixed typo on minitest/mock rdoc. (mrgilman/guiceolin)
|
300
|
+
* Make Spec::DSL.describe_stack thread local to avoid failing on my own tests.
|
301
|
+
* Make a fake Time.now local to the tests so they won't interfere with real reporter timings.
|
302
|
+
* Make everything mockable by wrapping all 'special' methods in a smarter wrapper. (bestie)
|
303
|
+
* Raise ArgumentError if let name starts with 'test'. (johnmaxwell)
|
304
|
+
|
305
|
+
=== 5.0.4 / 2013-06-07
|
306
|
+
|
307
|
+
* 5 minor enhancements:
|
308
|
+
|
309
|
+
* Added AbstractReporter, defining required Reporter API to quack properly.
|
310
|
+
* Added doco for writing reporters.
|
311
|
+
* Refactored Reporter into ProgressReporter and SummaryReporter. (idea: phiggins, code:me+scotch)
|
312
|
+
* Refactored SummaryReporter pushing up to StatisticsReporter. (phiggins)
|
313
|
+
* Removed Reporter#run_and_report... cleaner, but doesn't "fit" in the API.
|
314
|
+
|
315
|
+
=== 5.0.3 / 2013-05-29
|
316
|
+
|
317
|
+
* 4 minor enhancements:
|
318
|
+
|
319
|
+
* Added Runnable.with_info_handler and Runnable.on_signal.
|
320
|
+
* Moved io.sync restore to Reporter#run_and_report.
|
321
|
+
* Refactored inner loop of Reporter#report to #to_s. Callable for status updates.
|
322
|
+
* Restored MT4's mid-run report (^t). (tenderlove).
|
323
|
+
|
324
|
+
=== 5.0.2 / 2013-05-20
|
325
|
+
|
326
|
+
* 3 bug fixes:
|
327
|
+
|
328
|
+
* Gem.find_files is smarter than I remember... cause I wrote it that way. *sigh* I'm getting old.
|
329
|
+
* Pride wasn't doing puts through its #io. (tmiller/tenderlove)
|
330
|
+
* Replaced Runnable#dup and Test#dup with marshal_dump/load. Too many problems cropping up on untested rails code. (tenderlove/rubys)
|
331
|
+
|
332
|
+
=== 5.0.1 / 2013-05-14
|
333
|
+
|
334
|
+
* 2 bug fixes:
|
335
|
+
|
336
|
+
* Documented Assertions' need for @assertions to be defined by the includer.
|
337
|
+
* Only load one plugin version per name. Tries for latest.
|
338
|
+
|
339
|
+
=== 5.0.0 / 2013-05-10
|
340
|
+
|
341
|
+
Oh god... here we go...
|
342
|
+
|
343
|
+
Minitest 5:
|
344
|
+
|
345
|
+
* 4 deaths in the family:
|
346
|
+
|
347
|
+
* MiniTest.runner is dead. No more manager objects.
|
348
|
+
* MiniTest::Unit#record is dead. Use a Reporter instance instead.
|
349
|
+
* MiniTest::Unit._run_* is dead. Runnable things are responsible for their own runs.
|
350
|
+
* MiniTest::Unit.output is dead. No more centralized IO.
|
351
|
+
|
352
|
+
* 12 major (oft incompatible) changes:
|
353
|
+
|
354
|
+
* Renamed MiniTest to Minitest. Your pinkies will thank me. (aliased to MiniTest)
|
355
|
+
* Removed MiniTest::Unit entirely. No more manager objects.
|
356
|
+
* Added Minitest::Runnable. Everything minitest can run subclasses this.
|
357
|
+
* Renamed MiniTest::Unit::TestCase to Minitest::Test (subclassing Runnable).
|
358
|
+
* Added Minitest::Benchmark.
|
359
|
+
* Your benchmarks need to move to their own subclass.
|
360
|
+
* Benchmarks using the spec DSL have to have "Bench" somewhere in their describe.
|
361
|
+
* MiniTest::Unit.after_tests moved to Minitest.after_tests
|
362
|
+
* MiniTest::Unit.autorun is now Minitest.autorun. Just require minitest/autorun pls.
|
363
|
+
* Removed ParallelEach#grep since it isn't used anywhere.
|
364
|
+
* Renamed Runnable#__name__ to Runnable#name (but uses @NAME internally).
|
365
|
+
* Runnable#run needs to return self. Allows for swapping of results as needed.
|
366
|
+
|
367
|
+
* 8 minor moves:
|
368
|
+
|
369
|
+
* Moved Assertions module to minitest/assertions.rb
|
370
|
+
* Moved Expectations module to minitest/expectations.rb
|
371
|
+
* Moved Test to minitest/test.rb
|
372
|
+
* Moved everything else in minitest/unit.rb to minitest.rb
|
373
|
+
* minitest/unit.rb is now just a small (user-test only) compatibility layer.
|
374
|
+
* Moved most of minitest/pride into minitest/pride_plugin.
|
375
|
+
* minitest/pride now just activates pride.
|
376
|
+
* Moved ParallelEach under Minitest.
|
377
|
+
|
378
|
+
* 9 additions:
|
379
|
+
|
380
|
+
* Added a plugin system that can extend command-line options.
|
381
|
+
* Added Minitest.extensions.
|
382
|
+
* Added Minitest.reporter (only available during startup).
|
383
|
+
* Added Minitest.run(args). This is the very top of any Minitest run.
|
384
|
+
* Added Minitest::Reporter. Everything minitest can report goes through here.
|
385
|
+
* Minitest.reporter is a composite so you can add your own.
|
386
|
+
* Added Minitest::CompositeReporter. Much easier to extend with your own reporters.
|
387
|
+
* Added UnexpectedError, an Assertion subclass, to wrap up errors.
|
388
|
+
* Minitest::Test#run is now freakin' beautiful. 47 -> 17 loc
|
389
|
+
|
390
|
+
* 11 other:
|
391
|
+
|
392
|
+
* Removed Object.infect_with_assertions (it was already dead code).
|
393
|
+
* Runnables are responsible for knowing their result_code (eg "." or "F").
|
394
|
+
* Minitest.autorun now returns boolean, not exit code.
|
395
|
+
* Added FAQ entry for extending via modules. (phiggins)
|
396
|
+
* Implement Runnable#dup to cleanse state back to test results. Helps with serialization. pair:tenderlove
|
397
|
+
* Moved ParallelEach under Minitest.
|
398
|
+
* Runnable#run needs to return self. Allows for swapping of results as needed.
|
399
|
+
* Minitest.init_plugins passes down options.
|
400
|
+
* Minitest.load_plugins only loads once.
|
401
|
+
* Fixed minitest/pride to work with rake test loader again. (tmiller)
|
402
|
+
* Added count/size to ParallelEach to fix use w/in stdlib's test/unit. :( (btaitelb)
|
403
|
+
|
404
|
+
* 5 voodoo:
|
405
|
+
|
406
|
+
* Removed mutex from minitest.rb (phiggins)
|
407
|
+
* Removed mutex from test.rb (phiggins)
|
408
|
+
* Removed Minitest::Reporter.synchronize (phiggins)
|
409
|
+
* Removed Minitest::Test.synchronize (phiggins)
|
410
|
+
* Upon loading minitest/parallel_each, record, capture_io and capture_subprocess_io are doped with synchronization code. (phiggins)
|
411
|
+
|
412
|
+
=== 4.7.4 / 2013-05-01
|
413
|
+
|
414
|
+
This is probably the last release of the 4.x series. It will be merged
|
415
|
+
to ruby and will be put into maintenance mode there.
|
416
|
+
|
417
|
+
I'm not set in stone on this, but at this point further development of
|
418
|
+
minitest (5+) will be gem-only. It is just too hard to work w/in
|
419
|
+
ruby-core w/ test-unit compatibility holding minitest development
|
420
|
+
back.
|
421
|
+
|
422
|
+
* 2 minor enhancements:
|
423
|
+
|
424
|
+
* Added count/size to ParallelEach to fix use w/in stdlib's test/unit. :( (btaitelb)
|
425
|
+
* Allow disabling of info_signal handler in runner. (erikh)
|
426
|
+
|
427
|
+
=== 4.7.3 / 2013-04-20
|
428
|
+
|
429
|
+
* 1 bug fix:
|
430
|
+
|
431
|
+
* Reverted stubbing of module methods change. Stub the user, not the impl. (ab9/tyabe)
|
432
|
+
|
433
|
+
=== 4.7.2 / 2013-04-18
|
434
|
+
|
435
|
+
* 2 bug fixes:
|
436
|
+
|
437
|
+
* Fixed inconsistency in refute_in_delta/epsilon. I double negatived my logic. (nettsundere)
|
438
|
+
* Fixed stubbing of module methods (eg Kernel#sleep). (steveklabnik)
|
439
|
+
|
440
|
+
=== 4.7.1 / 2013-04-09
|
441
|
+
|
442
|
+
* 1 minor enhancement:
|
443
|
+
|
444
|
+
* Added FAQ section to README
|
445
|
+
|
446
|
+
* 1 bug fix:
|
447
|
+
|
448
|
+
* Fixed bug where guard runs tests bypassing minitest/autorun and an ivar isn't set right. (darrencauthon)
|
449
|
+
|
450
|
+
=== 4.7.0 / 2013-03-18
|
451
|
+
|
452
|
+
* 1 major enhancement:
|
453
|
+
|
454
|
+
* Refactored MiniTest::Spec into MiniTest::Spec::DSL.
|
455
|
+
|
456
|
+
* 1 bug fix:
|
457
|
+
|
458
|
+
* Removed $DEBUG handler that detected when test/unit and minitest were both loaded. (tenderlove)
|
459
|
+
|
460
|
+
=== 4.6.2 / 2013-02-27
|
461
|
+
|
462
|
+
* 1 minor enhancement:
|
463
|
+
|
464
|
+
* Change error output to match Class#method, making it easier to use -n filter.
|
465
|
+
|
466
|
+
=== 4.6.1 / 2013-02-14
|
467
|
+
|
468
|
+
* 1 bug fix:
|
469
|
+
|
470
|
+
* Fixed an option processing bug caused by test/unit's irresponsibly convoluted code. (floehopper)
|
471
|
+
|
472
|
+
=== 4.6.0 / 2013-02-07
|
473
|
+
|
474
|
+
* 3 major enhancements:
|
475
|
+
|
476
|
+
* Removed ::reset_setup_teardown_hooks
|
477
|
+
* Removed the long deprecated assert_block
|
478
|
+
* Removed the long deprecated lifecycle hooks: add_(setup|teardown)_hook
|
479
|
+
|
480
|
+
* 1 minor enhancement:
|
481
|
+
|
482
|
+
* Allow filtering tests by suite name as well as test name. (lazyatom)
|
483
|
+
|
484
|
+
* 2 bug fixes:
|
485
|
+
|
486
|
+
* Made hex handling (eg object_ids) in mu_pp_for_diff more specific. (maxim)
|
487
|
+
* nodoc top-level module. (zzak)
|
488
|
+
|
489
|
+
=== 4.5.0 / 2013-01-22
|
490
|
+
|
491
|
+
* 1 major enhancement:
|
492
|
+
|
493
|
+
* Rearranged minitest/unit.rb so NO parallelization code is loaded/used until you opt-in.
|
494
|
+
|
495
|
+
* 4 minor enhancements:
|
496
|
+
|
497
|
+
* Added TestCase#skipped? for teardown guards
|
498
|
+
* Added maglev? guard
|
499
|
+
* Document that record can be sent twice if teardown fails or errors (randycoulman)
|
500
|
+
* Errors in teardown are now recorded. (randycoulman)
|
501
|
+
|
502
|
+
* 3 bug fixes:
|
503
|
+
|
504
|
+
* Added hacks and skips to get clean test runs on maglev
|
505
|
+
* Modified float tests for maglev float output differences. Not sure this is right. Not sure I care.
|
506
|
+
* Test for existance of diff.exe instead of assuming they have devkit. (blowmage/Cumbayah)
|
507
|
+
|
508
|
+
=== 4.4.0 / 2013-01-07
|
509
|
+
|
510
|
+
* 3 minor enhancements:
|
511
|
+
|
512
|
+
* Added fit_logarithic and assert_performance_logarithmic. (ktheory)
|
513
|
+
* Merge processed options so others can mess with defaults. (tenderlove)
|
514
|
+
* TestCase#message can now take another proc to defer custom message cost. (ordinaryzelig/bhenderson)
|
515
|
+
|
516
|
+
* 1 bug fix:
|
517
|
+
|
518
|
+
* TestCase#passed? now true if test is skipped. (qanhd)
|
519
|
+
|
520
|
+
=== 4.3.3 / 2012-12-06
|
521
|
+
|
522
|
+
* 1 bug fix:
|
523
|
+
|
524
|
+
* Updated information about stubbing. (daviddavis)
|
525
|
+
|
526
|
+
=== 4.3.2 / 2012-11-27 // mri 2.0.0
|
527
|
+
|
528
|
+
* 1 minor enhancement:
|
529
|
+
|
530
|
+
* Improved assert_equals error message to point you at #== of member objects. (kcurtin)
|
531
|
+
|
532
|
+
=== 4.3.1 / 2012-11-23
|
533
|
+
|
534
|
+
* 1 bug fix:
|
535
|
+
|
536
|
+
* Moved test_children to serial testcase to prevent random failures.
|
537
|
+
|
538
|
+
=== 4.3.0 / 2012-11-17
|
539
|
+
|
540
|
+
* 4 minor enhancements:
|
541
|
+
|
542
|
+
* Allow #autorun to run even if loaded with other test libs that call exit. (sunaku)
|
543
|
+
* Do not include Expectations in Object if $MT_NO_EXPECTATIONS is set (experimental?)
|
544
|
+
* Gave some much needed love to assert_raises.
|
545
|
+
* Mock#expect can take a block to custom-validate args. (gmoothart)
|
546
|
+
|
547
|
+
=== 4.2.0 / 2012-11-02
|
548
|
+
|
549
|
+
* 4 major enhancements:
|
550
|
+
|
551
|
+
* Added minitest/hell - run all your tests through the ringer!
|
552
|
+
* Added support for :parallel test_order to run test cases in parallel.
|
553
|
+
* Removed last_error and refactored runner code to be threadsafe.
|
554
|
+
* _run_suites now runs suites in parallel if they opt-in.
|
555
|
+
|
556
|
+
* 4 minor enhancements:
|
557
|
+
|
558
|
+
* Added TestCase#synchronize
|
559
|
+
* Added TestCase.make_my_diffs_pretty!
|
560
|
+
* Added TestCase.parallelize_me!
|
561
|
+
* Lock on capture_io for thread safety (tenderlove)
|
562
|
+
|
563
|
+
=== 4.1.0 / 2012-10-05
|
564
|
+
|
565
|
+
* 2 minor enhancements:
|
566
|
+
|
567
|
+
* Added skip example to readme. (dissolved)
|
568
|
+
* Extracted backtrace filter to object. (tenderlove)
|
569
|
+
|
570
|
+
* 1 bug fix:
|
571
|
+
|
572
|
+
* OMG I'm so dumb. Fixed access to deprecated hook class methods. I hate ruby modules. (route)
|
573
|
+
|
574
|
+
=== 4.0.0 / 2012-09-28
|
575
|
+
|
576
|
+
* 1 major enhancement:
|
577
|
+
|
578
|
+
* The names of a privately-used undocumented constants are Super Important™.
|
579
|
+
|
580
|
+
* 1 minor enhancement:
|
581
|
+
|
582
|
+
* Support stubbing methods that would be handled via method_missing. (jhsu)
|
583
|
+
|
584
|
+
* 3 bug fixes:
|
585
|
+
|
586
|
+
* Add include_private param to MiniTest::Mock#respond_to? (rf-)
|
587
|
+
* Fixed use of minitest/pride with --help. (zw963)
|
588
|
+
* Made 'No visible difference.' message more clear. (ckrailo)
|
589
|
+
|
590
|
+
=== 3.5.0 / 2012-09-21
|
591
|
+
|
592
|
+
* 1 minor enhancement:
|
593
|
+
|
594
|
+
* Added #capture_subprocess_io. (route)
|
595
|
+
|
596
|
+
=== 3.4.0 / 2012-09-05
|
597
|
+
|
598
|
+
* 2 minor enhancements:
|
599
|
+
|
600
|
+
* assert_output can now take regexps for expected values. (suggested by stomar)
|
601
|
+
* Clarified that ruby 1.9/2.0's phony gems cause serious confusion for rubygems.
|
602
|
+
|
603
|
+
=== 3.3.0 / 2012-07-26
|
604
|
+
|
605
|
+
* 1 major enhancement:
|
606
|
+
|
607
|
+
* Deprecated add_(setup|teardown)_hook in favor of (before|after)_(setup|teardown) [2013-01-01]
|
608
|
+
|
609
|
+
* 4 minor enhancements:
|
610
|
+
|
611
|
+
* Refactored deprecated hook system into a module.
|
612
|
+
* Refactored lifecycle hooks into a module.
|
613
|
+
* Removed after_setup/before_teardown + run_X_hooks from Spec.
|
614
|
+
* Spec#before/after now do a simple define_method and call super. DUR.
|
615
|
+
|
616
|
+
* 2 bug fixes:
|
617
|
+
|
618
|
+
* Fixed #passed? when used against a test that called flunk. (floehopper)
|
619
|
+
* Fixed rdoc bug preventing doco for some expectations. (stomar).
|
620
|
+
|
621
|
+
=== 3.2.0 / 2012-06-26
|
622
|
+
|
623
|
+
* 1 minor enhancement:
|
624
|
+
|
625
|
+
* Stubs now yield self. (peterhellberg)
|
626
|
+
|
627
|
+
* 1 bug fix:
|
628
|
+
|
629
|
+
* Fixed verbose test that only fails when run in verbose mode. mmmm irony.
|
630
|
+
|
631
|
+
=== 3.1.0 / 2012-06-13
|
632
|
+
|
633
|
+
* 2 minor enhancements:
|
634
|
+
|
635
|
+
* Removed LONG deprecated Unit.out accessor
|
636
|
+
* Removed generated method name munging from minitest/spec. (ordinaryzelig/tenderlove)
|
637
|
+
|
638
|
+
=== 3.0.1 / 2012-05-24
|
639
|
+
|
640
|
+
* 1 bug fix:
|
641
|
+
|
642
|
+
* I'm a dumbass and refactored into Mock#call. Renamed to #__call so you can mock #call. (mschuerig)
|
643
|
+
|
644
|
+
=== 3.0.0 / 2012-05-08
|
645
|
+
|
646
|
+
* 3 major enhancements:
|
647
|
+
|
648
|
+
* Added Object#stub (in minitest/mock.rb).
|
649
|
+
* Mock#expect mocks are used in the order they're given.
|
650
|
+
* Mock#verify now strictly compares against expect calls.
|
651
|
+
|
652
|
+
* 3 minor enhancements:
|
653
|
+
|
654
|
+
* Added caller to deprecation message.
|
655
|
+
* Mock error messages are much prettier.
|
656
|
+
* Removed String check for RHS of assert/refute_match. This lets #to_str work properly.
|
657
|
+
|
658
|
+
* 1 bug fix:
|
659
|
+
|
660
|
+
* Support drive letter on Windows. Patch provided from MRI by Usaku NAKAMURA. (ayumin)
|
661
|
+
|
662
|
+
=== 2.12.1 / 2012-04-10
|
663
|
+
|
664
|
+
* 1 minor enhancement:
|
665
|
+
|
666
|
+
* Added ruby releases to History.txt to make it easier to see what you're missing
|
667
|
+
|
668
|
+
* 1 bug fix:
|
669
|
+
|
670
|
+
* Rolled my own deprecate msg to allow MT to work with rubygems < 1.7
|
671
|
+
|
672
|
+
=== 2.12.0 / 2012-04-03
|
673
|
+
|
674
|
+
* 4 minor enhancements:
|
675
|
+
|
676
|
+
* ::it returns test method name (wojtekmach)
|
677
|
+
* Added #record method to runner so runner subclasses can cleanly gather data.
|
678
|
+
* Added Minitest alias for MiniTest because even I forget.
|
679
|
+
* Deprecated assert_block!! Yay!!!
|
680
|
+
|
681
|
+
* 1 bug fix:
|
682
|
+
|
683
|
+
* Fixed warning in i_suck_and_my_tests_are_order_dependent! (phiggins)
|
684
|
+
|
685
|
+
=== 2.11.4 / 2012-03-20
|
686
|
+
|
687
|
+
* 2 minor enhancements:
|
688
|
+
|
689
|
+
* Updated known extensions
|
690
|
+
* You got your unicode in my tests! You got your tests in my unicode! (fl00r)
|
691
|
+
|
692
|
+
* 1 bug fix:
|
693
|
+
|
694
|
+
* Fixed MiniTest::Mock example in the readme. (conradwt)
|
695
|
+
|
696
|
+
=== 2.11.3 / 2012-02-29
|
697
|
+
|
698
|
+
* 2 bug fixes:
|
699
|
+
|
700
|
+
* Clarified that assert_raises returns the exception for further testing
|
701
|
+
* Fixed assert_in_epsilon when both args are negative. (tamc)
|
702
|
+
|
703
|
+
=== 2.11.2 / 2012-02-14
|
704
|
+
|
705
|
+
* 1 minor enhancement:
|
706
|
+
|
707
|
+
* Display failures/errors on SIGINFO. (tenderlove)
|
708
|
+
|
709
|
+
* 1 bug fix:
|
710
|
+
|
711
|
+
* Fixed MiniTest::Unit.after_tests for Ruby 1.9.3. (ysbaddaden)
|
712
|
+
|
713
|
+
=== 2.11.1 / 2012-02-01
|
714
|
+
|
715
|
+
* 3 bug fixes:
|
716
|
+
|
717
|
+
* Improved description for --name argument. (drd)
|
718
|
+
* Ensure Mock#expect's expected args is an Array. (mperham)
|
719
|
+
* Ensure Mock#verify verifies multiple expects of the same method. (chastell)
|
720
|
+
|
721
|
+
=== 2.11.0 / 2012-01-25
|
722
|
+
|
723
|
+
* 2 minor enhancements:
|
724
|
+
|
725
|
+
* Added before / after hooks for setup and teardown. (tenderlove)
|
726
|
+
* Pushed run_setup_hooks down to Spec. (tenderlove)
|
727
|
+
|
728
|
+
=== 2.10.1 / 2012-01-17
|
729
|
+
|
730
|
+
* 1 bug fix:
|
731
|
+
|
732
|
+
* Fixed stupid 1.9 path handling grumble grumble. (graaff)
|
733
|
+
|
734
|
+
=== 2.10.0 / 2011-12-20
|
735
|
+
|
736
|
+
* 3 minor enhancements:
|
737
|
+
|
738
|
+
* Added specs for must/wont be_empty/respond_to/be_kind_of and others.
|
739
|
+
* Added tests for assert/refute predicate.
|
740
|
+
* Split minitest/excludes.rb out to its own gem.
|
741
|
+
|
742
|
+
* 1 bug fix:
|
743
|
+
|
744
|
+
* Fixed must_be_empty and wont_be_empty argument handling. (mrsimo)
|
745
|
+
|
746
|
+
=== 2.9.1 / 2011-12-13
|
747
|
+
|
748
|
+
* 4 minor enhancements:
|
749
|
+
|
750
|
+
* Added a ton of tests on spec error message output.
|
751
|
+
* Cleaned up consistency of msg handling on unary expectations.
|
752
|
+
* Improved error messages on assert/refute_in_delta.
|
753
|
+
* infect_an_assertion no longer checks arity and better handles args.
|
754
|
+
|
755
|
+
* 1 bug fix:
|
756
|
+
|
757
|
+
* Fixed error message on specs when 2+ args and custom message provided. (chastell)
|
758
|
+
|
759
|
+
=== 2.9.0 / 2011-12-07
|
760
|
+
|
761
|
+
* 4 minor enhancements:
|
762
|
+
|
763
|
+
* Added TestCase.exclude and load_excludes for programmatic filtering of tests.
|
764
|
+
* Added guard methods so you can cleanly skip based on platform/impl
|
765
|
+
* Holy crap! 100% doco! `rdoc -C` ftw
|
766
|
+
* Switch assert_output to test stderr before stdout to possibly improve debugging
|
767
|
+
|
768
|
+
=== 2.8.1 / 2011-11-17
|
769
|
+
|
770
|
+
* 1 bug fix:
|
771
|
+
|
772
|
+
* Ugh. 1.9's test/unit violates my internals. Added const_missing.
|
773
|
+
|
774
|
+
=== 2.8.0 / 2011-11-08
|
775
|
+
|
776
|
+
* 2 minor enhancements:
|
777
|
+
|
778
|
+
* Add a method so that code can be run around a particular test case (tenderlove)
|
779
|
+
* Turn off backtrace filtering if we're running inside a ruby checkout. (drbrain)
|
780
|
+
|
781
|
+
* 2 bug fixes:
|
782
|
+
|
783
|
+
* Fixed 2 typos and 2 doc glitches. (splattael)
|
784
|
+
* Remove unused block arguments to avoid creating Proc objects. (k-tsj)
|
785
|
+
|
786
|
+
=== 2.7.0 / 2011-10-25
|
787
|
+
|
788
|
+
* 2 minor enhancements:
|
789
|
+
|
790
|
+
* Include failed values in the expected arg output in MockExpectationError. (nono)
|
791
|
+
* Make minitest/pride work with other 256 color capable terms. (sunaku)
|
792
|
+
|
793
|
+
* 2 bug fixes:
|
794
|
+
|
795
|
+
* Clarified the documentation of minitest/benchmark (eregon)
|
796
|
+
* Fixed using expectations in regular unit tests. (sunaku)
|
797
|
+
|
798
|
+
=== 2.6.2 / 2011-10-19
|
799
|
+
|
800
|
+
* 1 minor enhancement:
|
801
|
+
|
802
|
+
* Added link to vim bundle. (sunaku)
|
803
|
+
|
804
|
+
* 2 bug fixes:
|
805
|
+
|
806
|
+
* Force gem activation in hoe minitest plugin
|
807
|
+
* Support RUBY_VERSION='2.0.0' (nagachika)
|
808
|
+
|
809
|
+
=== 2.6.1 / 2011-09-27
|
810
|
+
|
811
|
+
* 2 bug fixes:
|
812
|
+
|
813
|
+
* Alias Spec.name from Spec.to_s so it works when @name is nil (nathany)
|
814
|
+
* Fixed assert and refute_operator where second object has a bad == method.
|
815
|
+
|
816
|
+
=== 2.6.0 / 2011-09-13
|
817
|
+
|
818
|
+
* 2 minor enhancements:
|
819
|
+
|
820
|
+
* Added specify alias for it and made desc optional.
|
821
|
+
* Spec#must_be and #wont_be can be used with predicates (metaskills)
|
822
|
+
|
823
|
+
* 1 bug fix:
|
824
|
+
|
825
|
+
* Fixed Mock.respond_to?(var) to work with strings. (holli)
|
826
|
+
|
827
|
+
=== 2.5.1 / 2011-08-27 // ruby 1.9.3: p0, p125, p34579
|
828
|
+
|
829
|
+
* 2 minor enhancements:
|
830
|
+
|
831
|
+
* Added gem activation for minitest in minitest/autoload to help out 1.9 users
|
832
|
+
* Extended Spec.register_spec_type to allow for procs instead of just regexps.
|
833
|
+
|
834
|
+
=== 2.5.0 / 2011-08-18
|
835
|
+
|
836
|
+
* 4 minor enhancements:
|
837
|
+
|
838
|
+
* Added 2 more arguments against rspec: let & subject in 9 loc! (emmanuel/luis)
|
839
|
+
* Added TestCase.i_suck_and_my_tests_are_order_dependent!
|
840
|
+
* Extended describe to take an optional method name (2 line change!). (emmanuel)
|
841
|
+
* Refactored and extended minitest/pride to do full 256 color support. (lolcat)
|
842
|
+
|
843
|
+
* 1 bug fix:
|
844
|
+
|
845
|
+
* Doc fixes. (chastell)
|
846
|
+
|
847
|
+
=== 2.4.0 / 2011-08-09
|
848
|
+
|
849
|
+
* 4 minor enhancements:
|
850
|
+
|
851
|
+
* Added simple examples for all expectations.
|
852
|
+
* Improved Mock error output when args mismatch.
|
853
|
+
* Moved all expectations from Object to MiniTest::Expectations.
|
854
|
+
* infect_with_assertions has been removed due to excessive clever
|
855
|
+
|
856
|
+
* 4 bug fixes:
|
857
|
+
|
858
|
+
* Fix Assertions#mu_pp to deal with immutable encoded strings. (ferrous26)
|
859
|
+
* Fix minitest/pride for MacRuby (ferrous26)
|
860
|
+
* Made error output less fancy so it is more readable
|
861
|
+
* Mock shouldn't undef === and inspect. (dgraham)
|
862
|
+
|
863
|
+
=== 2.3.1 / 2011-06-22
|
864
|
+
|
865
|
+
* 1 bug fix:
|
866
|
+
|
867
|
+
* Fixed minitest hoe plugin to be a spermy dep and not depend on itself.
|
868
|
+
|
869
|
+
=== 2.3.0 / 2011-06-15
|
870
|
+
|
871
|
+
* 5 minor enhancements:
|
872
|
+
|
873
|
+
* Add setup and teardown hooks to MiniTest::TestCase. (phiggins)
|
874
|
+
* Added nicer error messages for MiniTest::Mock. (phiggins)
|
875
|
+
* Allow for less specific expected arguments in Mock. (bhenderson/phiggins)
|
876
|
+
* Made MiniTest::Mock a blank slate. (phiggins)
|
877
|
+
* Refactored minitest/spec to use the hooks instead of define_inheritable_method. (phiggins)
|
878
|
+
|
879
|
+
* 2 bug fixes:
|
880
|
+
|
881
|
+
* Fixed TestCase's inherited hook. (dchelimsky/phiggins/jamis, the 'good' neighbor)
|
882
|
+
* MiniTest::Assertions#refute_empty should use mu_pp in the default message. (whatthejeff)
|
883
|
+
|
884
|
+
=== 2.2.2 / 2011-06-01
|
885
|
+
|
886
|
+
* 2 bug fixes:
|
887
|
+
|
888
|
+
* Got rid of the trailing period in message for assert_equal. (tenderlove)
|
889
|
+
* Windows needs more flushing. (Akio Tajima)
|
890
|
+
|
891
|
+
=== 2.2.1 / 2011-05-31
|
892
|
+
|
893
|
+
* 1 bug fix:
|
894
|
+
|
895
|
+
* My _ONE_ non-rubygems-using minitest user goes to Seattle.rb!
|
896
|
+
|
897
|
+
=== 2.2.0 / 2011-05-29
|
898
|
+
|
899
|
+
* 6 minor enhancements:
|
900
|
+
|
901
|
+
* assert_equal (and must_equal) now tries to diff output where it makes sense.
|
902
|
+
* Added Assertions#diff(exp, act) to be used by assert_equal.
|
903
|
+
* Added Assertions#mu_pp_for_diff
|
904
|
+
* Added Assertions.diff and diff=
|
905
|
+
* Moved minitest hoe-plugin from hoe-seattlerb. (erikh)
|
906
|
+
* Skipped tests only output details in verbose mode. (tenderlove+zenspider=xoxo)
|
907
|
+
|
908
|
+
=== 2.1.0 / 2011-04-11
|
909
|
+
|
910
|
+
* 5 minor enhancements:
|
911
|
+
|
912
|
+
* Added MiniTest::Spec.register_spec_type(matcher, klass) and spec_type(desc)
|
913
|
+
* Added ability for specs to share code via subclassing of Spec. (metaskills)
|
914
|
+
* Clarified (or tried to) bench_performance_linear's use of threshold.
|
915
|
+
* MiniTest::Unit.runner=(runner) provides an easy way of creating custom test runners for specialized needs. (justinweiss)
|
916
|
+
* Reverse order of inheritance in teardowns of specs. (deepfryed)
|
917
|
+
|
918
|
+
* 3 bug fixes:
|
919
|
+
|
920
|
+
* FINALLY fixed problems of inheriting specs in describe/it/describe scenario. (MGPalmer)
|
921
|
+
* Fixed a new warning in 1.9.3.
|
922
|
+
* Fixed assert_block's message handling. (nobu)
|
923
|
+
|
924
|
+
=== 2.0.2 / 2010-12-24
|
925
|
+
|
926
|
+
* 1 minor enhancement:
|
927
|
+
|
928
|
+
* Completed doco on minitest/benchmark for specs.
|
929
|
+
|
930
|
+
* 1 bug fix:
|
931
|
+
|
932
|
+
* Benchmarks in specs that didn't call bench_range would die. (zzak).
|
933
|
+
|
934
|
+
=== 2.0.1 / 2010-12-15
|
935
|
+
|
936
|
+
* 4 minor enhancements:
|
937
|
+
|
938
|
+
* Do not filter backtrace if $DEBUG
|
939
|
+
* Exit autorun via nested at_exit handler, in case other libs call exit
|
940
|
+
* Make options accesor lazy.
|
941
|
+
* Split printing of test name and its time. (nurse)
|
942
|
+
|
943
|
+
* 1 bug fix:
|
944
|
+
|
945
|
+
* Fix bug when ^T is hit before runner start
|
946
|
+
|
947
|
+
=== 2.0.0 / 2010-11-11
|
948
|
+
|
949
|
+
* 3 major enhancements:
|
950
|
+
|
951
|
+
* Added minitest/benchmark! Assert your performance! YAY!
|
952
|
+
* Refactored runner to allow for more extensibility. See minitest/benchmark.
|
953
|
+
* This makes the runner backwards incompatible in some ways!
|
954
|
+
|
955
|
+
* 9 minor enhancements:
|
956
|
+
|
957
|
+
* Added MiniTest::Unit.after_tests { ... }
|
958
|
+
* Improved output by adding test rates and a more sortable verbose format
|
959
|
+
* Improved readme based on feedback from others
|
960
|
+
* Added io method to TestCase. If used, it'll supplant '.EF' output.
|
961
|
+
* Refactored IO in MiniTest::Unit.
|
962
|
+
* Refactored _run_anything to _run_suite to make it easier to wrap (ngauthier)
|
963
|
+
* Spec class names are now the unmunged descriptions (btakita)
|
964
|
+
* YAY for not having redundant rdoc/readmes!
|
965
|
+
* Help output is now generated from the flags you passed straight up.
|
966
|
+
|
967
|
+
* 4 bug fixes:
|
968
|
+
|
969
|
+
* Fixed scoping issue on minitest/mock (srbaker/prosperity)
|
970
|
+
* Fixed some of the assertion default messages
|
971
|
+
* Fixes autorun when on windows with ruby install on different drive (larsch)
|
972
|
+
* Fixed rdoc output bug in spec.rb
|
973
|
+
|
974
|
+
=== 1.7.2 / 2010-09-23
|
975
|
+
|
976
|
+
* 3 bug fixes:
|
977
|
+
|
978
|
+
* Fixed doco for expectations and Spec.
|
979
|
+
* Fixed test_capture_io on 1.9.3+ (sora_h)
|
980
|
+
* assert_raises now lets MiniTest::Skip through. (shyouhei)
|
981
|
+
|
982
|
+
=== 1.7.1 / 2010-09-01
|
983
|
+
|
984
|
+
* 1 bug fix:
|
985
|
+
|
986
|
+
* 1.9.2 fixes for spec tests
|
987
|
+
|
988
|
+
=== 1.7.0 / 2010-07-15
|
989
|
+
|
990
|
+
* 5 minor enhancements:
|
991
|
+
|
992
|
+
* Added assert_output (mapped to must_output).
|
993
|
+
* Added assert_silent (mapped to must_be_silent).
|
994
|
+
* Added examples to readme (Mike Dalessio)
|
995
|
+
* Added options output at the top of the run, for fatal run debugging (tenderlove)
|
996
|
+
* Spec's describe method returns created class
|
997
|
+
|
998
|
+
=== 1.6.0 / 2010-03-27 // ruby 1.9.2-p290
|
999
|
+
|
1000
|
+
* 10 minor enhancements:
|
1001
|
+
|
1002
|
+
* Added --seed argument so you can reproduce a random order for debugging.
|
1003
|
+
* Added documentation for assertions
|
1004
|
+
* Added more rdoc and tons of :nodoc:
|
1005
|
+
* Added output to give you all the options you need to reproduce that run.
|
1006
|
+
* Added proper argument parsing to minitest.
|
1007
|
+
* Added unique serial # to spec names so order can be preserved (needs tests). (phrogz)
|
1008
|
+
* Empty 'it' fails with default msg. (phrogz)
|
1009
|
+
* Remove previous method on expect to remove 1.9 warnings
|
1010
|
+
* Spec#it is now order-proof wrt subclasses/nested describes.
|
1011
|
+
* assert_same error message now reports in decimal, eg: oid=123. (mattkent)
|
1012
|
+
|
1013
|
+
* 2 bug fixes:
|
1014
|
+
|
1015
|
+
* Fixed message on refute_same to be consistent with assert_same.
|
1016
|
+
* Fixed method randomization to be stable for testing.
|
1017
|
+
|
1018
|
+
=== 1.5.0 / 2010-01-06
|
1019
|
+
|
1020
|
+
* 4 minor enhancements:
|
1021
|
+
|
1022
|
+
* Added ability to specify what assertions should have their args flipped.
|
1023
|
+
* Don't flip arguments on *include and *respond_to assertions.
|
1024
|
+
* Refactored Module.infect_an_assertion from Module.infect_with_assertions.
|
1025
|
+
* before/after :all now bitches and acts like :each
|
1026
|
+
|
1027
|
+
* 3 bug fixes:
|
1028
|
+
|
1029
|
+
* Nested describes now map to nested test classes to avoid namespace collision.
|
1030
|
+
* Using undef_method instead of remove_method to clean out inherited specs.
|
1031
|
+
* assert_raises was ignoring passed in message.
|
1032
|
+
|
1033
|
+
=== 1.4.2 / 2009-06-25
|
1034
|
+
|
1035
|
+
* 1 bug fix:
|
1036
|
+
|
1037
|
+
* Fixed info handler for systems that don't have siginfo.
|
1038
|
+
|
1039
|
+
=== 1.4.1 / 2009-06-23
|
1040
|
+
|
1041
|
+
* 1 major enhancement:
|
1042
|
+
|
1043
|
+
* Handle ^C and other fatal exceptions by failing
|
1044
|
+
|
1045
|
+
* 1 minor enhancement:
|
1046
|
+
|
1047
|
+
* Added something to catch mixed use of test/unit and minitest if $DEBUG
|
1048
|
+
|
1049
|
+
* 1 bug fix:
|
1050
|
+
|
1051
|
+
* Added SIGINFO handler for finding slow tests without verbose
|
1052
|
+
|
1053
|
+
=== 1.4.0 / 2009-06-18
|
1054
|
+
|
1055
|
+
* 5 minor enhancement:
|
1056
|
+
|
1057
|
+
* Added clarification doco.
|
1058
|
+
* Added specs and mocks to autorun.
|
1059
|
+
* Changed spec test class creation to be non-destructive.
|
1060
|
+
* Updated rakefile for new hoe capabilities.
|
1061
|
+
* describes are nestable (via subclass). before/after/def inherits, specs don't.
|
1062
|
+
|
1063
|
+
* 3 bug fixes:
|
1064
|
+
|
1065
|
+
* Fixed location on must/wont.
|
1066
|
+
* Switched to __name__ to avoid common ivar name.
|
1067
|
+
* Fixed indentation in test file (1.9).
|
1068
|
+
|
1069
|
+
=== 1.3.1 / 2009-01-20 // ruby 1.9.1-p431
|
1070
|
+
|
1071
|
+
* 1 minor enhancement:
|
1072
|
+
|
1073
|
+
* Added miniunit/autorun.rb as replacement for test/unit.rb's autorun.
|
1074
|
+
|
1075
|
+
* 16 bug fixes:
|
1076
|
+
|
1077
|
+
* 1.9 test fixes.
|
1078
|
+
* Bug fixes from nobu and akira for really odd scenarios. They run ruby funny.
|
1079
|
+
* Fixed (assert|refute)_match's argument order.
|
1080
|
+
* Fixed LocalJumpError in autorun if exception thrown before at_exit.
|
1081
|
+
* Fixed assert_in_delta (should be >=, not >).
|
1082
|
+
* Fixed assert_raises to match Modules.
|
1083
|
+
* Fixed capture_io to not dup IOs.
|
1084
|
+
* Fixed indentation of capture_io for ruby 1.9 warning.
|
1085
|
+
* Fixed location to deal better with custom assertions and load paths. (Yuki)
|
1086
|
+
* Fixed order of (must|wont)_include in MiniTest::Spec.
|
1087
|
+
* Fixed skip's backtrace.
|
1088
|
+
* Got arg order wrong in *_match in tests, message wrong as a result.
|
1089
|
+
* Made describe private. For some reason I thought that an attribute of Kernel.
|
1090
|
+
* Removed disable_autorun method, added autorun.rb instead.
|
1091
|
+
* assert_match escapes if passed string for pattern.
|
1092
|
+
* instance_of? is different from ===, use instance_of.
|
1093
|
+
|
1094
|
+
=== 1.3.0 / 2008-10-09
|
1095
|
+
|
1096
|
+
* 2 major enhancements:
|
1097
|
+
|
1098
|
+
* renamed to minitest and pulled out test/unit compatibility.
|
1099
|
+
* mini/test.rb is now minitest/unit.rb, everything else maps directly.
|
1100
|
+
|
1101
|
+
* 12 minor enhancements:
|
1102
|
+
|
1103
|
+
* assert_match now checks that act can call =~ and converts exp to a
|
1104
|
+
regexp only if needed.
|
1105
|
+
* Added assert_send... seems useless to me tho.
|
1106
|
+
* message now forces to string... ruby-core likes to pass classes and arrays :(
|
1107
|
+
* Added -v handling and switched to @verbose from $DEBUG.
|
1108
|
+
* Verbose output now includes test class name and adds a sortable running time!
|
1109
|
+
* Switched message generation into procs for message deferment.
|
1110
|
+
* Added skip and renamed fail to flunk.
|
1111
|
+
* Improved output failure messages for assert_instance_of, assert_kind_of
|
1112
|
+
* Improved output for assert_respond_to, assert_same.
|
1113
|
+
* at_exit now exits false instead of errors+failures.
|
1114
|
+
* Made the tests happier and more readable imhfo.
|
1115
|
+
* Switched index(s) == 0 to rindex(s, 0) on nobu's suggestion. Faster.
|
1116
|
+
|
1117
|
+
* 5 bug fixes:
|
1118
|
+
|
1119
|
+
* 1.9: Added encoding normalization in mu_pp.
|
1120
|
+
* 1.9: Fixed backtrace filtering (BTs are expanded now)
|
1121
|
+
* Added back exception_details to assert_raises. DOH.
|
1122
|
+
* Fixed shadowed variable in mock.rb
|
1123
|
+
* Fixed stupid muscle memory message bug in assert_send.
|
1124
|
+
|
1125
|
+
=== 1.2.1 / 2008-06-10
|
1126
|
+
|
1127
|
+
* 7 minor enhancements:
|
1128
|
+
|
1129
|
+
* Added deprecations everywhere in test/unit.
|
1130
|
+
* Added test_order to TestCase. :random on mini, :sorted on test/unit (for now).
|
1131
|
+
* Big cleanup in test/unit for rails. Thanks Jeremy Kemper!
|
1132
|
+
* Minor readability cleanup.
|
1133
|
+
* Pushed setup/run/teardown down to testcase allowing specialized testcases.
|
1134
|
+
* Removed pp. Tests run 2x faster. :/
|
1135
|
+
* Renamed deprecation methods and moved to test/unit/deprecate.rb.
|
1136
|
+
|
1137
|
+
=== 1.2.0 / 2008-06-09
|
1138
|
+
|
1139
|
+
* 2 major enhancements:
|
1140
|
+
|
1141
|
+
* Added Mini::Spec.
|
1142
|
+
* Added Mini::Mock. Thanks Steven Baker!!
|
1143
|
+
|
1144
|
+
* 23 minor enhancements:
|
1145
|
+
|
1146
|
+
* Added bin/use_miniunit to make it easy to test out miniunit.
|
1147
|
+
* Added -n filtering, thanks to Phil Hagelberg!
|
1148
|
+
* Added args argument to #run, takes ARGV from at_exit.
|
1149
|
+
* Added test name output if $DEBUG.
|
1150
|
+
* Added a refute (was deny) for every assert.
|
1151
|
+
* Added capture_io and a bunch of nice assertions from zentest.
|
1152
|
+
* Added deprecation mechanism for assert_no/not methods to test/unit/assertions.
|
1153
|
+
* Added pp output when available.
|
1154
|
+
* Added tests for all assertions. Pretty much maxed out coverage.
|
1155
|
+
* Added tests to verify consistency and good naming.
|
1156
|
+
* Aliased and deprecated all ugly assertions.
|
1157
|
+
* Cleaned out test/unit. Moved autorun there.
|
1158
|
+
* Code cleanup to make extensions easier. Thanks Chad!
|
1159
|
+
* Got spec args reversed in all but a couple assertions. Much more readable.
|
1160
|
+
* Improved error messages across the board. Adds your message to the default.
|
1161
|
+
* Moved into Mini namespace, renamed to Mini::Test and Mini::Spec.
|
1162
|
+
* Pulled the assertions into their own module...
|
1163
|
+
* Removed as much code as I could while still maintaining full functionality.
|
1164
|
+
* Moved filter_backtrace into MiniTest.
|
1165
|
+
* Removed MiniTest::Unit::run. Unnecessary.
|
1166
|
+
* Removed location_of_failure. Unnecessary.
|
1167
|
+
* Rewrote test/unit's filter_backtrace. Flog from 37.0 to 18.1
|
1168
|
+
* Removed assert_send. Google says it is never used.
|
1169
|
+
* Renamed MiniTest::Unit.autotest to #run.
|
1170
|
+
* Renamed deny to refute.
|
1171
|
+
* Rewrote some ugly/confusing default assertion messages.
|
1172
|
+
* assert_in_delta now defaults to 0.001 precision. Makes specs prettier.
|
1173
|
+
|
1174
|
+
* 9 bug fixes:
|
1175
|
+
|
1176
|
+
* Fixed assert_raises to raise outside of the inner-begin/rescue.
|
1177
|
+
* Fixed for ruby 1.9 and rubinius.
|
1178
|
+
* No longer exits 0 if exception in code PRE-test run causes early exit.
|
1179
|
+
* Removed implementors method list from mini/test.rb - too stale.
|
1180
|
+
* assert_nothing_raised takes a class as an arg. wtf? STUPID
|
1181
|
+
* ".EF" output is now unbuffered.
|
1182
|
+
* Bunch of changes to get working with rails... UGH.
|
1183
|
+
* Added stupid hacks to deal with rails not requiring their dependencies.
|
1184
|
+
* Now bitch loudly if someone defines one of my classes instead of requiring.
|
1185
|
+
* Fixed infect method to work better on 1.9.
|
1186
|
+
* Fixed all shadowed variable warnings in 1.9.
|
1187
|
+
|
1188
|
+
=== 1.1.0 / 2007-11-08
|
1189
|
+
|
1190
|
+
* 4 major enhancements:
|
1191
|
+
|
1192
|
+
* Finished writing all missing assertions.
|
1193
|
+
* Output matches original test/unit.
|
1194
|
+
* Documented every method needed by language implementor.
|
1195
|
+
* Fully switched over to self-testing setup.
|
1196
|
+
|
1197
|
+
* 2 minor enhancements:
|
1198
|
+
|
1199
|
+
* Added deny (assert ! test), our favorite extension to test/unit.
|
1200
|
+
* Added .autotest and fairly complete unit tests. (thanks Chad for help here)
|
1201
|
+
|
1202
|
+
=== 1.0.0 / 2006-10-30
|
1203
|
+
|
1204
|
+
* 1 major enhancement
|
1205
|
+
|
1206
|
+
* Birthday!
|
1207
|
+
|