ric 0.12.0 → 0.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data.tar.gz.sig +2 -0
- data/Gemfile +0 -1
- data/HISTORY.yml +2 -0
- data/LICENSE +1 -1
- data/Makefile +12 -2
- data/Manifest +1189 -4
- data/Rakefile +16 -9
- data/VERSION +1 -1
- data/ric.gemspec +31 -27
- data/vendor/bundle/ruby/2.5.0/bin/allison +27 -0
- data/vendor/bundle/ruby/2.5.0/bin/rake +27 -0
- data/vendor/bundle/ruby/2.5.0/bin/rdoc +27 -0
- data/vendor/bundle/ruby/2.5.0/bin/ri +27 -0
- data/vendor/bundle/ruby/2.5.0/bin/rubyforge +27 -0
- data/vendor/bundle/ruby/2.5.0/cache/activemodel-5.2.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/activemodel-serializers-xml-1.0.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/activeresource-5.1.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/activesupport-5.2.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/allison-2.0.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/builder-3.2.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/concurrent-ruby-1.1.5.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/echoe-4.6.6.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/i18n-1.6.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/json_pure-2.2.0.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/minitest-5.11.3.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rake-12.3.2.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rdoc-6.1.1.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/rubyforge-2.0.4.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/thread_safe-0.3.6.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/cache/tzinfo-1.2.5.gem +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/CHANGELOG.md +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/README.rdoc +264 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute.rb +248 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute/user_provided_default.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_assignment.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_methods.rb +478 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_mutation_tracker.rb +124 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set.rb +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set/builder.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set/yaml_encoder.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attributes.rb +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/callbacks.rb +153 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/conversion.rb +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/dirty.rb +343 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/errors.rb +517 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/forbidden_attributes_protection.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/gem_version.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/lint.rb +118 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/locale/en.yml +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/model.rb +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/naming.rb +318 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/railtie.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/secure_password.rb +129 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/serialization.rb +192 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/serializers/json.rb +146 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/translation.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type.rb +53 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/big_integer.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/binary.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/boolean.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/date.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/date_time.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/decimal.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/float.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/accepts_multiparameter_time.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/mutable.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/numeric.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/timezone.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/immutable_string.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/integer.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/registry.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/string.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/time.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/value.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations.rb +439 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/absence.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/acceptance.rb +106 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/callbacks.rb +122 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/clusivity.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/confirmation.rb +80 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/exclusion.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/format.rb +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/helper_methods.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/inclusion.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/length.rb +129 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/numericality.rb +189 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/presence.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/validates.rb +174 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/with.rb +147 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validator.rb +183 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/version.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/CONTRIBUTING.md +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/Gemfile +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/README.md +89 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/Rakefile +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/activemodel-serializers-xml.gemspec +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/version.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/xml.rb +238 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_record/serializers/xml_serializer.rb +194 -0
- data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/activemodel-serializers-xml.rb +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/README.rdoc +285 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/active_job_serializer.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations.rb +175 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/association.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/belongs_to.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/has_many.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/has_one.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/base.rb +1695 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/callbacks.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/collection.rb +94 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/connection.rb +294 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/custom_methods.rb +129 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/exceptions.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats/json_format.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats/xml_format.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/http_mock.rb +373 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/log_subscriber.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/observing.rb +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/railtie.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/reflection.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/schema.rb +59 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/singleton.rb +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/threadsafe_attributes.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/validations.rb +176 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/version.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/activeresource.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/CHANGELOG.md +602 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/README.rdoc +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support.rb +95 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/all.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/array_inquirer.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/backtrace_cleaner.rb +105 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/benchmarkable.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/builder.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache.rb +808 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/file_store.rb +196 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/mem_cache_store.rb +207 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/memory_store.rb +169 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/null_store.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/redis_cache_store.rb +461 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/strategy/local_cache.rb +194 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/callbacks.rb +845 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concern.rb +148 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concurrency/load_interlock_aware_monitor.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concurrency/share_lock.rb +227 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/configurable.rb +150 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/access.rb +92 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/conversions.rb +213 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/prepend_and_append.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/benchmark.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/attribute.rb +146 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/subclasses.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/blank.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/calculations.rb +145 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/conversions.rb +96 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/zones.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/calculations.rb +374 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/blank.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/calculations.rb +211 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/conversions.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest/uuid.rb +53 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/enumerable.rb +164 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file/atomic.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/compact.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/conversions.rb +263 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/except.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/keys.rb +172 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/slice.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/transform_values.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/time.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/agnostics.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/load_error.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/marshal.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attr_internal.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors.rb +215 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +150 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/concerning.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/delegation.rb +287 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/introspection.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/reachable.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/redefine_method.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/remove_method.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/name_error.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/bytes.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/conversions.rb +140 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/inquiry.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/time.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/acts_like.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/blank.rb +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/deep_dup.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/duplicable.rb +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/inclusion.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/instance_variables.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/json.rb +227 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_query.rb +89 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/try.rb +148 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/with_options.rb +82 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/compare_range.rb +61 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/conversions.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/each.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/include_range.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/include_time_with_zone.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/overlaps.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/regexp.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/securerandom.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/access.rb +106 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/conversions.rb +59 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/filters.rb +104 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/indent.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inflections.rb +254 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inquiry.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/multibyte.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/output_safety.rb +258 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/strip.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/zones.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/calculations.rb +315 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/compatibility.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/conversions.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/zones.rb +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/uri.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/current_attributes.rb +195 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies.rb +753 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies/autoload.rb +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies/interlock.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/behaviors.rb +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/constant_accessor.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/instance_delegator.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/method_wrappers.rb +90 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/proxy_wrappers.rb +154 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/reporting.rb +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/descendants_tracker.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/digest.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration.rb +432 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration/iso8601_parser.rb +125 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration/iso8601_serializer.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/encrypted_configuration.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/encrypted_file.rb +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/evented_file_update_checker.rb +205 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/execution_wrapper.rb +128 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/executor.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/file_update_checker.rb +163 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/gem_version.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/gzip.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/hash_with_indifferent_access.rb +395 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/i18n.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/i18n_railtie.rb +118 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflections.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/inflections.rb +260 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/methods.rb +410 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/transliterate.rb +118 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json/decoding.rb +76 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json/encoding.rb +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/key_generator.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/locale/en.yml +135 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/log_subscriber.rb +112 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger.rb +108 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger_silence.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger_thread_safe_level.rb +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/message_encryptor.rb +229 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/message_verifier.rb +205 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/metadata.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/rotation_configuration.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/rotator.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte/chars.rb +235 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte/unicode.rb +394 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications.rb +216 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications/fanout.rb +159 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications/instrumenter.rb +93 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper.rb +371 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_converter.rb +184 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_delimited_converter.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_human_size_converter.rb +59 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_percentage_converter.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_rounded_converter.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/rounding_helper.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/option_merger.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/ordered_hash.rb +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/ordered_options.rb +85 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/per_thread_registry.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/proxy_object.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/rails.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/railtie.rb +80 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/reloader.rb +131 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/rescuable.rb +174 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/security_utils.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/string_inquirer.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/subscriber.rb +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/tagged_logging.rb +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/test_case.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/assertions.rb +214 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/autorun.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/constant_lookup.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/declarative.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/deprecation.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/file_fixtures.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/isolation.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/method_call_assertions.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/setup_and_teardown.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/stream.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/tagged_logging.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/time_helpers.rb +200 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/time.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/time_with_zone.rb +551 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/values/time_zone.rb +565 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/version.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini.rb +209 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/jdom.rb +183 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/libxml.rb +80 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/rexml.rb +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/CHANGELOG +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/LICENSE +184 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/Manifest +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/README +67 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/allison.gemspec +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/bin/allison +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/BODY +570 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/CLASS_INDEX +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/CLASS_PAGE +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FILE_INDEX +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FILE_PAGE +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FONTS +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FR_INDEX_BODY +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/INDEX +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/JAVASCRIPT +316 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/METHOD_INDEX +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/METHOD_LIST +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/SRC_PAGE +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/STYLE +320 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/Rakefile +147 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/rdoc_patch.rb +252 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/rdoc_patch_test.rb +95 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.css +314 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.js +316 -0
- data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.rb +276 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/CHANGES +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/README.md +258 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/Rakefile +195 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/jamis.rb +591 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-1.2.4.rdoc +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-2.0.0.rdoc +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-2.1.1.rdoc +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/blankslate.rb +137 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/blankslate.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/version.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xchar.rb +197 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlbase.rb +199 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlevents.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlmarkup.rb +339 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/publish.rake +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/tags.rake +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/testing.rake +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/helper.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/performance.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/preload.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_blankslate.rb +213 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_eventbuilder.rb +150 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_markupbuilder.rb +611 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_method_caching.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_namecollision.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_xchar.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/CHANGELOG.md +478 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/Gemfile +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/LICENSE.md +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/README.md +381 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/Rakefile +327 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +307 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent-ruby.rb +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb +587 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/array.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb +459 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atom.rb +222 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_boolean.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_fixnum.rb +143 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_markable_reference.rb +164 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_reference.rb +204 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/count_down_latch.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/event.rb +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_count_down_latch.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_count_down_latch.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/read_write_lock.rb +254 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/semaphore.rb +145 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/thread_local_var.rb +104 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/mutex_atomic.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomics.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/lock_free_stack.rb +158 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/deprecation.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/dereferenceable.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/logging.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/obligation.rb +220 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/observable.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concurrent_ruby.jar +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/configuration.rb +184 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/constants.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/delay.rb +199 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/errors.rb +69 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/exchanger.rb +352 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/abstract_executor_service.rb +134 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/cached_thread_pool.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/executor_service.rb +185 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/immediate_executor.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_executor_service.rb +91 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_thread_pool_executor.rb +123 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_executor_service.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/safe_task_executor.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serial_executor_service.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/simple_executor_service.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/single_thread_executor.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/thread_pool_executor.rb +87 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/timer_set.rb +173 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executors.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/future.rb +141 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/hash.rb +59 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/immutable_struct.rb +93 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/ivar.rb +207 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/map.rb +337 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/maybe.rb +229 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/mutable_struct.rb +229 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/mvar.rb +242 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/options.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb +579 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb +2167 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/re_include.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/scheduled_task.rb +318 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/set.rb +66 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/settable_struct.rb +129 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_object.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_struct.rb +160 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/condition.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_object.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lock.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lockable_object.rb +74 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mri_object.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mutex_lockable_object.rb +76 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/object.rb +183 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_object.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/truffleruby_object.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/volatile.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/adder.rb +74 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/data_structures.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/striped64.rb +246 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/volatile.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/timer_task.rb +334 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/tuple.rb +86 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/tvar.rb +258 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/at_exit.rb +97 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/engine.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/monotonic_time.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_extension_loader.rb +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_integer.rb +53 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/processor_counter.rb +158 -0
- data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/version.rb +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/CHANGELOG +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/LICENSE +184 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/Manifest +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/README.rdoc +97 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/Rakefile +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/echoe.gemspec +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/echoe.pem +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe.rb +793 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/extensions.rb +61 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/platform.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/rubygems.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sys.rb +209 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/README.md +125 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n.rb +398 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/base.rb +284 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cache.rb +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cache_file.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cascade.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/chain.rb +127 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/fallbacks.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/flatten.rb +115 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/gettext.rb +85 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/interpolation_compiler.rb +123 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/key_value.rb +206 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/memoize.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/metadata.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/pluralization.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/simple.rb +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/transliterator.rb +108 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/config.rb +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/core_ext/hash.rb +47 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/exceptions.rb +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext/helpers.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext/po_parser.rb +329 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/interpolate/ruby.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/fallbacks.rb +96 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/parents.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/simple.rb +39 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/middleware.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/basics.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/defaults.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/interpolation.rb +159 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/link.rb +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/date.rb +117 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/date_time.rb +103 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/procs.rb +116 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/time.rb +103 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/lookup.rb +81 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/pluralization.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/procs.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/version.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/CHANGES.md +391 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/Gemfile +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/README-json-jruby.md +33 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/README.md +409 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/Rakefile +408 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/VERSION +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/fbuffer/fbuffer.h +187 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/depend +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/extconf.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/generator.c +1444 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/generator.h +171 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/depend +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/extconf.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.c +2131 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.h +91 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.rl +891 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/extconf.rb +2 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/install.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/ByteListTranscoder.java +166 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Generator.java +443 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorMethods.java +231 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorService.java +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorState.java +490 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/OptionsReader.java +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Parser.java +2362 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Parser.rl +893 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/ParserService.java +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/RuntimeInfo.java +116 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/StringDecoder.java +166 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/StringEncoder.java +111 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Utils.java +88 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json-java.gemspec +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json.gemspec +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json_pure.gemspec +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/bigdecimal.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/complex.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/core.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/date.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/date_time.rb +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/exception.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/range.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/rational.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/regexp.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/set.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/struct.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/symbol.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/time.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/common.rb +456 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/ext.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/generic_object.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure/generator.rb +458 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure/parser.rb +311 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/references/rfc7159.txt +899 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail10.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail11.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail12.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail13.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail14.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail18.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail19.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail2.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail20.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail21.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail22.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail23.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail24.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail25.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail27.json +2 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail28.json +2 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail3.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail4.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail5.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail6.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail7.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail8.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail9.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/obsolete_fail1.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass1.json +56 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass15.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass16.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass17.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass2.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass26.json +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass3.json +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_addition_test.rb +203 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_common_interface_test.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_encoding_test.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_ext_parser_test.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_fixtures_test.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_generator_test.rb +377 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_generic_object_test.rb +82 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_parser_test.rb +472 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_string_matching_test.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/test_helper.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/diff.sh +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/fuzz.rb +131 -0
- data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/server.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/History.rdoc +1310 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/Manifest.txt +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/README.rdoc +746 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/Rakefile +86 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/design_rationale.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/hoe/minitest.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest.rb +987 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/assertions.rb +693 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/autorun.rb +13 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/benchmark.rb +455 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/expectations.rb +284 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/hell.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/mock.rb +240 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/parallel.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/pride.rb +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/pride_plugin.rb +142 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/spec.rb +331 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/test.rb +220 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/unit.rb +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/metametameta.rb +102 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_benchmark.rb +137 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_mock.rb +874 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_reporter.rb +299 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb +987 -0
- data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_test.rb +2142 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/CONTRIBUTING.rdoc +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/Gemfile +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/History.rdoc +2333 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/README.rdoc +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/Rakefile +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/bundle +105 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/console +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rake +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rdoc +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rubocop +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/setup +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/exe/rake +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/application.rb +824 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_utils.rb +137 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_utils_ext.rb +145 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/packagetask.rb +207 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task.rb +413 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_manager.rb +323 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/testtask.rb +224 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/rake.gemspec +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/CONTRIBUTING.rdoc +220 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/CVE-2013-0256.rdoc +49 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/ExampleMarkdown.md +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/ExampleRDoc.rdoc +208 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/Gemfile +3 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/History.rdoc +1666 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/LEGAL.rdoc +50 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/LICENSE.rdoc +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/README.rdoc +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/RI.rdoc +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/Rakefile +91 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/TODO.rdoc +59 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/appveyor.yml +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/bin/console +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/bin/setup +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/exe/rdoc +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/exe/ri +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc.rb +180 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/alias.rb +112 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/anon_class.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/any_method.rb +316 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/attr.rb +176 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/class_module.rb +802 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/code_object.rb +421 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/code_objects.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/comment.rb +239 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/constant.rb +187 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/context.rb +1258 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/context/section.rb +245 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/cross_reference.rb +202 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/encoding.rb +136 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/erb_partial.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/erbio.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/extend.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator.rb +51 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/darkfish.rb +790 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/json_index.rb +300 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/markup.rb +160 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot.rb +98 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/message_extractor.rb +68 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/po.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/po_entry.rb +141 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/ri.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_head.rhtml +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/class.rhtml +172 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/css/fonts.css +167 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/css/rdoc.css +590 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/arrow_up.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/index.rhtml +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/darkfish.js +161 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/jquery.js +4 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/search.js +109 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/page.rhtml +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/json_index/js/navigation.js +141 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/json_index/js/searcher.js +229 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ghost_method.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n/locale.rb +102 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n/text.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/include.rb +10 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/known_classes.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown.kpeg +1219 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown/entities.rb +2132 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown/literals.kpeg +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup.rb +868 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attr_changer.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attr_span.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attribute_manager.rb +344 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attributes.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/blank_line.rb +28 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/block_quote.rb +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/document.rb +165 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/formatter.rb +266 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/formatter_test_case.rb +764 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/hard_break.rb +32 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/heading.rb +79 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/include.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/indented_paragraph.rb +48 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/list.rb +102 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/list_item.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/paragraph.rb +29 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/parser.rb +559 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/pre_process.rb +296 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/raw.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/regexp_handling.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/rule.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/text_formatter_test_case.rb +115 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_ansi.rb +94 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_bs.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html.rb +404 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html_crossref.rb +164 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html_snippet.rb +285 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_joined_paragraph.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_label.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_markdown.rb +192 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_rdoc.rb +334 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_table_of_contents.rb +88 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_test.rb +70 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_tt_only.rb +121 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/verbatim.rb +84 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/meta_method.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/method_attr.rb +419 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/mixin.rb +121 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/normal_class.rb +93 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/normal_module.rb +74 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/options.rb +1235 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser.rb +277 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/c.rb +1269 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/changelog.rb +204 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/markdown.rb +24 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/rd.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ripper_state_lex.rb +589 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ruby.rb +2317 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ruby_tools.rb +167 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/simple.rb +61 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/text.rb +12 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd.rb +100 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/block_parser.ry +639 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/inline.rb +72 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/inline_parser.ry +593 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rdoc.rb +566 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/require.rb +52 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/driver.rb +1568 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/formatter.rb +6 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/paths.rb +185 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/store.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/task.rb +71 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rubygems_hook.rb +246 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/servlet.rb +443 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/single_class.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats.rb +462 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/normal.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/quiet.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/verbose.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/store.rb +987 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/task.rb +329 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/text.rb +298 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/token_stream.rb +114 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/tom_doc.rb +264 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/top_level.rb +289 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/version.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/rdoc.gemspec +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/History.txt +128 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/Manifest.txt +9 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/README.txt +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/Rakefile +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/bin/rubyforge +222 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/lib/rubyforge.rb +389 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/lib/rubyforge/client.rb +124 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/test/test_rubyforge.rb +329 -0
- data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/test/test_rubyforge_client.rb +57 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/Gemfile +20 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/LICENSE +144 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/README.md +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/Rakefile +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
- data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/CHANGES.md +786 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/LICENSE +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/README.md +151 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/Rakefile +107 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo.rb +40 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb +196 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb +31 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb +42 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_timezone.rb +135 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb +190 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone.rb +58 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone_info.rb +55 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/info_timezone.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone.rb +63 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone_info.rb +26 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb +77 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_core_support.rb +146 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_country_info.rb +74 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb +136 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/time_or_datetime.rb +340 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb +669 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_definition.rb +36 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb +54 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_info.rb +30 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_offset.rb +101 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_period.rb +245 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_proxy.rb +105 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition.rb +130 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition_definition.rb +104 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/transition_data_timezone_info.rb +274 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_country_info.rb +37 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb +488 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_timezone_info.rb +296 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country.rb +234 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_index_definition.rb +69 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_info.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_timezone.rb +173 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_source.rb +218 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_timezone.rb +99 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_timezone_info.rb +18 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_info_timezone.rb +34 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_linked_timezone.rb +155 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_linked_timezone_info.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_offset_rationals.rb +23 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_core_support.rb +168 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_country_info.rb +110 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_data_source.rb +143 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_time_or_datetime.rb +654 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone.rb +1350 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_definition.rb +113 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_index_definition.rb +73 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_info.rb +11 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_london.rb +143 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_melbourne.rb +142 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_new_york.rb +142 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_offset.rb +126 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_period.rb +555 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_proxy.rb +136 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_transition.rb +366 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_transition_definition.rb +295 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_utc.rb +27 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_transition_data_timezone_info.rb +423 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_country_info.rb +78 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_data_source.rb +1195 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_timezone_info.rb +1232 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/test_utils.rb +163 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all_ruby.rb +5 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all_zoneinfo.rb +7 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data.rb +8 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/version.rb +14 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/America/New_York +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Australia/Melbourne +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/EST +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Etc/UTC +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Amsterdam +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Andorra +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/London +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Paris +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Prague +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Factory +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/iso3166.tab +275 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/leapseconds +61 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/posix/Europe/London +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/posixrules +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/right/Europe/London +0 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/zone.tab +439 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/zone1970.tab +369 -0
- data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/tzinfo.gemspec +21 -0
- data/vendor/bundle/ruby/2.5.0/specifications/activemodel-5.2.3.gemspec +34 -0
- data/vendor/bundle/ruby/2.5.0/specifications/activemodel-serializers-xml-1.0.2.gemspec +46 -0
- data/vendor/bundle/ruby/2.5.0/specifications/activeresource-5.1.0.gemspec +48 -0
- data/vendor/bundle/ruby/2.5.0/specifications/activesupport-5.2.3.gemspec +44 -0
- data/vendor/bundle/ruby/2.5.0/specifications/allison-2.0.3.gemspec +23 -0
- data/vendor/bundle/ruby/2.5.0/specifications/builder-3.2.3.gemspec +21 -0
- data/vendor/bundle/ruby/2.5.0/specifications/concurrent-ruby-1.1.5.gemspec +24 -0
- data/vendor/bundle/ruby/2.5.0/specifications/echoe-4.6.6.gemspec +46 -0
- data/vendor/bundle/ruby/2.5.0/specifications/i18n-1.6.0.gemspec +35 -0
- data/vendor/bundle/ruby/2.5.0/specifications/json_pure-2.2.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.5.0/specifications/minitest-5.11.3.gemspec +39 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rake-12.3.2.gemspec +49 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rdoc-6.1.1.gemspec +50 -0
- data/vendor/bundle/ruby/2.5.0/specifications/rubyforge-2.0.4.gemspec +36 -0
- data/vendor/bundle/ruby/2.5.0/specifications/thread_safe-0.3.6.gemspec +38 -0
- data/vendor/bundle/ruby/2.5.0/specifications/tzinfo-1.2.5.gemspec +37 -0
- metadata +1283 -91
- metadata.gz.sig +2 -0
- data/sbin/rake-deploy1.sh +0 -9
- data/sbin/rake-deploy2.sh +0 -11
- data/sbin/reboot.rb +0 -3
- data/sbin/ric_reboot.rb +0 -3
@@ -0,0 +1,1666 @@
|
|
1
|
+
=== 5.1.0 / 2017-02-24
|
2
|
+
|
3
|
+
* Bug fixes
|
4
|
+
* Fix an issue that rdoc fails when running on Windows with RUBYOPT=-U.
|
5
|
+
PR #430 by Toshihiko Ichida
|
6
|
+
|
7
|
+
* Minor enhancements
|
8
|
+
* Parse ruby 2.1 <visibility> def. PR #436 by Akira Matsuda.
|
9
|
+
* Suppress warnings in eval. PR #440 by Nobuyoshi Nakada.
|
10
|
+
|
11
|
+
=== 5.0.0 / 2016-11-05
|
12
|
+
|
13
|
+
* Major enhancements
|
14
|
+
* Cleanup deprecated code targeted Ruby 1.8
|
15
|
+
|
16
|
+
* Bug fixes
|
17
|
+
* Ensure badge data is included in result of JsonIndex template.
|
18
|
+
* Ensure items in the nil section are displayed in HTML output. Issue #399
|
19
|
+
by Daniel Svensson.
|
20
|
+
* Parse rb_intern_const correctly in C. PR #381 by Sho Hashimoto.
|
21
|
+
* Fix broken assets caused by #335 when serving ri. PR #360 by Alex Wood.
|
22
|
+
* Don't try to parse svg files. Issue #350 by Sigurd Svela.
|
23
|
+
|
24
|
+
* Minor enhancements
|
25
|
+
* Improve class name expansion/resolution in ri. PR #400 by NARUSE, Yui
|
26
|
+
* Improve performance of document generation. PR #397 by Yusuke Endoh.
|
27
|
+
|
28
|
+
=== 4.3.0 / 2016-11-04
|
29
|
+
|
30
|
+
* Minor enhancements
|
31
|
+
* Removed json dependency for Ruby 2.4.0
|
32
|
+
* End to support Ruby 1.8.x
|
33
|
+
|
34
|
+
=== 4.2.2 / 2016-02-09
|
35
|
+
|
36
|
+
* Bug fixes
|
37
|
+
* Include lib/rdoc/generator/pot/* in built gem
|
38
|
+
|
39
|
+
|
40
|
+
=== 4.2.1 / 2015-12-22
|
41
|
+
|
42
|
+
* Bug fixes
|
43
|
+
* Fixed infinite loop with CR #339 by @nobu
|
44
|
+
* Allow rdoc run with --disable-gems #340 by @luizluca
|
45
|
+
* Don't store full path in GZipped js files #341 by @voxik
|
46
|
+
* Fix relative path names for drive letters #367 by @nobu
|
47
|
+
* Fix for valid syntax `class C end` parsing #368 by @nobu
|
48
|
+
|
49
|
+
|
50
|
+
=== 4.2.0 / 2014-12-06
|
51
|
+
|
52
|
+
* Major enhancements
|
53
|
+
* RDoc can now produce translation files for use with gettext. See
|
54
|
+
RDoc::Generator::POT for a workflow for creating translations of your
|
55
|
+
documentation. Pull request #254 by Kouhei Sutou.
|
56
|
+
|
57
|
+
* Minor enhancements
|
58
|
+
* RDoc now allows any single-word macro before a C method implementation.
|
59
|
+
Issue #722 by Hanmac.
|
60
|
+
* Now :all is a synonym for :private for RDoc::Options#visibility= to match
|
61
|
+
the --all command line option. Pull request #276 by Zachary Scott.
|
62
|
+
* Running rake for the first time now installs racc. Pull request #285 by
|
63
|
+
Kouhei Sutou.
|
64
|
+
* Added <code>-h</code> flag to also display help. Issue #300 by Ryan Davis
|
65
|
+
* search_index.js is now loaded asynchronously for improved performance.
|
66
|
+
* Allow +X::Y+ as typewriter text. Issue #319, pull request #322 by Jeremy
|
67
|
+
Evans.
|
68
|
+
* Added RDoc::RI::Task for building ri data easily through rake. Pull
|
69
|
+
request #332 by Zachary Scott.
|
70
|
+
* A gzipped search index is generated for servers configured to use
|
71
|
+
precompressed files. Pull request #334 by Zachary Scott.
|
72
|
+
* CSS files now live under /css relative to the document root. Pull request
|
73
|
+
#335 by Zachary Scott.
|
74
|
+
* Improved detection of valid ruby in verbatim sections. Pull request #333
|
75
|
+
by Jeremy Evans.
|
76
|
+
|
77
|
+
* Bug fixes
|
78
|
+
* Fixed HTML labels for cross-browser compatibility. This breaks existing
|
79
|
+
links but enables cross-browser compatibility. Pull request #330 by Jens
|
80
|
+
Will.
|
81
|
+
* RDoc handles ASCII-incompatible encodings now. An encoding hint may need
|
82
|
+
to be added to the file for RDoc to produce correct output, though.
|
83
|
+
Issue #288 by Manuel Meurer.
|
84
|
+
* Fixed height recalculation issues when headings are hovered. Issue #289
|
85
|
+
by Dietmar H. Büto.
|
86
|
+
* RDoc now ignores its own output directories. Pull Request #306 by
|
87
|
+
Hsing-Hui Hsu, bug #305 by Ryan Davis.
|
88
|
+
* Fixed RDoc::Task no longer uselessly builds documentation when generating
|
89
|
+
non-HTML output. Bug #307 by Christina Thompson, pull request #308 by
|
90
|
+
Hsing-Hui Hsu
|
91
|
+
* Added pointer to font copyright and license information to LEGAL.rdoc.
|
92
|
+
Issue #290 by Christian Hofstaedtler.
|
93
|
+
* Fixed RDoc::Context#<=> for ruby trunk. Issue #284 by Hanmac, pull
|
94
|
+
request #287 by Aaron Patterson
|
95
|
+
* Tests no longer create directories inside test/. Pull request #286 by
|
96
|
+
Kouhei Sutou.
|
97
|
+
* Fixed documentation example in RDoc::Markup. Pull request #292 by Gregory
|
98
|
+
Brown.
|
99
|
+
* Applied typo fix to RDoc::Markup. Pull request #297 by @montanalow
|
100
|
+
* Fixed pretty_print for RDoc::MethodAttr with an alias. Pull request #324
|
101
|
+
by Hsing-Hui Hsu.
|
102
|
+
* Fixed lexing of %w"". Issue #315 by Thierry Lambert, pull request #323 by
|
103
|
+
Jeremy Evans.
|
104
|
+
* RDoc::TokenStream now removes nil tokens. Pull request #318 by Calle
|
105
|
+
Erlandsson.
|
106
|
+
* Fixed footer links to rubyforge and darkfish. Pull request #328 by
|
107
|
+
@blackwinter
|
108
|
+
* Fixed page-top link. Pull request #329 by @blackwinter
|
109
|
+
* Minitest gem activation failures are now ignored during test startup.
|
110
|
+
Issue #313 by Vít Ondruch.
|
111
|
+
* Fixed error when generating documentation from singleton classes. Issue
|
112
|
+
#311 by Vít Ondruch.
|
113
|
+
* Splat and keyword params can now be detected for documentation
|
114
|
+
completeness. Issue #321 Tom Kadwill.
|
115
|
+
* Standalone anchors in markdown documents are no longer escaped. Issue
|
116
|
+
#312 by Scott Thompson.
|
117
|
+
* Fixed RegExp matching stack overflow on Ruby 1.8.7. Issue #327 by sshao.
|
118
|
+
|
119
|
+
=== 4.1.2 / 2014-09-05
|
120
|
+
|
121
|
+
* Bug fixes
|
122
|
+
* Updated vendored jQuery to 1.6.4. Bug ruby/ruby#711 by @neuralme
|
123
|
+
|
124
|
+
=== 4.1.1 / 2014-01-09
|
125
|
+
|
126
|
+
* Bug fixes
|
127
|
+
* Fixed reporting of undocumented method parameters when including when
|
128
|
+
yield and &block are present. Pull request #281 by Victor Bilyk.
|
129
|
+
* Fixed merging of rd-style and hash-style comments at the top of a file.
|
130
|
+
Bug #266 by Zachary Scott.
|
131
|
+
* Fixed Document-attr in the C parser. Bug #271 by Hanmac.
|
132
|
+
* Removed duplicated condition in superclass fixup. Pull request #282 by
|
133
|
+
Benoit Daloze.
|
134
|
+
|
135
|
+
=== 4.1.0 / 2013-12-26
|
136
|
+
|
137
|
+
* Notable changes
|
138
|
+
* Improved accessibility of HTML output. Accessibility review was provided
|
139
|
+
by:
|
140
|
+
|
141
|
+
Techvision – http://www.techvision.net.in
|
142
|
+
|
143
|
+
The accessibility consultants in Pune, India
|
144
|
+
|
145
|
+
* The look of RDoc has been updated.
|
146
|
+
|
147
|
+
* Minor enhancements
|
148
|
+
* RDoc can now link to [], []=, << and >> methods. Pull request #202 by
|
149
|
+
Jeremy Evans, Bug # 191 by by Zachary Scott.
|
150
|
+
* Added RDoc::Options#output_decoration which controls header labels for
|
151
|
+
HTML output. Pull Request #199 by Zachary Scott.
|
152
|
+
* Added --template-stylesheets options to RDoc to allow specification of
|
153
|
+
alternate stylesheets. Pull request #205 by Zachary Scott.
|
154
|
+
* Improved performance of the Markdown and RD parsers. Pull request #217 by
|
155
|
+
Ryan Davis.
|
156
|
+
* <code>rdoc -v</code> now prints the version instead of enabling verbose
|
157
|
+
mode. Pull request #201 by Lee Jarvis.
|
158
|
+
* Running <code>rake newb</code> now automatically installs development
|
159
|
+
dependencies if the parser files haven't been built. Pull request #235 by
|
160
|
+
Kouhei Sutou.
|
161
|
+
* Moved old DEVELOPERS file to CONTRIBUTING to match github conventions.
|
162
|
+
* TomDoc output now has a "Returns" heading. Issue #234 by Brian Henderson
|
163
|
+
* Metaprogrammed methods can now use the :args: directive in addition to the
|
164
|
+
:call-seq: directive. Issue #236 by Mike Moore.
|
165
|
+
* Sections can be linked to using "@" like labels. If a section and a label
|
166
|
+
have the same name the section will be preferred. Issue #233 by Brian
|
167
|
+
Henderson.
|
168
|
+
* Files that come with a template are hard-linked to save space. Issue #186
|
169
|
+
by Vít Ondruch.
|
170
|
+
|
171
|
+
* Bug fixes
|
172
|
+
* Applied typo fixes by @dvsuresh from ruby/ruby@2c5dcdf
|
173
|
+
* Restored behavior of --no-pager alias -T. Pull request #223 by ruafozy.
|
174
|
+
* Fixed extra whitespace output in the rdoc coverage report. Bug #210 by
|
175
|
+
Ryan Davis.
|
176
|
+
* RDoc no longer documents its timestamp file when run on an empty
|
177
|
+
directory. Bug #212 by Rainer Keller
|
178
|
+
* HTML escape method names in the table of contents. Bug #219 by Akinori
|
179
|
+
MUSHA.
|
180
|
+
* Character literals <code>?h</code> now create a new token type to prevent
|
181
|
+
loss of the "?" in output. Bug #220 by Vipul A M.
|
182
|
+
* When looking up a method that does not exist, ri escapes the regular
|
183
|
+
expression for fallback searches. Bug #227 by Aaron Patterson.
|
184
|
+
* The ri generator now writes the class method data after +module_function+.
|
185
|
+
Bug #222 by Zachary Scott, Ruby bug #8225 by David Unric.
|
186
|
+
* ri now handles missing ri data files. Bug #222 by Zachary Scott, Ruby bug
|
187
|
+
#8225 by David Unric.
|
188
|
+
* Added TomDoc to the supported markup formats section of rdoc --help.
|
189
|
+
Bug #214 by Ryan Davis.
|
190
|
+
* Fixed documented? check for classes which indicated incorrect 100%
|
191
|
+
coverage. Bug #211 by Ryan Davis.
|
192
|
+
* An :enddoc: at the top level stops all further parsing. Bug #213 by Ryan
|
193
|
+
Davis.
|
194
|
+
* Improved handling of multiline call-seq. Bug #207 by Erik Hollensbe.
|
195
|
+
* Fixed text that is missing whitespace for TomDoc. Bug #248 by Noel Cower.
|
196
|
+
* The RDoc methods now store the method they are aliased to. Bug #206 by
|
197
|
+
Jeremy Stephens.
|
198
|
+
* Fixed parsing of multiple methods on the same line. Bug #221 by derula.
|
199
|
+
* Fixed missing support for images in markdown. Bug #241, pull request #242
|
200
|
+
by Zachary Scott.
|
201
|
+
* The markdown image fix also added support for images via an rdoc-image:
|
202
|
+
scheme. See RDoc::Markup@Links for details. Issue #93 by Tim Pease.
|
203
|
+
* Ignore empty call-seq for methods. Improved deduplication of C methods
|
204
|
+
sharing the same C function. This allows the method heading to show
|
205
|
+
up correctly for String#== and #===. Bug #244 by Neurogami.
|
206
|
+
* RDoc no longer adds "http://" to urls without a scheme. Bug #208 by
|
207
|
+
Zachary Scott.
|
208
|
+
* Improved the error message in the RDoc server when ri data is missing.
|
209
|
+
Bug #243, Pull Request #249 by Tadas Tamošauskas.
|
210
|
+
* Support ruby 2.0 hash syntax for keywords. Bug #256 by diogocsc.
|
211
|
+
* Prevent \\<tag> from escaping the tag in RDoc markup. (\<tag> still
|
212
|
+
escapes the tag.) Bug #251 by Pablo Bianciotto.
|
213
|
+
* Fixed lexing of escaped characters in strings which could cause
|
214
|
+
duplication of the final characters in source code view. Bug #252 by Mike
|
215
|
+
Stok.
|
216
|
+
* Disallow invalid tab widths for -w option. Bug reported by Charles
|
217
|
+
Hixson.
|
218
|
+
* rb_file_const() now adds constants to File::Constants when used outside
|
219
|
+
file.c. Fixes missing File::Constants::FNM_* constants in ruby.
|
220
|
+
* Fixed handling of :markup: when the file parser is unknown. Issue #262 by
|
221
|
+
Brian Henderson, pull request #269 by Rein Henrichs.
|
222
|
+
* Regexp options are no longer stripped in HTML output. Bug #259 by Zachary
|
223
|
+
Scott, Pull request #265 by Rein Henrichs
|
224
|
+
|
225
|
+
=== 4.0.1 / 2013-03-27
|
226
|
+
|
227
|
+
* Bug fixes
|
228
|
+
* RDoc::Options parser should rescue from OptionParser::ParseError.
|
229
|
+
* Updated example of RDoc::Options to include reopening RDoc::Options.
|
230
|
+
Pointed out by Michael Granger
|
231
|
+
* Moved RubyGems documentation installed message into RDoc hook. For
|
232
|
+
RubyGems bug #469 by Jeff Sandberg
|
233
|
+
* An Error is now raised when a heredoc is not terminated. Fixes exceptions
|
234
|
+
when processing comment blocks. Reported by darix
|
235
|
+
* rdoc --quiet --no-ignore-invalid now exits for invalid options. Pull
|
236
|
+
request #192 by Jeremy Evans
|
237
|
+
* RDoc::Parser::C no longer ignores a (METHOD) cast in rb_define_method.
|
238
|
+
Pull request #184 by Carlos Agarie
|
239
|
+
* RDoc::Servlet no longer ignores extra directories from -d. Pull request
|
240
|
+
#173 by Thomas Leitner
|
241
|
+
* Fixed `rdoc --ri-site`. Bug #193 by Michal Papis.
|
242
|
+
* RDoc no longer attempts to parse binary files. Bug #189 by postmodern,
|
243
|
+
Bug #190 by Christoffer Lervåg, Bug #195 by Aaron Patterson
|
244
|
+
* `rdoc --pipe` output now contains <code></code> for markdown compliance.
|
245
|
+
* RDoc no longer leaves emacs-style modelines in .txt, .md or .rd files.
|
246
|
+
Bug #178 by Zachary Scott
|
247
|
+
* RDoc no longer puts raw markup in HTML output for markdown input. Bug
|
248
|
+
#204 by Erik Hollensbe
|
249
|
+
* Code objects with nodoc are no longer included in the ri store. Bug #177
|
250
|
+
by Thomas Leitner.
|
251
|
+
* Text#snippet now creates a RDoc::Markup::ToHtmlSnippet correctly.
|
252
|
+
* The C parser now de-duplicates call-seq if the same C function is used for
|
253
|
+
multiple method names. Bug #203 by Pete Higgins
|
254
|
+
|
255
|
+
=== 4.0.0 / 2013-02-24
|
256
|
+
|
257
|
+
RDoc 4.0 includes several new features and several breaking changes. The
|
258
|
+
changes should not affect users of `rdoc` or `ri`.
|
259
|
+
|
260
|
+
Notable feature additions are markdown support and an WEBrick servlet that can
|
261
|
+
serve HTML from an ri store. (This means that RubyGems 2.0+ no longer needs
|
262
|
+
to build HTML documentation when installing gems.)
|
263
|
+
|
264
|
+
Changes since RDoc 3.12.1:
|
265
|
+
|
266
|
+
* Breaking changes
|
267
|
+
* The default output encoding for RDoc is now UTF-8. Previously RDoc used
|
268
|
+
the default external encoding which was determined from your locale.
|
269
|
+
Issue #106 by Justin Baker.
|
270
|
+
* RDoc::RI::Store is now RDoc::Store so ri data generated by RDoc 4 cannot
|
271
|
+
be read by earlier versions of RDoc. RDoc::RI::Store exists as an alias
|
272
|
+
of RDoc::Store so ri data from older versions can still be read.
|
273
|
+
RDoc::RI::Store will be removed in RDoc 5.
|
274
|
+
|
275
|
+
Tests that create RDoc::CodeObjects on the fly without wiring them into
|
276
|
+
the documentation tree (did not use add_class, add_method, etc.) must be
|
277
|
+
updated to use these methods. The documentation tree automatically
|
278
|
+
attaches them to the store instance which allows lookups to work
|
279
|
+
correctly. Additionally, a new method RDoc::Store#add_file must be used
|
280
|
+
instead of RDoc::TopLevel.new. The latter will not be attached to the
|
281
|
+
documentation tree.
|
282
|
+
* RDoc generators must accept an RDoc::Store and an RDoc::Options in
|
283
|
+
initialize. RDoc no longer passes an Array of RDoc::TopLevel objects to
|
284
|
+
#generate. Use RDoc::Store#all_files instead.
|
285
|
+
* Some markup formatters (RDoc::Markup::To*) now accept an RDoc::Options
|
286
|
+
instance as the first argument. Notably, the base class Formatter and
|
287
|
+
ToHtml*. (This is not universal due to the difficult at accessing the
|
288
|
+
user's options instance deep inside RDoc. A future major release may
|
289
|
+
remedy this.)
|
290
|
+
* Added new markup nodes and specials that RDoc::Markup::Formatter
|
291
|
+
subclasses must handle. If you're using RDoc::Markup::FormatterTestCase
|
292
|
+
the new methods you need to add should be readily apparent.
|
293
|
+
* Removed RDoc::RI::Paths::SYSDIR and ::SITEDIR. These were hidden
|
294
|
+
constants so no breakage is expected. Use RDoc::RI::Paths::system_dir
|
295
|
+
and ::site_dir instead.
|
296
|
+
* RDoc::RI::Store#modules has been renamed to RDoc::Store#module_names
|
297
|
+
to avoid confusion with RDoc::Store#all_modules imported from
|
298
|
+
RDoc::TopLevel.
|
299
|
+
* RDoc::RDocError has been removed. It was deprecated throughout RDoc 3.
|
300
|
+
* ri -f html is no longer supported.
|
301
|
+
* Comment definitions in C comments are now only discovered from the first
|
302
|
+
line. A colon on a subsequent line won't trigger definition extraction.
|
303
|
+
Issue #103, see also
|
304
|
+
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/42942
|
305
|
+
* Fixed :stopdoc: for class A::B where A has not been seen. Issue #95 by
|
306
|
+
Ryan Davis
|
307
|
+
* RDoc::ClassModule#each_ancestor no longer yields itself if there is
|
308
|
+
circular ancestry
|
309
|
+
|
310
|
+
* Major enhancements
|
311
|
+
* ri can now show pages (README, etc.)
|
312
|
+
|
313
|
+
ri rdoc:README
|
314
|
+
|
315
|
+
Will show the README for the latest version of RDoc. You can specify
|
316
|
+
exact gem versions such as "rdoc-4.0:README" or view pages from the
|
317
|
+
standard library documentation with "ruby:README".
|
318
|
+
|
319
|
+
RDoc 3 did not save pages in ri data so you will need to regenerate
|
320
|
+
documentation from your gems to use this feature.
|
321
|
+
* Added Markdown as a supported format. The markdown format can be set on a
|
322
|
+
per-file or per-comment basis with the +:markdown:+ directive like the rd
|
323
|
+
and tomdoc formats and on a per-project basis with
|
324
|
+
<tt>rdoc --markup markdown --write-options</tt>
|
325
|
+
* Removed global state from RDoc. RDoc::Store holds the documentation tree
|
326
|
+
and connects the driver to the parsers and generator. This also allows
|
327
|
+
documentation parsing and generation for multiple instances, but the rdoc
|
328
|
+
command-line tool does not support this.
|
329
|
+
|
330
|
+
Due to this change RDoc::RDoc.current and RDoc::RDoc.reset no longer
|
331
|
+
exist.
|
332
|
+
|
333
|
+
* Minor enhancements
|
334
|
+
* Added --page-dir option to give pretty names for a FAQ, guides, or other
|
335
|
+
documentation you write that is not stored in the project root. For
|
336
|
+
example, with the following layout:
|
337
|
+
|
338
|
+
README.txt
|
339
|
+
guides/syntax.txt
|
340
|
+
guides/conversion.txt
|
341
|
+
|
342
|
+
Running `rdoc --page-dir guides` will make the files in "guides" appear to
|
343
|
+
be at the top level of the project. This means they will appear to exist
|
344
|
+
at the top level in HTML output and you can access them with
|
345
|
+
`ri your_gem:syntax` and `ri your_gem:conversion`.
|
346
|
+
* Added --root for building documentation from outside the source dir.
|
347
|
+
* Added current heading and page-top links to HTML headings.
|
348
|
+
* Added a ChangeLog parser. It automatically parses files that begin
|
349
|
+
with 'ChangeLog'
|
350
|
+
* Added a table of contents to the sidebar.
|
351
|
+
* RDoc markup format merges adjacent labels in a label or note list into a
|
352
|
+
single definition list item for output.
|
353
|
+
* RDoc now tracks use of extend. Pull request #118 by Michael Granger.
|
354
|
+
* RDoc now tracks methods that use super. Pull request #116 by Erik
|
355
|
+
Hollensbe.
|
356
|
+
* Added methods ::system_dir, ::site_dir, ::home_dir and ::gem_dir to fetch
|
357
|
+
the components of RDoc::RI::Paths.path individually.
|
358
|
+
* Added support for rb_file_const.
|
359
|
+
* RDoc now processes files in sorted order. Issue #71 by Vít Ondruch
|
360
|
+
* RDoc now warns with --verbose when methods are duplicated. Issue #71 by
|
361
|
+
Vít Ondruch
|
362
|
+
* ri will display documentation for all methods in a class if -a is given.
|
363
|
+
Issue #57 by casper
|
364
|
+
* The RDoc coverage report will report line information for attributes,
|
365
|
+
constants and methods missing documentation. Issue #121 by Zachary Scott
|
366
|
+
* RDoc now reports a warning for files that are unreadable due to
|
367
|
+
permissions problems.
|
368
|
+
* RDoc controls documentation generation for RubyGems 2.0+
|
369
|
+
|
370
|
+
* Bug fixes
|
371
|
+
* Fixed parsing of multibyte files with incomplete characters at byte 1024.
|
372
|
+
Ruby bug #6393 by nobu, patch by Nobuyoshi Nakada and Yui NARUSE.
|
373
|
+
* Fixed rdoc -E. Ruby Bug #6392 and (modified) patch by Nobuyoshi Nakada
|
374
|
+
* Added link handling to Markdown output. Bug #160 by burningTyger.
|
375
|
+
* Fixed HEREDOC output for the limited case of a heredoc followed by a line
|
376
|
+
end. When a HEREDOC is not followed by a line end RDoc is not currently
|
377
|
+
smart enough to restore the source correctly. Bug #162 by Zachary Scott.
|
378
|
+
* Fixed parsing of executables with shebang and encoding comments. Bug #161
|
379
|
+
by Marcus Stollsteimer
|
380
|
+
* RDoc now ignores methods defined on constants instead of creating a fake
|
381
|
+
module. Bug #163 by Zachary Scott.
|
382
|
+
* Fixed ChangeLog parsing for FFI gem. Bug #165 by Zachary Scott.
|
383
|
+
* RDoc now links \#=== methods. Bug #164 by Zachary Scott.
|
384
|
+
* Allow [] following argument names for TomDoc. Bug #167 by Ellis Berner.
|
385
|
+
* Fixed the RDoc servlet for home and site directories. Bug #170 by Thomas
|
386
|
+
Leitner.
|
387
|
+
* Fixed references to methods in the RDoc servlet. Bug #171 by Thomas
|
388
|
+
Leitner.
|
389
|
+
* Fixed debug message when generating the darkfish root page. Pull Request
|
390
|
+
#174 by Thomas Leitner.
|
391
|
+
* Fixed deletion of attribute ri data when a class was loaded then saved.
|
392
|
+
Issue #171 by Thomas Leitner.
|
393
|
+
* Fully qualified names for constants declared from the top level are now
|
394
|
+
attached to their class or module properly.
|
395
|
+
* Fixed table of contents display in HTML output for classes and modules.
|
396
|
+
* Incremental ri builds of C files now work. C variable names from previous
|
397
|
+
runs are now saved between runs.
|
398
|
+
* A word that is directly followed by a multi-word tidy link label no longer
|
399
|
+
disappears. (Like <code>text{link}[http://example]</code>)
|
400
|
+
* Fixed legacy template support. Pull Request #107 by Justin Baker.
|
401
|
+
* An HTML class in a verbatim section no longer triggers ruby parsing.
|
402
|
+
Issue #92 by Vijay Dev
|
403
|
+
* Improved documentation for setting the default documentation format for
|
404
|
+
your ruby project. Issue #94 by Henrik Hodne
|
405
|
+
* Fixed handling of LANG in the RDoc::Options tests. Issue #99 by Vít
|
406
|
+
Ondruch
|
407
|
+
* RDoc no longer quits when given an entry that is not a file or directory.
|
408
|
+
Issue #101 by Charles Nutter
|
409
|
+
* Fixed bug in syntax-highlighting that would corrupt regular expressions.
|
410
|
+
Ruby Bug #6488 by Benny Lyne Amorsen.
|
411
|
+
* "class Object" no longer appears in the coverage report if all its methods
|
412
|
+
are documented. This suppresses a false positive for libraries that add
|
413
|
+
toplevel methods. Pull Request #128 by Zachary Scott.
|
414
|
+
* Fixed test_gen_url test name in TestRDocMarkupToHtml. Pull Request #130
|
415
|
+
by Zachary Scott.
|
416
|
+
* Comment-defined methods ahead of define_method are now discovered. Issue
|
417
|
+
#133 by eclectic923
|
418
|
+
* Fixed detection of define_method documentation. Issue #138 by Marvin
|
419
|
+
Gülker.
|
420
|
+
* Fixed lexing of character syntax (<code>?z</code>). Reported by Xavier
|
421
|
+
Noria.
|
422
|
+
* Add license to gem spec. Issue #144 by pivotalcommon
|
423
|
+
* Fixed comment selection for classes. Pull request #146 by pioz
|
424
|
+
* Fixed parsing of <code>def self.&() end</code>. Issue #148 by Michael
|
425
|
+
Lucy
|
426
|
+
* Generated RD parser files are now included in the gem. Issue #145 by
|
427
|
+
Marvin Gülker
|
428
|
+
* Class and module aliases now create new classes to avoid duplicate names
|
429
|
+
in the class list. Issue #143 by Richard Schneeman, Rails Issue #2839
|
430
|
+
* RDoc::Markup::Parser now correctly matches indentation of lists when
|
431
|
+
multibyte characters are used in the list labels. Issue #140 by
|
432
|
+
burningTyger
|
433
|
+
* Fixed mangling of email addresses that look like labels. Issue #129 by
|
434
|
+
Tobias Koch
|
435
|
+
* Classes and modules in a C file may now be created in any order. Issue
|
436
|
+
#124 by Su Zhang
|
437
|
+
* A metaprogrammed method supports the :args: directive. Issue #100
|
438
|
+
* A metaprogrammed method supports the :yields: directive.
|
439
|
+
* RDoc will now look for directives up to the end of the line. For example,
|
440
|
+
class B < A; end # :nodoc:
|
441
|
+
will now hide documentation of B. Issue #125 by Zachary Scott
|
442
|
+
* Fixed tokenization of % when it is not followed by a $-string type
|
443
|
+
* Fixed display of __END__ in documentation examples in HTML output
|
444
|
+
* Fixed tokenization of reserved words used as new-style hash keys
|
445
|
+
* RDoc now handles class << $gvar by ignoring the body
|
446
|
+
* Fixed parsing of class A:: B.
|
447
|
+
* Worked around bug in RDoc::RubyLex where tokens won't be reinterpreted
|
448
|
+
after unget_tk.
|
449
|
+
* Fixed class << ::Foo writing documentation to /Foo.html
|
450
|
+
* Fixed class ::A referencing itself from inside its own namespace.
|
451
|
+
|
452
|
+
Changes since RDoc 4.0.0.rc.2:
|
453
|
+
|
454
|
+
* Bug fix
|
455
|
+
* Templates now use the correct encoding when generating pages. Issue #183
|
456
|
+
by Vít Ondruch
|
457
|
+
|
458
|
+
=== 4.0.0.rc.2 / 2013-02-05
|
459
|
+
|
460
|
+
* Minor enhancements
|
461
|
+
* Added current heading and page-top links to HTML headings.
|
462
|
+
|
463
|
+
* Bug fixes
|
464
|
+
* Fixed an XSS exploit in darkfish.js. This could lead to cookie disclosure
|
465
|
+
to third parties. See CVE-2013-0256[rdoc-ref:CVE-2013-0256.rdoc] for full
|
466
|
+
details including a patch you can apply to generated RDoc documentation.
|
467
|
+
* Fixed parsing of multibyte files with incomplete characters at byte 1024.
|
468
|
+
Ruby bug #6393 by nobu, patch by Nobuyoshi Nakada and Yui NARUSE.
|
469
|
+
* Fixed rdoc -E. Ruby Bug #6392 and (modified) patch by Nobuyoshi Nakada
|
470
|
+
* Added link handling to Markdown output. Bug #160 by burningTyger.
|
471
|
+
* Fixed HEREDOC output for the limited case of a heredoc followed by a line
|
472
|
+
end. When a HEREDOC is not followed by a line end RDoc is not currently
|
473
|
+
smart enough to restore the source correctly. Bug #162 by Zachary Scott.
|
474
|
+
* Fixed parsing of executables with shebang and encoding comments. Bug #161
|
475
|
+
by Marcus Stollsteimer
|
476
|
+
* RDoc now ignores methods defined on constants instead of creating a fake
|
477
|
+
module. Bug #163 by Zachary Scott.
|
478
|
+
* Fixed ChangeLog parsing for FFI gem. Bug #165 by Zachary Scott.
|
479
|
+
* RDoc now links \#=== methods. Bug #164 by Zachary Scott.
|
480
|
+
* Allow [] following argument names for TomDoc. Bug #167 by Ellis Berner.
|
481
|
+
* Fixed the RDoc servlet for home and site directories. Bug #170 by Thomas
|
482
|
+
Leitner.
|
483
|
+
* Fixed references to methods in the RDoc servlet. Bug #171 by Thomas
|
484
|
+
Leitner.
|
485
|
+
* Fixed debug message when generating the darkfish root page. Pull Request
|
486
|
+
#174 by Thomas Leitner.
|
487
|
+
* Fixed deletion of attribute ri data when a class was loaded then saved.
|
488
|
+
Issue #171 by Thomas Leitner.
|
489
|
+
|
490
|
+
=== 4.0.0.preview2.1 / 2012-12-14
|
491
|
+
|
492
|
+
* Minor enhancements
|
493
|
+
* Added --page-dir option to give pretty names for a FAQ, guides, or other
|
494
|
+
documentation you write that is not stored in the project root. For
|
495
|
+
example, with the following layout:
|
496
|
+
|
497
|
+
README.txt
|
498
|
+
guides/syntax.txt
|
499
|
+
guides/conversion.txt
|
500
|
+
|
501
|
+
Running `rdoc --page-dir guides` will make the files in "guides" appear to
|
502
|
+
be at the top level of the project. This means they will appear to exist
|
503
|
+
at the top level in HTML output and you can access them with
|
504
|
+
`ri your_gem:syntax` and `ri your_gem:conversion`.
|
505
|
+
|
506
|
+
* Bug fixes
|
507
|
+
* Fully qualified names for constants declared from the top level are now
|
508
|
+
attached to their class or module properly.
|
509
|
+
* Fixed table of contents display in HTML output for classes and modules.
|
510
|
+
* Incremental ri builds of C files now work. C variable names from previous
|
511
|
+
runs are now saved between runs.
|
512
|
+
|
513
|
+
=== 4.0.0.preview2 / 2012-12-01
|
514
|
+
|
515
|
+
* Breaking changes
|
516
|
+
* The default output encoding for RDoc is now UTF-8. Previously RDoc used
|
517
|
+
the default external encoding which was determined from your locale.
|
518
|
+
Issue #106 by Justin Baker.
|
519
|
+
* RDoc::RI::Store is now RDoc::Store so ri data generated by RDoc 4 cannot
|
520
|
+
be read by earlier versions of RDoc. RDoc::RI::Store exists as an alias
|
521
|
+
of RDoc::Store so ri data from older versions can still be read.
|
522
|
+
RDoc::RI::Store will be removed in RDoc 5.
|
523
|
+
|
524
|
+
Tests that create RDoc::CodeObjects on the fly without wiring them into
|
525
|
+
the documentation tree (did not use add_class, add_method, etc.) must be
|
526
|
+
updated to use these methods. The documentation tree automatically
|
527
|
+
attaches them to the store instance which allows lookups to work
|
528
|
+
correctly. Additionally, a new method RDoc::Store#add_file must be used
|
529
|
+
instead of RDoc::TopLevel.new. The latter will not be attached to the
|
530
|
+
documentation tree.
|
531
|
+
* RDoc generators must accept an RDoc::Store and an RDoc::Options in
|
532
|
+
initialize. RDoc no longer passes an Array of RDoc::TopLevel objects to
|
533
|
+
#generate. Use RDoc::Store#all_files instead.
|
534
|
+
* Some markup formatters (RDoc::Markup::To*) now accept an RDoc::Options
|
535
|
+
instance as the first argument. Notably, the base class Formatter and
|
536
|
+
ToHtml*. (This is not universal due to the difficult at accessing the
|
537
|
+
user's options instance deep inside RDoc. A future major release may
|
538
|
+
remedy this.)
|
539
|
+
* Added new markup nodes and specials that RDoc::Markup::Formatter
|
540
|
+
subclasses must handle. If you're using RDoc::Markup::FormatterTestCase
|
541
|
+
the new methods you need to add should be readily apparent.
|
542
|
+
* Removed RDoc::RI::Paths::SYSDIR and ::SITEDIR. These were hidden
|
543
|
+
constants so no breakage is expected. Use RDoc::RI::Paths::system_dir
|
544
|
+
and ::site_dir instead.
|
545
|
+
* RDoc::RI::Store#modules has been renamed to RDoc::Store#module_names
|
546
|
+
to avoid confusion with RDoc::Store#all_modules imported from
|
547
|
+
RDoc::TopLevel.
|
548
|
+
* RDoc::RDocError has been removed. It was deprecated throughout RDoc 3.
|
549
|
+
* ri -f html is no longer supported.
|
550
|
+
* Comment definitions in C comments are now only discovered from the first
|
551
|
+
line. A colon on a subsequent line won't trigger definition extraction.
|
552
|
+
Issue #103, see also
|
553
|
+
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/42942
|
554
|
+
* Fixed :stopdoc: for class A::B where A has not been seen. Issue #95 by
|
555
|
+
Ryan Davis
|
556
|
+
* RDoc::ClassModule#each_ancestor no longer yields itself if there is
|
557
|
+
circular ancestry
|
558
|
+
|
559
|
+
* Major enhancements
|
560
|
+
* ri can now show pages (README, etc.)
|
561
|
+
|
562
|
+
ri rdoc:README
|
563
|
+
|
564
|
+
Will show the README for the latest version of RDoc. You can specify
|
565
|
+
exact gem versions such as "rdoc-4.0:README" or view pages from the
|
566
|
+
standard library documentation with "ruby:README".
|
567
|
+
|
568
|
+
RDoc 3 did not save pages in ri data so you will need to regenerate
|
569
|
+
documentation from your gems to use this feature.
|
570
|
+
* Added Markdown as a supported format. The markdown format can be set on a
|
571
|
+
per-file or per-comment basis with the +:markdown:+ directive like the rd
|
572
|
+
and tomdoc formats and on a per-project basis with
|
573
|
+
<tt>rdoc --markup markdown --write-options</tt>
|
574
|
+
* Removed global state from RDoc. RDoc::Store holds the documentation tree
|
575
|
+
and connects the driver to the parsers and generator. This also allows
|
576
|
+
documentation parsing and generation for multiple instances, but the rdoc
|
577
|
+
command-line tool does not support this.
|
578
|
+
|
579
|
+
Due to this change RDoc::RDoc.current and RDoc::RDoc.reset no longer
|
580
|
+
exist.
|
581
|
+
|
582
|
+
* Minor enhancements
|
583
|
+
* Added --root for building documentation from outside the source dir.
|
584
|
+
* Added a ChangeLog parser. It automatically parses files that begin
|
585
|
+
with 'ChangeLog'
|
586
|
+
* Added a table of contents to the sidebar.
|
587
|
+
* RDoc markup format merges adjacent labels in a label or note list into a
|
588
|
+
single definition list item for output.
|
589
|
+
* RDoc now tracks use of extend. Pull request #118 by Michael Granger.
|
590
|
+
* RDoc now tracks methods that use super. Pull request #116 by Erik
|
591
|
+
Hollensbe.
|
592
|
+
* Added methods ::system_dir, ::site_dir, ::home_dir and ::gem_dir to fetch
|
593
|
+
the components of RDoc::RI::Paths.path individually.
|
594
|
+
* Added support for rb_file_const.
|
595
|
+
* RDoc now processes files in sorted order. Issue #71 by Vít Ondruch
|
596
|
+
* RDoc now warns with --verbose when methods are duplicated. Issue #71 by
|
597
|
+
Vít Ondruch
|
598
|
+
* ri will display documentation for all methods in a class if -a is given.
|
599
|
+
Issue #57 by casper
|
600
|
+
* The RDoc coverage report will report line information for attributes,
|
601
|
+
constants and methods missing documentation. Issue #121 by Zachary Scott
|
602
|
+
* RDoc now reports a warning for files that are unreadable due to
|
603
|
+
permissions problems.
|
604
|
+
* RDoc controls documentation generation for RubyGems 2.0+
|
605
|
+
|
606
|
+
* Bug fixes
|
607
|
+
* A word that is directly followed by a multi-word tidy link label no longer
|
608
|
+
disappears. (Like <code>text{link}[http://example]</code>)
|
609
|
+
* Fixed legacy template support. Pull Request #107 by Justin Baker.
|
610
|
+
* An HTML class in a verbatim section no longer triggers ruby parsing.
|
611
|
+
Issue #92 by Vijay Dev
|
612
|
+
* Improved documentation for setting the default documentation format for
|
613
|
+
your ruby project. Issue #94 by Henrik Hodne
|
614
|
+
* Fixed handling of LANG in the RDoc::Options tests. Issue #99 by Vít
|
615
|
+
Ondruch
|
616
|
+
* RDoc no longer quits when given an entry that is not a file or directory.
|
617
|
+
Issue #101 by Charles Nutter
|
618
|
+
* Fixed bug in syntax-highlighting that would corrupt regular expressions.
|
619
|
+
Ruby Bug #6488 by Benny Lyne Amorsen.
|
620
|
+
* "class Object" no longer appears in the coverage report if all its methods
|
621
|
+
are documented. This suppresses a false positive for libraries that add
|
622
|
+
toplevel methods. Pull Request #128 by Zachary Scott.
|
623
|
+
* Fixed test_gen_url test name in TestRDocMarkupToHtml. Pull Request #130
|
624
|
+
by Zachary Scott.
|
625
|
+
* Comment-defined methods ahead of define_method are now discovered. Issue
|
626
|
+
#133 by eclectic923
|
627
|
+
* Fixed detection of define_method documentation. Issue #138 by Marvin
|
628
|
+
Gülker.
|
629
|
+
* Fixed lexing of character syntax (<code>?z</code>). Reported by Xavier
|
630
|
+
Noria.
|
631
|
+
* Add license to gem spec. Issue #144 by pivotalcommon
|
632
|
+
* Fixed comment selection for classes. Pull request #146 by pioz
|
633
|
+
* Fixed parsing of <code>def self.&() end</code>. Issue #148 by Michael
|
634
|
+
Lucy
|
635
|
+
* Generated RD parser files are now included in the gem. Issue #145 by
|
636
|
+
Marvin Gülker
|
637
|
+
* Class and module aliases now create new classes to avoid duplicate names
|
638
|
+
in the class list. Issue #143 by Richard Schneeman, Rails Issue #2839
|
639
|
+
* RDoc::Markup::Parser now correctly matches indentation of lists when
|
640
|
+
multibyte characters are used in the list labels. Issue #140 by
|
641
|
+
burningTyger
|
642
|
+
* Fixed mangling of email addresses that look like labels. Issue #129 by
|
643
|
+
Tobias Koch
|
644
|
+
* Classes and modules in a C file may now be created in any order. Issue
|
645
|
+
#124 by Su Zhang
|
646
|
+
* A metaprogrammed method supports the :args: directive. Issue #100
|
647
|
+
* A metaprogrammed method supports the :yields: directive.
|
648
|
+
* RDoc will now look for directives up to the end of the line. For example,
|
649
|
+
class B < A; end # :nodoc:
|
650
|
+
will now hide documentation of B. Issue #125 by Zachary Scott
|
651
|
+
* Fixed tokenization of % when it is not followed by a $-string type
|
652
|
+
* Fixed display of __END__ in documentation examples in HTML output
|
653
|
+
* Fixed tokenization of reserved words used as new-style hash keys
|
654
|
+
* RDoc now handles class << $gvar by ignoring the body
|
655
|
+
* Fixed parsing of class A:: B.
|
656
|
+
* Worked around bug in RDoc::RubyLex where tokens won't be reinterpreted
|
657
|
+
after unget_tk.
|
658
|
+
* Fixed class << ::Foo writing documentation to /Foo.html
|
659
|
+
* Fixed class ::A referencing itself from inside its own namespace.
|
660
|
+
|
661
|
+
=== 3.12.2 / 2013-02-24
|
662
|
+
|
663
|
+
* Bug fixes
|
664
|
+
* Fixed bug in syntax-highlighting that would corrupt regular expressions.
|
665
|
+
Ruby Bug #6488 by Benny Lyne Amorsen.
|
666
|
+
* Fixed lexing of character syntax (<code>?x</code>). Reported by Xavier
|
667
|
+
Noria.
|
668
|
+
* Fixed tokenization of % when it is not followed by a $-string type
|
669
|
+
* Fixed display of __END__ in documentation examples in HTML output
|
670
|
+
* Fixed tokenization of reserved words used as new-style hash keys
|
671
|
+
* Fixed HEREDOC output for the limited case of a heredoc followed by a line
|
672
|
+
end. When a HEREDOC is not followed by a line end RDoc is not currently
|
673
|
+
smart enough to restore the source correctly. Bug #162 by Zachary Scott.
|
674
|
+
|
675
|
+
=== 3.12.1 / 2013-02-05
|
676
|
+
|
677
|
+
* Bug fixes
|
678
|
+
* Fixed an XSS exploit in darkfish.js. This could lead to cookie disclosure
|
679
|
+
to third parties. See CVE-2013-0256[rdoc-ref:CVE-2013-0256.rdoc] for full
|
680
|
+
details including a patch you can apply to generated RDoc documentation.
|
681
|
+
* Ensured that rd parser files are generated before checking the manifest.
|
682
|
+
|
683
|
+
=== 3.12 / 2011-12-15
|
684
|
+
|
685
|
+
* Minor enhancements
|
686
|
+
* Added DEVELOPERS document which contains an overview of how RDoc works and
|
687
|
+
how to add new features to RDoc.
|
688
|
+
* Improved title for HTML output to include <code>--title</code> in the
|
689
|
+
title element.
|
690
|
+
* <code>rdoc --pipe</code> now understands <code>--markup</code>.
|
691
|
+
* RDoc now supports IRC-scheme hyperlinks. Issue #83 by trans.
|
692
|
+
|
693
|
+
* Bug fixes
|
694
|
+
* Fixed title on HTML output for pages.
|
695
|
+
* Fixed parsing of non-indented HEREDOC.
|
696
|
+
* Fixed parsing of <code>%w[]</code> and other % literals. Issue #84 by
|
697
|
+
Erik Hollensbe
|
698
|
+
* Fixed arrow replacement in HTML output munging the spaceship operator.
|
699
|
+
Issue #85 by eclectic923.
|
700
|
+
* Verbatim sections with ERB that match the ruby code whitelist are no
|
701
|
+
longer syntax-highlighted. Issue #86 by eclectic923
|
702
|
+
* Line endings on windows are normalized immediately after reading with
|
703
|
+
binmode. Issue #87 by Usa Nakamura
|
704
|
+
* RDoc better understands directives for comments. Comment directives can
|
705
|
+
now be found anywhere in multi-line comments. Issue #90 by Ryan Davis
|
706
|
+
* Tidy links to methods show the label again. Issue #88 by Simon Chiang
|
707
|
+
* RDoc::Parser::C can now find comments directly above
|
708
|
+
+rb_define_class_under+. Issue #89 by Enrico
|
709
|
+
* In rdoc, backspace and ansi formatters, labels and notes without bodies
|
710
|
+
are now shown.
|
711
|
+
* In rdoc, backspace and ansi formatters, whitespace between label or note
|
712
|
+
and the colon is now stripped.
|
713
|
+
|
714
|
+
=== 3.11 / 2011-10-17
|
715
|
+
|
716
|
+
* Bug fixes
|
717
|
+
* Avoid parsing TAGS files included in gems. Issue #81 by Santiago
|
718
|
+
Pastorino.
|
719
|
+
|
720
|
+
=== 3.10 / 2011-10-08
|
721
|
+
|
722
|
+
* Major enhancements
|
723
|
+
* RDoc HTML output has been improved:
|
724
|
+
* The search from Володя Колесников's (Vladimir Kolesnikov) SDoc has been
|
725
|
+
integrated.
|
726
|
+
|
727
|
+
The search index generation is a reusable component through
|
728
|
+
RDoc::Generator::JsonIndex
|
729
|
+
* The table of contents is now a separate page and now shows links to
|
730
|
+
headings and sections inside a page or class.
|
731
|
+
* Class pages no longer show the namespace and no longer have file info
|
732
|
+
pages.
|
733
|
+
* HTML output is HTML 5.
|
734
|
+
* Static files can be copied into RDoc using --copy-files
|
735
|
+
* RDoc supports additional documentation formats:
|
736
|
+
* TomDoc 1.0.0-rc1
|
737
|
+
* RD format
|
738
|
+
|
739
|
+
The default markup can be set via the <tt>--markup</tt> option.
|
740
|
+
|
741
|
+
The format of documentation in a particular file can be specified by the
|
742
|
+
+:markup:+ directive. If the +:markup:+ directive is in the first comment
|
743
|
+
it is used as the default for the entire file. For other comments it
|
744
|
+
overrides the default markup format.
|
745
|
+
|
746
|
+
The markup format can be set for rake tasks using RDoc::Task#markup
|
747
|
+
* RDoc can save and load an options file.
|
748
|
+
|
749
|
+
To create an options file that defaults to using TomDoc markup run:
|
750
|
+
|
751
|
+
rdoc --markup tomdoc --write-options
|
752
|
+
|
753
|
+
This will create a .rdoc_options file. Check it in to your VCS and
|
754
|
+
package it with your gem. RDoc will automatically load this file and
|
755
|
+
combine it with the user's options.
|
756
|
+
|
757
|
+
Some options are not saved. See RDoc::Options@Saved+Options for full
|
758
|
+
details.
|
759
|
+
|
760
|
+
* Minor enhancements
|
761
|
+
* RDoc autoloads everything. You only need to require 'rdoc' now.
|
762
|
+
* HTML headings now have ids matching their titles.
|
763
|
+
|
764
|
+
= Hello!
|
765
|
+
|
766
|
+
Is rendered as
|
767
|
+
|
768
|
+
<h1 id="label-Hello%21">Hello!</h1>
|
769
|
+
|
770
|
+
* Labels for classes or methods can be linked-to by adding an <tt>@</tt>
|
771
|
+
following the class or method reference. For example,
|
772
|
+
<tt>RDoc::Markup@Links</tt>
|
773
|
+
|
774
|
+
See RDoc::Markup@Links for further details.
|
775
|
+
* For HTML output RDoc uses +SomeClass.method_name+ and
|
776
|
+
+SomeClass#method_name+ for remote methods and attributes and
|
777
|
+
+::method_name+ and +#method_name+ for local methods.
|
778
|
+
* RDoc makes an effort to syntax-highlight ruby code in verbatim sections.
|
779
|
+
See RDoc::Markup@Paragraphs+and+Verbatim
|
780
|
+
* Added RDoc::TopLevel#text? and RDoc::Parser::Text to indicate a
|
781
|
+
parsed file contains no ruby constructs.
|
782
|
+
* Added <tt>rdoc-label</tt> link scheme which allows bidirectional links.
|
783
|
+
See RDoc::Markup for details.
|
784
|
+
* Image paths at HTTPS URLs will now be turned into +<img>+ tags. Pull
|
785
|
+
Request #60 by James Mead
|
786
|
+
* Added RDoc::Comment which encapsulates comment-handling functionality.
|
787
|
+
* Added RDoc::Markup::PreProcess::post_process to allow arbitrary comment
|
788
|
+
munging.
|
789
|
+
* RDoc::RDoc::current is set for the entire RDoc run.
|
790
|
+
* Split rdoc/markup/inline into individual files for its component classes.
|
791
|
+
* Moved token stream HTML markup out of RDoc::AnyMethod#markup_code into
|
792
|
+
RDoc::TokenStream::to_html
|
793
|
+
* "Top" link in section headers is no longer inside the heading element.
|
794
|
+
* RDoc avoids printing some warnings unless run with `rdoc --verbose`. For
|
795
|
+
Rails issue #1646.
|
796
|
+
* Finishing a paragraph with two or more spaces will result in a line break.
|
797
|
+
This feature is experimental and may be modified or removed.
|
798
|
+
|
799
|
+
* Bug fixes
|
800
|
+
* Markup defined by RDoc::Markup#add_special inside a <tt><tt></tt> is no
|
801
|
+
longer converted.
|
802
|
+
* Performance of RDoc::RubyLex has been improved. Ruby Bug #5202 by Ryan
|
803
|
+
Melton.
|
804
|
+
* Add US-ASCII magic comments to work with <tt>ruby -Ku</tt>. Issue #63 by
|
805
|
+
Travis D. Warlick, Jr.
|
806
|
+
* Clicking a link in the method description now works. Issue #61 by Alan
|
807
|
+
Hogan.
|
808
|
+
* Fixed RDoc::Markup::Parser for CRLF line endings. Issue #67 by Marvin
|
809
|
+
Gülker.
|
810
|
+
* Fixed lexing of percent strings like %r{#}. Issue #68 by eclectic923.
|
811
|
+
* The C parser now understands classes defined with
|
812
|
+
+rb_struct_define_without_accessor+ (like Range). Pull Request #73 by Dan
|
813
|
+
Bernier
|
814
|
+
* Fixed lexing of <code>a b <<-HEREDOC</code>. Issue #75 by John Mair.
|
815
|
+
* Added LEGAL.rdoc with references to licenses in other files. Issue #78 by
|
816
|
+
Dmitry Jemerov.
|
817
|
+
* Block parameters are displayed in Darkfish output again. Issue #76 by
|
818
|
+
Andrea Singh.
|
819
|
+
* The method parameter coverage report no longer includes parameter default
|
820
|
+
values. Issue #77 by Jake Goulding.
|
821
|
+
* The module for an include is not looked up until parsed all the files are
|
822
|
+
parsed. Unless your project includes nonexistent modules this avoids
|
823
|
+
worst-case behavior (<tt>O(n!)</tt>) of RDoc::Include#module.
|
824
|
+
|
825
|
+
=== 3.9.5 / 2013-02-05
|
826
|
+
|
827
|
+
* Bug fixes
|
828
|
+
* Fixed an XSS exploit in darkfish.js. This could lead to cookie disclosure
|
829
|
+
to third parties. See CVE-2013-0256.rdoc for full details including a
|
830
|
+
patch you can apply to generated RDoc documentation.
|
831
|
+
|
832
|
+
=== 3.9.4 / 2011-08-26
|
833
|
+
|
834
|
+
* Bug fixes
|
835
|
+
* Applied typo and grammar fixes from Luke Gruber. Ruby bug #5203
|
836
|
+
|
837
|
+
=== 3.9.3 / 2011-08-23
|
838
|
+
|
839
|
+
* Bug fixes
|
840
|
+
* Add US-ASCII magic comments to work with <tt>ruby -Ku</tt>. Issue #63 by
|
841
|
+
Travis D. Warlick, Jr.
|
842
|
+
* Image paths at HTTPS URLs are now turned into +<img>+ tags. Pull
|
843
|
+
Request #60 by James Mead
|
844
|
+
* Markup defined by RDoc::Markup#add_special inside a <tt><tt></tt> is no
|
845
|
+
longer converted.
|
846
|
+
|
847
|
+
=== 3.9.2 / 2011-08-11
|
848
|
+
|
849
|
+
* Bug fix
|
850
|
+
* Loosened TIDYLINK regexp to allow any content in the link section like:
|
851
|
+
<tt>{foo}[rdoc-ref:SomeClass]</tt>
|
852
|
+
* In HTML output headings are capped at <tt><h6></tt> again
|
853
|
+
|
854
|
+
=== 3.9.1 / 2011-07-31
|
855
|
+
|
856
|
+
* Bug fixes
|
857
|
+
* Fix RDoc::Markup parser for a header followed by a non-text token. Issue
|
858
|
+
#56 by Adam Tait
|
859
|
+
* Fix RDoc::Markup::ToHtmlCrossref#gen_url for non-<tt>rdoc-ref</tt> links.
|
860
|
+
* Fix bug report URL when rdoc crashes.
|
861
|
+
|
862
|
+
=== 3.9 / 2011-07-30
|
863
|
+
|
864
|
+
* Minor enhancements
|
865
|
+
* RDoc::Parser::C now supports :doc: and :nodoc: for class comments
|
866
|
+
* Added the <tt>rdoc-ref:</tt> link scheme which links to a named reference.
|
867
|
+
<tt>rdoc-ref:</tt> can resolve references to classes, modules, methods,
|
868
|
+
files, etc. This can be used to create cross-generator named links unlike
|
869
|
+
the <tt>link:</tt> scheme which is dependent upon the exact file name.
|
870
|
+
Issue #53 by Simon Chiang
|
871
|
+
* Pulled RDoc::CrossReference out of RDoc::Markup::ToHtmlCrossref.
|
872
|
+
Cross-references can now be created easily for non-HTML formatters.
|
873
|
+
* Bug fixes
|
874
|
+
* `ri []` and other special methods now work properly. Issue #52 by
|
875
|
+
ddebernardy.
|
876
|
+
* `ri` now has space between class comments from multiple files.
|
877
|
+
* :stopdoc: no longer creates Object references. Issue #55 by Simon Chiang
|
878
|
+
* :nodoc: works on class aliases now. Issue #51 by Steven G. Harms
|
879
|
+
* Remove tokenizer restriction on header lengths for verbatim sections.
|
880
|
+
Issue #49 by trans
|
881
|
+
|
882
|
+
=== 3.8 / 2011-06-29
|
883
|
+
|
884
|
+
* Minor enhancements
|
885
|
+
* RDoc::Parser::C can now discover methods on ENV and ARGF.
|
886
|
+
* RDoc::Parser::C now knows about rb_cSocket and rb_mDL.
|
887
|
+
* Bug fixes
|
888
|
+
* Updating Object in an ri data store with new data now removes methods,
|
889
|
+
includes, constants and aliases.
|
890
|
+
|
891
|
+
=== 3.7 / 2011-06-27
|
892
|
+
|
893
|
+
* Minor enhancements
|
894
|
+
* New directive :category: which allows methods to be grouped into sections
|
895
|
+
more cleanly. See RDoc::Markup for details.
|
896
|
+
* Document-class for RDoc::Parser::C now supports Foo::CONST as well as
|
897
|
+
CONST.
|
898
|
+
* ri method output is now a comma-separated list when displayed
|
899
|
+
interactively. Pull Request #39 by Benoit Daloze.
|
900
|
+
* RDoc::ClassModule#merge now prefers the argument's information over the
|
901
|
+
receiver's (it now behaves like Hash#merge! instead of a backwards
|
902
|
+
Hash#merge!).
|
903
|
+
* RDoc::Markup#convert now accepts an RDoc::Markup::Document instance
|
904
|
+
* RDoc now owns the code for generating RDoc and ri data when gems install
|
905
|
+
* Added RDoc::RDoc::reset
|
906
|
+
* Added RDoc::CodeObject#file_name
|
907
|
+
* Bug fixes
|
908
|
+
* ri no longer crashes when attempting to complete a plain [.
|
909
|
+
* ri data now tracks which file information came from so it can process
|
910
|
+
removals and changes to:
|
911
|
+
* Classes and Modules
|
912
|
+
* Methods
|
913
|
+
* Attributes
|
914
|
+
* Includes
|
915
|
+
* Constants
|
916
|
+
You will need to rebuild your ri data for it to update properly. Issue
|
917
|
+
#21 by Sven Riedel
|
918
|
+
* Signal and SignalException no longer clobber each other
|
919
|
+
* RDoc::Parser::C no longer creates classes when processing aliases.
|
920
|
+
* RDoc::Text#strip_stars handles Document-method for methods with =, ! and ?
|
921
|
+
now.
|
922
|
+
* RDoc::Parser::C now allows .cpp files to be used with the "in" comment on
|
923
|
+
rb_define_method. Bug #35 by Hanmac.
|
924
|
+
* RDoc::Parser::Ruby no longer eats content when =begin/=end documentation
|
925
|
+
blocks are followed by a documentable item. Issue #41 by mfn.
|
926
|
+
* RDoc::Markup::Formatter and subclasses now allow an optional +markup+
|
927
|
+
parameter for adding custom markup. The example in
|
928
|
+
RDoc::Markup::Formatter will now work. Issue #38 by tsilen.
|
929
|
+
* RDoc::Parser::C can now distinguish between class methods and instance
|
930
|
+
methods in Document-method. Issue #36 by Vincent Batts.
|
931
|
+
* RDoc now encodes file names in the output encoding. Issue #33 by Perry
|
932
|
+
Smith.
|
933
|
+
* ri data generation for method aliases no longer duplicates the class in
|
934
|
+
#full_name
|
935
|
+
|
936
|
+
=== 3.6.1 / 2011-05-15
|
937
|
+
|
938
|
+
* Bug fixes
|
939
|
+
* Fix infinite loop created when re-encountering BasicObject.
|
940
|
+
* RDoc::Context#each_ancestor is now provided for duck-typing.
|
941
|
+
* rb_path2class() can now be used to discover the parent class in
|
942
|
+
rb_define_class_under.
|
943
|
+
|
944
|
+
=== 3.6 / 2011-05-13
|
945
|
+
|
946
|
+
* Major Enhancements
|
947
|
+
* Interactive ri is now the default when no names are given.
|
948
|
+
* Minor Enhancements
|
949
|
+
* RDoc::RDoc#generate was added to allow multiple generators to be used with
|
950
|
+
a set of parsed file info.
|
951
|
+
* RDoc::Options#finish can be called multiple times now.
|
952
|
+
* `ri -i` only shows one level of namespace when completing class names.
|
953
|
+
* Added `ri --list` for explicit listing. `ri -l F G` will list all classes
|
954
|
+
or modules starting with F or G
|
955
|
+
* Bug fixes
|
956
|
+
* Remove windows-specific test for test_check_files, it is too hard to do.
|
957
|
+
Ruby commit r30811 by Usaku Nakamura.
|
958
|
+
* Remove unnecessary (and wrong) platform-dependent hacks. Ruby commit
|
959
|
+
r30829 by Usaku Nakamura.
|
960
|
+
* Completing via Array#[ in `ri -i` no longer crashes. Ruby Bug #3167
|
961
|
+
* Completing IO::o in `ri -i` now returns results. Ruby Bug #3167
|
962
|
+
* RDoc::Parser::C ignores prototypes better. Pull Request #34 by Pete
|
963
|
+
Higgins.
|
964
|
+
* private_class_method and public_class_method are now parsed correctly for
|
965
|
+
inherited methods. Issue #16 by gitsucks.
|
966
|
+
* The doc directive now forces documentation even when the method is marked
|
967
|
+
private or protected.
|
968
|
+
|
969
|
+
=== 3.5.3 / 2010-02-06
|
970
|
+
|
971
|
+
* Bug fixes
|
972
|
+
* When including a file perform a lossy force-transcoding to the output
|
973
|
+
encoding instead of crashing to preserve as much content as possible.
|
974
|
+
Ruby Bug #4376 by Yui NARUSE.
|
975
|
+
* Work around inconsistent encoding result from String#sub!, String#gsub!.
|
976
|
+
Related to Ruby Bug #4376.
|
977
|
+
* Work around inconsistent encoding result from String#[]=. Related to Ruby
|
978
|
+
Bug #4376.
|
979
|
+
* When Darkfish fails the file being generated is now reported.
|
980
|
+
|
981
|
+
=== 3.5.2 / 2010-02-04
|
982
|
+
|
983
|
+
* Deprecations
|
984
|
+
* RDoc::Context::Section#sequence is now deprecated. Use
|
985
|
+
RDoc::Context::Section#aref instead.
|
986
|
+
|
987
|
+
* Bug fixes
|
988
|
+
* Fixed syntax highlighting CSS class generation. Reported by Daniel
|
989
|
+
Bretoi.
|
990
|
+
* Fixed ri for methods with aliases. Pull Request #15 by Sven Riedel.
|
991
|
+
* Added windows-specific test for test_check_files.
|
992
|
+
* Darkfish now supports sections. Template and generator author see
|
993
|
+
RDoc::Context#each_section to add section support. RubyForge Bug #26883
|
994
|
+
by Jeff Hodges.
|
995
|
+
* Fixed post-install message for Ruby 1.9.2 users.
|
996
|
+
* Set required ruby version to >= 1.8.7.
|
997
|
+
|
998
|
+
=== 3.5.1 / 2010-01-30
|
999
|
+
|
1000
|
+
* Bug fixes
|
1001
|
+
* Fixed some typos. Pull request #13 by R.T. Lechow.
|
1002
|
+
* Ensure an RDoc::Stats is created in #parse_files. Fixes documentation for
|
1003
|
+
railties which has no files. Reported by Aaron Patterson
|
1004
|
+
|
1005
|
+
=== 3.5 / 2010-01-29
|
1006
|
+
|
1007
|
+
* Minor enhancements
|
1008
|
+
* RDoc::Parser::C looks for rb_scan_args and fills in RDoc::AnyMethod#params
|
1009
|
+
appropriately. This may provide useful information if the author did not
|
1010
|
+
provide a call-seq.
|
1011
|
+
* RDoc::Parser::C now records the function name for methods implemented in
|
1012
|
+
C.
|
1013
|
+
* RDoc now records file and byte offset information for methods.
|
1014
|
+
* Bug fixes
|
1015
|
+
* Locations of module aliases are now recorded.
|
1016
|
+
* RDoc::Parser::C finds method bodies better now.
|
1017
|
+
* Fixed further locations where output encoding was not preserved. Bug #11
|
1018
|
+
by Vít Ondruch, RubyForge bug #28791 by Dzmitry Prakapenka.
|
1019
|
+
* Fixed display of numeric lists on the index page and file pages. Bug #12
|
1020
|
+
by tobijk.
|
1021
|
+
* Skip TestRDocOptions#test_check_files on windows until a windows-specific
|
1022
|
+
test can be created. RubyForge bug #28821 by Usaku Nakamura.
|
1023
|
+
* Fixed line-height of headings in method and alias descriptions. RubyForge
|
1024
|
+
Bug #2770 by Adam Avilla
|
1025
|
+
* Relaxed RDoc::Parser::Ruby#remove_private_comments to consume more dashes
|
1026
|
+
as older versions once did. Bug #7 by Claus Folke Brobak.
|
1027
|
+
|
1028
|
+
=== 3.4 / 2010-01-06
|
1029
|
+
|
1030
|
+
* Minor enhancements
|
1031
|
+
* RDoc::RDoc#document may now be called with an RDoc::Options instance.
|
1032
|
+
* Bug fixes
|
1033
|
+
* Added skips to Encoding tests running on 1.8.
|
1034
|
+
* Fixed warnings
|
1035
|
+
|
1036
|
+
=== 3.3 / 2010-01-03
|
1037
|
+
|
1038
|
+
* Minor enhancements
|
1039
|
+
* The coverage report can now report undocumented method parameters
|
1040
|
+
including methods defined in C.
|
1041
|
+
|
1042
|
+
<kbd>rdoc -C</kbd> gives a standard report, <kbd>rdoc -C1</kbd> includes
|
1043
|
+
method parameters. Method parameters are considered documented if they're
|
1044
|
+
marked-up with <tt>+</tt>, <tt><code></tt> or <code><tt></code>.
|
1045
|
+
* The C parser now uses <tt>*args</tt> instead of <tt>...</tt> if no
|
1046
|
+
<tt>call-seq</tt> was provided to give names to the arguments.
|
1047
|
+
* Bug fixes
|
1048
|
+
* The C parser now records the file location of aliases, attributes,
|
1049
|
+
constants and methods allowing -C to work on C files.
|
1050
|
+
* Darkfish now handles dots in call-seq allowing <tt>ary.insert(index,
|
1051
|
+
obj...)</tt> to display correctly. Patch #6 by KUBO Takehiro.
|
1052
|
+
* Improved processing of meta-programmed methods when followed by unparseable
|
1053
|
+
syntax. RubyForge patch #28653 by Aidan Cully.
|
1054
|
+
* rdoc now touches the flag file when it create the output directory.
|
1055
|
+
Prevents the "isn't an RDoc directory" error if rdoc crashes.
|
1056
|
+
* RDoc now properly converts to the expected output encoding. RubyForge bug
|
1057
|
+
#28791 by Dzmitry Prakapenka.
|
1058
|
+
* Restored parsing of block comments. RubyForge bug #28668 by Stefano Crocco.
|
1059
|
+
* Metaprogrammed methods defined with blocks no longer confuse the ruby
|
1060
|
+
parser. RubyForge bug #28370 by Erik Hollensbe.
|
1061
|
+
* ri no longer displays all methods in the inheritance chain.
|
1062
|
+
|
1063
|
+
=== 3.2 / 2010-12-29
|
1064
|
+
|
1065
|
+
* Minor enhancements
|
1066
|
+
* RDoc generator authors may now suppress updating the output dir (creating
|
1067
|
+
a created.rid file) by setting RDoc::Options#update_output_dir to false.
|
1068
|
+
* RDoc::Task has been refactored to ease creating subclasses.
|
1069
|
+
* Bug fixes
|
1070
|
+
* RDoc's gitignore now ignores .DS_Store files. Pull Request #3 by Shane
|
1071
|
+
Becker.
|
1072
|
+
|
1073
|
+
=== 3.1 / 2010-12-28
|
1074
|
+
|
1075
|
+
RDoc has moved to github. Releases after 3.1 reference github unless
|
1076
|
+
otherwise noted.
|
1077
|
+
|
1078
|
+
* Minor enhancements
|
1079
|
+
* RDoc::Task now features a #generator option to choose an alternate
|
1080
|
+
generator. Pull Request #2 by Erik Hollensbe.
|
1081
|
+
* Enhanced test for RDoc::Parser::binary? RubyForge patch #28538 by Eito
|
1082
|
+
Katagiri.
|
1083
|
+
* Generator list in --help is no longer static. Generator description comes
|
1084
|
+
from the generator's DESCRIPTION constant.
|
1085
|
+
* Documentation summary is now displayed with dynamic width.
|
1086
|
+
* Bug fixes
|
1087
|
+
* Strip encoding comment from input to avoid overriding file comment.
|
1088
|
+
RubyForge Bug #22113 by James Gray.
|
1089
|
+
* Restore call-seq parsing behavior when the call-seq is the only comment.
|
1090
|
+
RubyForge Bug #26290 by Sylvain Joyeux.
|
1091
|
+
* Coverage report no longer crashes for constant aliases. Pull Request #1
|
1092
|
+
by Andy Lindeman.
|
1093
|
+
* RDoc no longer loses ghost methods when followed by certain tokens.
|
1094
|
+
RubyForge bug #27793 by Aaron Patterson.
|
1095
|
+
* RDoc no longer crashes in ri if HOME is not set. Ruby Bug #4202 by
|
1096
|
+
Shyouhei Urabe.
|
1097
|
+
* ri no longer crashes with HTML format output. RubyForge bug #28675 by
|
1098
|
+
7rans.
|
1099
|
+
* RDoc::Markup::ToHtml#gen_url now initializes #from_path to ''.
|
1100
|
+
Additionally, #from_path is now settable. RubyForge bug #27838 by Claus
|
1101
|
+
Folke Brobak.
|
1102
|
+
* Comments in the C parser are now normalized before being combined.
|
1103
|
+
RubyForge patch #28646 by Sven Herzberg.
|
1104
|
+
* RDoc::Parser::C no longer requires a comment and finds more method bodies.
|
1105
|
+
RubyForge patch #28643 by Sven Herzberg.
|
1106
|
+
* Darkfish now has a "Class/Module Index" instead of a "Class Index".
|
1107
|
+
RubyForge patch #28364 by James Tucker.
|
1108
|
+
* RDoc::Parser::Ruby now parses negative numbers correctly. RubyForge patch
|
1109
|
+
#28544 by Eito Katagiri.
|
1110
|
+
|
1111
|
+
=== 3.0.1 / 2010-12-19
|
1112
|
+
|
1113
|
+
* Bug fix
|
1114
|
+
* RDoc no longer has a Perl parser.
|
1115
|
+
|
1116
|
+
=== 3.0 / 2010-12-19
|
1117
|
+
|
1118
|
+
Special thanks to Thierry Lambert for massive improvements to RDoc.
|
1119
|
+
|
1120
|
+
* Major enhancements
|
1121
|
+
* Ruby 1.8.6 is no longer supported by RDoc.
|
1122
|
+
* RDoc now converts input files to a single encoding specified by
|
1123
|
+
<tt>--encoding</tt>. See RDoc::RDoc and RDoc::Options#encoding.
|
1124
|
+
<tt>--encoding</tt> is now preferred over <tt>--charset</tt>
|
1125
|
+
* RDoc now supports a <tt>--coverage-report</tt> flag (also <tt>-C</tt> and
|
1126
|
+
<tt>--dcov</tt>) that outputs a report on items lacking documentation.
|
1127
|
+
* Templates (<tt>rdoc -T</tt>) are now checked for existence in
|
1128
|
+
RDoc::Options. Generator authors can now use RDoc::Options#template_dir
|
1129
|
+
which is the full path to the template directory.
|
1130
|
+
* Added support for class aliases. Patch by Thierry Lambert.
|
1131
|
+
* Improved merging of classes and modules across multiple files including
|
1132
|
+
more accurate documentation statistics. Patch by Thierry Lambert.
|
1133
|
+
* Improved handling of method aliases. Patch by Thierry Lambert.
|
1134
|
+
* Improved handling of visibility of RDoc code objects. Patch by Thierry
|
1135
|
+
Lambert.
|
1136
|
+
* RDoc::Attr#type is now RDoc::Attr#definition. Patch by Thierry Lambert.
|
1137
|
+
* Removed TimeConstantMethods
|
1138
|
+
* RDoc now calls ::new instead of ::for on generators.
|
1139
|
+
* Minor enhancements
|
1140
|
+
* Added rdoc arguments <tt>--dry-run</tt>, <tt>--all</tt>,
|
1141
|
+
<tt>--visibility</tt>, <tt>--force-output</tt>, <tt>--hyperlink-all</tt>.
|
1142
|
+
Patch by Thierry Lambert.
|
1143
|
+
* RDoc::Markup::FormatterTestCase has been expanded. Patch by Thierry
|
1144
|
+
Lambert.
|
1145
|
+
* RDoc::Markup::TextFormatterTestCase has been extracted from RDoc tests.
|
1146
|
+
Patch by Thierry Lambert.
|
1147
|
+
* Various RDoc::Parser::Ruby enhancements. Patch by Thierry Lambert.
|
1148
|
+
* Various RDoc::Markup::Parser enhancements. Patch by Thierry Lambert.
|
1149
|
+
* RDoc::Parser::binary? is more robust now that it uses Encoding.
|
1150
|
+
* Deprecated rdoc arguments are now explicitly mentioned in rdoc command
|
1151
|
+
output. Patch by Thierry Lambert.
|
1152
|
+
* Constant values are formatted more accurately. Patch by Thierry Lambert.
|
1153
|
+
* Enhanced call-seq parsing in RDoc::Parser::C. Patch by Thierry Lambert.
|
1154
|
+
* RDoc no longer uses kw, cmt, re or str classes for embedded source code
|
1155
|
+
snippets. Patch by Thierry Lambert.
|
1156
|
+
* RDoc directives may now be escaped with a leading '\\'. Patch by Thierry
|
1157
|
+
Lambert.
|
1158
|
+
* RDoc note lists (<tt>label::</tt>) now generate a table with class
|
1159
|
+
"rdoc-list". Patch by Thierry Lambert.
|
1160
|
+
* RDoc markup documentation has been moved to RDoc::Markup including notes
|
1161
|
+
on how to document source code.
|
1162
|
+
* An RDoc::Require is now always listed at the file level. Patch by Thierry
|
1163
|
+
Lambert.
|
1164
|
+
* RDoc::CodeObjects now know which file they were defined in.
|
1165
|
+
* RDoc::Options calls ::setup_options on the generator class specified by
|
1166
|
+
<tt>--format</tt>. See RDoc::Options::setup_generator.
|
1167
|
+
* rdoc gives an error when multiple formats are given.
|
1168
|
+
* Files with erb inside will no longer trip RDoc::Parser::binary?
|
1169
|
+
* Last <tt>--title</tt> wins. Patch by Thierry Lambert.
|
1170
|
+
* Better block params handling. Patch by Thierry Lambert.
|
1171
|
+
* Moved rdoc/tokenstream.rb to rdoc/token_stream.rb.
|
1172
|
+
* Moved rdoc/markup/preprocess.rb to rdoc/markup/pre_process.rb.
|
1173
|
+
* Removed "':' not followed by operator or identifier" warning for new Hash
|
1174
|
+
syntax.
|
1175
|
+
* rb_attr() is now supported for attributes.
|
1176
|
+
* RDoc::Parser::C now supports yields, doc, and args directives like
|
1177
|
+
RDoc::Parser::Ruby.
|
1178
|
+
* Moved RDoc::Parser::PerlPOD to the rdoc-perl_pod gem.
|
1179
|
+
* Bug fixes
|
1180
|
+
* RDoc::Generator tests no longer require any installed RDoc on Ruby 1.9
|
1181
|
+
* Load existing cache before generating ri. Ruby r27749 by NAKAMURA Usaku.
|
1182
|
+
* RDoc now handles BOM. Ruby r28062 by Nobuyoshi Nakada.
|
1183
|
+
* Use proper XML encoding for darkfish classpage. Ruby r28083 by NARUSE,
|
1184
|
+
Yui.
|
1185
|
+
* Fix ri output when special characters are inside html tags. Patch by Tomo
|
1186
|
+
Kazahaya, Ruby Bug #3512.
|
1187
|
+
* Don't bother checking if the pager exists, it's already done. Ruby r28842
|
1188
|
+
by NAKAMURA Usaku.
|
1189
|
+
* RDoc::Parser::Ruby now ignores non-constant-named singleton classes. Ruby
|
1190
|
+
r29140 by Nobuyoshi Nakada. Ruby Bug #3759.
|
1191
|
+
* RDoc::Parser::Ruby call args no longer include assignment. Ruby r29141 by
|
1192
|
+
Nobuyoshi Nakada. Ruby Bug #3759
|
1193
|
+
* Handle $HOME being unset in ri. Ruby r29272 by Nobuyoshi Nakada.
|
1194
|
+
* uniq ancestors and modules too. Ruby r29312 by Nobuyoshi Nakada.
|
1195
|
+
* RDoc now knows about Encoding by default. Ruby r29356 by Nobuyoshi
|
1196
|
+
Nakada.
|
1197
|
+
* ri now defaults to the backspace formatter when piped. Use RI environment
|
1198
|
+
variable or options to override. Ruby r28455 by Yusuke Endoh.
|
1199
|
+
* __send__ and friends no longer get their underscores removed. Patch by
|
1200
|
+
Thierry Lambert.
|
1201
|
+
* The C parser now makes new public when promoting initialize.
|
1202
|
+
* Fix crash in #markup_code for TkUnknownChar.
|
1203
|
+
* Fix crash in RDoc::Parser::C when aliasing methods with Regexp special
|
1204
|
+
characters.
|
1205
|
+
* Fix crash when various operators are used as a name as in
|
1206
|
+
<tt>alias * compose</tt>.
|
1207
|
+
* Fix warning with some dynamic use of <tt>attr_*</tt>
|
1208
|
+
* Methods added to true, false and nil are now documented.
|
1209
|
+
* Remove warning for methods defined on globals.
|
1210
|
+
|
1211
|
+
=== 2.5.11 / 2010-08-20
|
1212
|
+
|
1213
|
+
* Minor Enhancements
|
1214
|
+
* Alias comments are now discovered by the C parser. Reported by Jeremy
|
1215
|
+
Evans.
|
1216
|
+
* Removed --all option which is unused in RDoc. Use the nodoc or
|
1217
|
+
stopdoc/startdoc directives to suppress documentation instead.
|
1218
|
+
|
1219
|
+
=== 2.5.10 / 2010-08-17
|
1220
|
+
|
1221
|
+
* Minor Enhancements
|
1222
|
+
* Support rb_singleton_class(). Reported by Jeremy Evans.
|
1223
|
+
* Support rb_define_private_method() on rb_singleton_class(). Reported by
|
1224
|
+
Jeremy Evans.
|
1225
|
+
|
1226
|
+
* Bug Fixes
|
1227
|
+
* Treat non-ASCII RDoc files as text. Bug #28391 by Kouhei Sutou.
|
1228
|
+
* Fix potential test failures due to ivar collision. Bug #28390 by Kouhei
|
1229
|
+
Sutou.
|
1230
|
+
* Added duck-typed #aref for RDoc::Attr to RDoc::AnyMethod. Bug #28375 by
|
1231
|
+
Erik Hollensbe
|
1232
|
+
* Fixed method references in HTML output when show_hash is false.
|
1233
|
+
* Fixed comments with '.' in call-seq in C sources. Reported by Jeremy
|
1234
|
+
Evans.
|
1235
|
+
* RDoc now understands singleton aliases. Reported by Jeremy Evans.
|
1236
|
+
|
1237
|
+
=== 2.5.9 / 2010-07-06
|
1238
|
+
|
1239
|
+
* Bug Fixes
|
1240
|
+
* Look up pager correctly.
|
1241
|
+
* Fixed handling of bullets in verbatim sections. Partial patch by
|
1242
|
+
Juha-Jarmo Heinonen.
|
1243
|
+
|
1244
|
+
=== 2.5.8 / 2010-04-27
|
1245
|
+
|
1246
|
+
*NOTE*:
|
1247
|
+
|
1248
|
+
RDoc 2.5 did not save method parameters, so you should upgrade your rdoc-data
|
1249
|
+
gem to a version >= 2.5.3.
|
1250
|
+
|
1251
|
+
To have ri data for core and stdlib you'll need to:
|
1252
|
+
|
1253
|
+
gem install rdoc-data
|
1254
|
+
|
1255
|
+
then run:
|
1256
|
+
|
1257
|
+
rdoc-data --install
|
1258
|
+
|
1259
|
+
To have ri data for you gems you'll also need to run:
|
1260
|
+
|
1261
|
+
gem rdoc --all --overwrite
|
1262
|
+
|
1263
|
+
If you don't want to rebuild the rdoc for `gem server`, add --no-rdoc.
|
1264
|
+
|
1265
|
+
* Bug Fixes
|
1266
|
+
* ri no longer complains about nonexistent pagers.
|
1267
|
+
* Fixed failing test
|
1268
|
+
|
1269
|
+
=== 2.5.7 / 2010-04-22
|
1270
|
+
|
1271
|
+
* Minor Enhancements
|
1272
|
+
* Unrecognized RDoc directives can now be registered by a plugin for
|
1273
|
+
handling. See RDoc::Markup::PreProcess.
|
1274
|
+
* Added RDoc::Markup::Raw to allow other markup engines to dump raw content
|
1275
|
+
into RDoc.
|
1276
|
+
* Bug Fixes
|
1277
|
+
* rdoc -p no longer means --pipe if files are also given.
|
1278
|
+
* RDoc now knows about BasicObject by default. Ruby Bug #1318 by Ambrus Zsbán
|
1279
|
+
|
1280
|
+
=== 2.5.6 / 2010-04-22
|
1281
|
+
|
1282
|
+
* Minor Enhancements
|
1283
|
+
* Unrecognized RDoc directives are added as metadata to the object they get
|
1284
|
+
attached to.
|
1285
|
+
|
1286
|
+
##
|
1287
|
+
# :my_new_directive: my cool value
|
1288
|
+
|
1289
|
+
Results in a 'my_new_directive' metadata key with value 'my cool value' on
|
1290
|
+
the RDoc::CodeObject it is for
|
1291
|
+
* Bug Fixes
|
1292
|
+
* RDoc no longer prints out "invalid options:" when there were no invalid
|
1293
|
+
options.
|
1294
|
+
* Fixed link size on Darkfish file pages
|
1295
|
+
|
1296
|
+
=== 2.5.5 / 2010-04-19
|
1297
|
+
|
1298
|
+
* 1 Minor Enhancement
|
1299
|
+
* Use #binread in RDoc::Markup::PreProcess. Patch from ruby trunk.
|
1300
|
+
* 3 Bug Fixes
|
1301
|
+
* Fixed indentation of method-description lists in Darkfish. Bug #28081 by
|
1302
|
+
Theresa Dwinnell.
|
1303
|
+
* Fixed loading RDoc::AnyMethod aliases to no longer infinitely loop. Bug
|
1304
|
+
#28107 by Sven Riedel
|
1305
|
+
* Fixed handling of ignored invalid options to continue after the invalid
|
1306
|
+
option.
|
1307
|
+
|
1308
|
+
=== 2.5.4 / 2010-04-18
|
1309
|
+
|
1310
|
+
* 2 Minor Enhancements
|
1311
|
+
* Methods will now be cross-referenced when preceded with ::. Ruby Bug
|
1312
|
+
#3169 by Marc-Andre Lafortune.
|
1313
|
+
* Methods now have human readable fragment identifiers for HTML output.
|
1314
|
+
(#method-i-gsub vs #M000005). Ruby Bug #3023 by Marc-Andre Lafortune.
|
1315
|
+
* 1 Bug Fixes
|
1316
|
+
* RDoc::Parser::Ruby now handles <code>while begin a; b end # ...</code>.
|
1317
|
+
Ruby Bug #3160 by Yusuke Endoh.
|
1318
|
+
|
1319
|
+
=== 2.5.3 / 2010-04-10
|
1320
|
+
|
1321
|
+
* 1 Minor Enhancement
|
1322
|
+
* RDoc::Parser::Simple and the include directive remove coding: comment from
|
1323
|
+
first line
|
1324
|
+
* 2 Bug Fixes
|
1325
|
+
* Fixed loading of created.rid when regenerating documentation. Ruby bug
|
1326
|
+
#3121 by Yusuke Endoh.
|
1327
|
+
* Compare times as Integers as created.rid doesn't store fractional times.
|
1328
|
+
|
1329
|
+
=== 2.5.2 / 2010-04-09
|
1330
|
+
|
1331
|
+
* 1 Minor Enhancement
|
1332
|
+
* Imported various changes by Nobu from ruby trunk.
|
1333
|
+
* 2 Bug Fixes
|
1334
|
+
* RDoc parses files without extensions as text files again.
|
1335
|
+
* RDoc::Parser::Ruby parses %{ strings correctly again.
|
1336
|
+
|
1337
|
+
=== 2.5.1 / 2010-04-06
|
1338
|
+
|
1339
|
+
* 1 Minor Enhancement
|
1340
|
+
* RDoc::Parser::C now supports the include directive for classes and
|
1341
|
+
modules.
|
1342
|
+
* 6 Bug Fixes
|
1343
|
+
* RDoc::AnyMethod params now get saved in ri data.
|
1344
|
+
* ri now displays method arguments correctly.
|
1345
|
+
* RDoc::Markup::Parser allows no space between = and header text like rdoc
|
1346
|
+
2.4 and earlier.
|
1347
|
+
* RDoc::Parser::C's "in" directive now looks in the current directory.
|
1348
|
+
* RDoc::Task's rerdoc task no longer deletes the doc directory twice.
|
1349
|
+
* rdoc --force-update now works correctly. Patch by Nobu Nokada
|
1350
|
+
|
1351
|
+
=== 2.5 / 2010-03-31
|
1352
|
+
|
1353
|
+
* 9 Major Enhancements
|
1354
|
+
* Darkfish now has a "Home" button
|
1355
|
+
* ri no longer displays the value of a constant. There's no easy way to
|
1356
|
+
make them presentable. Use irb or ruby -e instead. Ruby Bug #549.
|
1357
|
+
* New ri data format now uses Marshal and pre-builds caches
|
1358
|
+
* No support for old ri data format, too hard to maintain
|
1359
|
+
* To upgrade your core ri documentation, install the rdoc-data gem and run
|
1360
|
+
rdoc-data
|
1361
|
+
* RDoc now displays how well you've documented your library
|
1362
|
+
* New recursive-descent parser for RDoc::Markup. See RDoc::Markup::Parser
|
1363
|
+
* Updated ruby_lex and ruby_token
|
1364
|
+
* Removed threading support, RDoc is not thread-safe
|
1365
|
+
* Removed many unsupported options to rdoc
|
1366
|
+
* Future versions of RDoc will not support Ruby 1.8.6. Bugs filed for
|
1367
|
+
1.8.6-only issues will be (largely) rejected.
|
1368
|
+
|
1369
|
+
* 17 Minor Enhancements
|
1370
|
+
* Source Parsing
|
1371
|
+
* RDoc now supports module aliasing via constant assignment.
|
1372
|
+
* RDoc now tracks superclasses correctly. Fixes File < IO for core docs.
|
1373
|
+
* RDoc now ignores methods inside methods.
|
1374
|
+
* RDoc now ignores Marshal and other binray files.
|
1375
|
+
* Removed "Skipping require of dynamic string" warning.
|
1376
|
+
* C parser now handles Document-method better. Bug #27329.
|
1377
|
+
* API enhancements for writing parsers like the Ruby parser, see
|
1378
|
+
RDoc::Parser::RubyTools
|
1379
|
+
* ri
|
1380
|
+
* Uses pager over less and more for Debian. Ruby Bug #1171.
|
1381
|
+
* ri will use the RI_PAGER environment variable to find a pager.
|
1382
|
+
* ri data generator now supports SIGINFO (^T)
|
1383
|
+
* When rdoc is in debug mode, ^C now prints a backtrace
|
1384
|
+
* RDoc::Markup::AttributeManager no longer uses global state.
|
1385
|
+
* RDoc::RDoc no longer passes around options. Patch #27167.
|
1386
|
+
* Darkfish won't generate a file if its template is missing. Patch #25857.
|
1387
|
+
* Improved some wording for the RDoc main page. Patch #27264, #27268.
|
1388
|
+
* Removed diagram generation support (to return in the future).
|
1389
|
+
* Removed external support for RDoc::Task.
|
1390
|
+
|
1391
|
+
* 12 Bug Fixes
|
1392
|
+
* The :attr: directives now use the name given to create an attribute. See
|
1393
|
+
RDoc::Parser::Ruby#parse_meta_attr.
|
1394
|
+
* Fix crossrefs on paths with '-'. Ruby Bug #883.
|
1395
|
+
* Fix ruby parser for alias with = in the name. Bug #27522.
|
1396
|
+
* Images are no longer executable. Bug #27156.
|
1397
|
+
* --op is no longer overridden by --ri. Bug #27054.
|
1398
|
+
* :method: now works when at the end of a class. Bug #26910.
|
1399
|
+
* Preserve ellipsis from call-seq in Darkfish. Patch #26974.
|
1400
|
+
* Emacs-style <tt>coding:</tt> is handled properly. Patch #27388.
|
1401
|
+
* RDoc::RubyLex now parses UTF-8 identifiers. Bug #26946, #26947.
|
1402
|
+
* Fixed namespace lookup rules. Bug #26161.
|
1403
|
+
* Worked around bug in Selenium where they hide a .jar in a .txt file.
|
1404
|
+
Filed Selenium bug #27789.
|
1405
|
+
* Alias comments are no longer hidden. Reported by Adam Avilla.
|
1406
|
+
|
1407
|
+
=== 2.4.3 / 2009-04-01
|
1408
|
+
|
1409
|
+
* 2 Bug Fixes
|
1410
|
+
* Corrected patch for file links
|
1411
|
+
* Corrected display of file popup
|
1412
|
+
|
1413
|
+
=== 2.4.2 / 2009-03-25
|
1414
|
+
|
1415
|
+
* 2 Minor Enhancements
|
1416
|
+
* Added --pipe for turning RDoc on stdin into HTML
|
1417
|
+
* Added rdoc/task.rb containing a replacement for rake/rdoctask.rb. Use
|
1418
|
+
RDoc::Task now instead of Rake::RDocTask.
|
1419
|
+
|
1420
|
+
* 10 Bug Fixes
|
1421
|
+
* Writing the ri cache file to the proper directory. Bug #24459 by Lars
|
1422
|
+
Christensen.
|
1423
|
+
* Possible fix for Dir::[] and Pathname interaction on 1.9. Bug #24650 by
|
1424
|
+
tiburon.
|
1425
|
+
* Fixed scanning constants for if/end, etc. pairs. Bug #24609 by Ryan
|
1426
|
+
Davis.
|
1427
|
+
* Fixed private methods in the C parser. Bug #24599 by Aaron Patterson.
|
1428
|
+
* Fixed display of markup on RDoc main page. Bug #24168 by rhubarb.
|
1429
|
+
* Fixed display of \\ character in documentation proceeding words.
|
1430
|
+
Bug #22112 by James Gray. See RDoc for details.
|
1431
|
+
* Fixed parsing and display of arg params for some corner cases. Bug #21113
|
1432
|
+
by Csiszár Attila.
|
1433
|
+
* Fixed links in Files box. Patch #24403 by Eric Wong.
|
1434
|
+
* Toplevel methods now appear in Object. Bug #22677 by Ryan Davis.
|
1435
|
+
* Added back --promiscuous which didn't do anything you cared about. Why
|
1436
|
+
did you enable it? Nobody looked at that page! Oh, it warns, too.
|
1437
|
+
|
1438
|
+
=== 2.4.1 / 2009-02-26
|
1439
|
+
|
1440
|
+
* 1 Minor Enhancements
|
1441
|
+
* Added :attr:, :attr_reader:, :attr_writer:, :attr_accessor: directives.
|
1442
|
+
Replaces --accessor. See RDoc::Parser::Ruby for details.
|
1443
|
+
|
1444
|
+
* 3 Bug Fixes
|
1445
|
+
* Don't complain when exiting normally. Bug by Matt Neuburg.
|
1446
|
+
* Restore --inline-source that warns
|
1447
|
+
* Fixed links to files in Darkfish output
|
1448
|
+
|
1449
|
+
=== 2.4.0 / 2009-02-24
|
1450
|
+
|
1451
|
+
* 9 Minor Enhancements
|
1452
|
+
* `ri -f html` is now XHTML-happy
|
1453
|
+
* Clarified RDoc::Markup link syntax. Bug #23517 by Eric Armstrong.
|
1454
|
+
* Number of threads to parse with is now configurable
|
1455
|
+
* Darkfish can now use alternate templates from $LOAD_PATH via -T
|
1456
|
+
* Removed F95 parser in favor of the rdoc-f95 gem
|
1457
|
+
* Moved HTML and XML generators to unmaintained
|
1458
|
+
* No gem will be provided as it's too difficult to make them work
|
1459
|
+
* Removed options --one-file, --style=, --inline-source, --promiscuous,
|
1460
|
+
--op-name
|
1461
|
+
* Removed support for --accessor, use regular documentation or
|
1462
|
+
the method directive instead. See RDoc::Parser::Ruby
|
1463
|
+
* Removed --ri-system as it is unused by Ruby's makefiles
|
1464
|
+
* Added method list to index.html
|
1465
|
+
|
1466
|
+
* 6 Bug Fixes
|
1467
|
+
* A class marked nodoc no longer appears in the index. Bug #23751 by
|
1468
|
+
Clifford Heath.
|
1469
|
+
* Fix 1.9 compatibility issues. Bug #23815 by paddor.
|
1470
|
+
* Darkfish now respects --charset
|
1471
|
+
* RDoc no longer attempts to be lazy when building HTML. This is a
|
1472
|
+
workaround. Bug #23893 by Stefano Crocco.
|
1473
|
+
* RDoc doesn't crash with def (blah).foo() end
|
1474
|
+
* RDoc doesn't crash with #define functions
|
1475
|
+
|
1476
|
+
=== 2.3.0 / 2009-01-28
|
1477
|
+
|
1478
|
+
* 3 Major Enhancements
|
1479
|
+
* Michael Granger's Darkfish generator is now the default for HTML output
|
1480
|
+
* Various rdoc generation speedups by Hongli Lai. Patches #22555, #22556,
|
1481
|
+
#22557, #22562, #22565.
|
1482
|
+
* rdoc/discover.rb files are loaded automatically from installed gems
|
1483
|
+
|
1484
|
+
* 8 Minor Enhancements
|
1485
|
+
* Added a space after the commas in ri class method lists. RubyForge
|
1486
|
+
enhancement #22182.
|
1487
|
+
* Improved ri --interactive
|
1488
|
+
* Generators can now override generated file locations
|
1489
|
+
* Moved unmaintained CHM generator to it's own package
|
1490
|
+
* Moved unmaintained extra HTML templates to their own package
|
1491
|
+
* Removed experimental texinfo generator
|
1492
|
+
* Converted to minitest
|
1493
|
+
* Known classes and modules list outputs once per line now for grep
|
1494
|
+
|
1495
|
+
* 11 Bug Fixes
|
1496
|
+
* Fix missing superclass in ri output
|
1497
|
+
* Fix an RDoc crash when told to parse an empty file
|
1498
|
+
* Ignore nonexistent files instead of crashing
|
1499
|
+
* .txt and .rdoc files are always considered text. Patch #22897 by Aaron
|
1500
|
+
Patterson.
|
1501
|
+
* When merging ri data with a nonexistent directory, RDoc no longer crashes
|
1502
|
+
* Fix visibility of methods in XML output. Issue by Yehuda Katz.
|
1503
|
+
* Fixed relative link generation
|
1504
|
+
* Fix crash, RDoc now ignores comments above local variable assignments in
|
1505
|
+
modules
|
1506
|
+
* RDoc now only accepts adjacent comments for rb_define_module and
|
1507
|
+
rb_define_class
|
1508
|
+
* C file RDoc is no longer included in token stream
|
1509
|
+
* Scan all gem paths to match gem name for ri output
|
1510
|
+
|
1511
|
+
=== 2.2.1 / 2008-09-24
|
1512
|
+
This version provides some minor fixes and enhancements to 2.2.0 intended
|
1513
|
+
to polish RDoc for Ruby 1.9.1.
|
1514
|
+
|
1515
|
+
* 3 Minor Enhancements
|
1516
|
+
* Support for parsing RDoc from SWIG. Ruby patch #10742 by Gonzalo
|
1517
|
+
Garramuno, #13993 by Steven Jenkins.
|
1518
|
+
* Simple support for Perl POD documentation. Patch by Hugh Sasse.
|
1519
|
+
* Changed the default character set of RDoc's output from iso-8859-1 to
|
1520
|
+
utf-8.
|
1521
|
+
|
1522
|
+
* 9 Bug Fixes
|
1523
|
+
* Explicitly set the html template's text color, so that the generated
|
1524
|
+
documentation will display correctly on browsers with custom text and
|
1525
|
+
background color settings (patch by Luther Thompson).
|
1526
|
+
* Ensure that RDoc correctly will associate an alias and a method, even
|
1527
|
+
if it encounters the alias first because the alias lives in a different
|
1528
|
+
file.
|
1529
|
+
* Fix the parsing of multiline constants (patch by Chris Alfeld and
|
1530
|
+
Joel VanderWerf)
|
1531
|
+
* Make --exclude usuable. Ruby patch #11671 by Trans.
|
1532
|
+
* Detect inline C functions. Ruby Bug #11993 by Florian Frank.
|
1533
|
+
* Fix an issue in which RDoc might not document a class'
|
1534
|
+
superclass correctly if the class was defined in multiple files and
|
1535
|
+
depending on the order in which RDoc processed the files. This should
|
1536
|
+
ensure that the child class -> parent class relationship is correct in
|
1537
|
+
ri documentation, allowing ri to lookup inherited methods (i.e., File.read).
|
1538
|
+
* Stop ri from crashing when it looks for a completely bogus method (i.e.,
|
1539
|
+
File#reada). Now, ri exits with a helpful error message.
|
1540
|
+
* Fixed missing display of constant values in ri.
|
1541
|
+
* Fixed display of constants in ri's html output.
|
1542
|
+
|
1543
|
+
=== 2.2.0 / 2008-09-19
|
1544
|
+
This version includes some significant enhancements to ri. See RI.txt for
|
1545
|
+
documentation about ri.
|
1546
|
+
|
1547
|
+
* 5 Major Enhancements
|
1548
|
+
* More extensive unit tests (special thanks to Chris Lowis for contributing
|
1549
|
+
a test).
|
1550
|
+
* Made ri twice as fast for the most common use case of displaying
|
1551
|
+
information for a class or a fully-qualified method
|
1552
|
+
(i.e., ri Array#flatten, after ri has created a cache the first time that
|
1553
|
+
it runs).
|
1554
|
+
* Made ri many times faster when searching for an unqualified method (i.e.,
|
1555
|
+
ri read, again after the first such search has populated ri's cache)
|
1556
|
+
* Changed ri to do regular expression searches for unqualified methods;
|
1557
|
+
now, a regular expression for a method can be passed to ri on the
|
1558
|
+
command-line.
|
1559
|
+
* Added an interactive mode to ri (patch by Daniel Choi). Now, when ri
|
1560
|
+
is given a -i argument, it will allow the user to disambiguate
|
1561
|
+
unqualified methods if more than one is present and also will allow a
|
1562
|
+
user to get information for a class' method.
|
1563
|
+
|
1564
|
+
* 8 Minor Enhancements
|
1565
|
+
* RDoc now adds the package title to the web pages that it generates
|
1566
|
+
for files and classes/modules, which helps them appear better in
|
1567
|
+
search engine results.
|
1568
|
+
* RDoc now automatically generates cross-reference links for classes and
|
1569
|
+
methods specified relative to the global namespace (i.e., ::A::B::C#method).
|
1570
|
+
* All built-in templates now output valid, strict XHTML.
|
1571
|
+
* The documentation is slightly better organized (the markup details were
|
1572
|
+
merged into the RDoc module's documentation).
|
1573
|
+
* Improved rdoc's HTML generation speed by about 20% (on Windows, the
|
1574
|
+
boost seems larger).
|
1575
|
+
* Provided an ri command-line option to control its caching behavior.
|
1576
|
+
* Improved RDoc's documentation. Added RI.txt to document ri.
|
1577
|
+
* Allow HTML templates distributed as gems to be loaded with the -T option,
|
1578
|
+
just like the standard templates in rdoc/generator/html (so an HTML
|
1579
|
+
template lib/new_template.rb in a gem can be used with rdoc -T new_template)
|
1580
|
+
|
1581
|
+
* 25 Bug fixes:
|
1582
|
+
* Fixed prototype detection in C parser. Can process ruby 1.8 C files
|
1583
|
+
again.
|
1584
|
+
* Fixed the main page for frameless template. Patch by Marcin Raczkowski.
|
1585
|
+
* Fixed the main page for frame templates. Now, if no main page is
|
1586
|
+
specified, RDoc will default to the README.
|
1587
|
+
* Fixed missing stylesheet in generated chm. Patch by Gordon Thiesfeld.
|
1588
|
+
* Fixed the parsing of module names starting with '::'. Patch by
|
1589
|
+
Giuseppe Bilotta.
|
1590
|
+
* Fixed a case where RDoc first would encounter Foo::Bar and then would
|
1591
|
+
encounter class Foo. Previously, RDoc erroneously would have considered
|
1592
|
+
that both a Foo class and a Foo module existed.
|
1593
|
+
* Fix a class where RDoc would not generate correct cross-reference links
|
1594
|
+
to a class contained within a module of the same name (i.e. RDoc::RDoc)
|
1595
|
+
* Prevented RDoc from trying to parse binary files, which would produce
|
1596
|
+
garbage output.
|
1597
|
+
* RDoc now correctly converts ' characters to apostrophes, opening single
|
1598
|
+
quotes, and closing single quotes in most cases (smart single quotes).
|
1599
|
+
* RDoc now correctly converts " characters to opening double quotes and
|
1600
|
+
and closing double quotes in most cases (smart double quotes).
|
1601
|
+
* (c) correctly is converted into the copyright symbol.
|
1602
|
+
* '&' characters in text now correctly are translated to HTML character codes.
|
1603
|
+
* Fixed missing stylesheet in generated chm. Patch by Gordon Thiesfeld.
|
1604
|
+
* Fixed broken method links in the built-in templates.
|
1605
|
+
* RDoc properly links to files and classes in the one page HTML template.
|
1606
|
+
* The kilmer and hefss templates properly syntax highlight when inlining
|
1607
|
+
source code.
|
1608
|
+
* The kilmer and hefss template class pages properly display methods again.
|
1609
|
+
* Fixed broken class, file, and method links in the frameless template.
|
1610
|
+
* Fixed the clipping of source code in the html and frameless templates when
|
1611
|
+
the source code cannot fit into the window; a scrollbar now will allow
|
1612
|
+
all of the source code to be viewed.
|
1613
|
+
* Fixed the missing constant descriptions in the html and frameless
|
1614
|
+
templates.
|
1615
|
+
* Fixed the ri command-line options that customize the directories to be
|
1616
|
+
searched for documentation.
|
1617
|
+
* Fixed the XML generator. Patch by Anthony Durity.
|
1618
|
+
* Stopped the XML template from generating invalid XML due to malformed
|
1619
|
+
embedded ruby.
|
1620
|
+
* Adding missing information about a class' constants to the XML template.
|
1621
|
+
* Fixed the horizontal rule markup (---) so that it correctly adds a
|
1622
|
+
horizontal rule rather than suppressing all text that follows.
|
1623
|
+
|
1624
|
+
=== 2.1.0 / 2008-07-20
|
1625
|
+
|
1626
|
+
* 3 Major Enhancements:
|
1627
|
+
* RDoc now knows about meta-programmed methods, see RDoc::Parser::Ruby
|
1628
|
+
* Reorganized parsers under RDoc::Parser base class
|
1629
|
+
* ri now walks the ancestors of a class looking for a method e.g. ri
|
1630
|
+
File#read displays documentation for IO#read (may require regeneration of
|
1631
|
+
ri data)
|
1632
|
+
* 5 Minor Enhancements:
|
1633
|
+
* Allow links to files
|
1634
|
+
* Default options now taken from RDOCOPT environment variable
|
1635
|
+
* Class method documentation can be found at toplevel now (def X.foo)
|
1636
|
+
* Allow HTML templates distributed as gems to be loaded with the -T option,
|
1637
|
+
just like the standard templates in rdoc/generator/html (so an HTML
|
1638
|
+
template lib/new_template.rb in a gem can be used with rdoc -T new_template)
|
1639
|
+
* `rdoc -v` prints out files, classes, modules and methods as it goes
|
1640
|
+
* 11 Bug Fixes:
|
1641
|
+
* `ri Foo.bar` now looks for class methods also
|
1642
|
+
* Sections work in the default template again
|
1643
|
+
* Doesn't warn about :foo:: list item being an unrecognized directive
|
1644
|
+
* RDoc no longer converts characters inside tt tags
|
1645
|
+
* Fixed "uninitialized constant RDoc::Markup::ToHtml::HTML"
|
1646
|
+
* Fixed generation of relative links
|
1647
|
+
* Fixed various diagram generation issues
|
1648
|
+
* Fixed templates broken by switch to erb
|
1649
|
+
* Fixed issue with <!-- --> style comments
|
1650
|
+
* Lowercase words are no longer rdoc'd as methods without leading #, as
|
1651
|
+
described in the documentation
|
1652
|
+
* RDoc now correctly sets superclasses if they were originally unknown
|
1653
|
+
|
1654
|
+
=== 2.0.0 / 2008-04-10
|
1655
|
+
|
1656
|
+
* 3 Major Enhancements:
|
1657
|
+
* Renamespaced everything RDoc under the RDoc module.
|
1658
|
+
* New `ri` implementation.
|
1659
|
+
* Reads from a cache in ~/.ri/ for enhanced speed.
|
1660
|
+
* RubyGems aware, only searches latest gem versions.
|
1661
|
+
* Now up to over 100 tests and 200 assertions.
|
1662
|
+
* 4 Minor Enhancements:
|
1663
|
+
* Switched to an ERb-based TemplatePage, see RDoc::TemplatePage.
|
1664
|
+
* Class/module ri now displays attribute and constant comments.
|
1665
|
+
* Cross-references can be disabled with a leading \.
|
1666
|
+
* Relaxed parsing for some RDoc inline markup.
|