cli-nasa 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +38 -0
- data/LICENSE.txt +21 -0
- data/README.md +56 -0
- data/Rakefile +6 -0
- data/bin/run_me +10 -0
- data/cli-nasa.gemspec +28 -0
- data/config/environment.rb +5 -0
- data/lib/models/content.rb +28 -0
- data/lib/services/cli.rb +202 -0
- data/lib/services/cli_nasa_API.rb +28 -0
- data/lib/services/version.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/bin/htmldiff +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/httparty +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/ldiff +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/rspec +27 -0
- data/vendor/bundle/ruby/2.7.0/bin/ruby_executable_hooks +25 -0
- data/vendor/bundle/ruby/2.7.0/cache/diff-lcs-1.4.4.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/httparty-0.18.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/json-2.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/mime-types-3.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/mime-types-data-3.2020.0512.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/multi_xml-0.6.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rake-12.3.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rspec-3.9.0.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rspec-core-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rspec-expectations-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rspec-mocks-3.9.1.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/cache/rspec-support-3.9.3.gem +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-18/2.7.0/json-2.3.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-18/2.7.0/json-2.3.1/gem_make.out +13 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-18/2.7.0/json-2.3.1/json/ext/generator.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-18/2.7.0/json-2.3.1/json/ext/parser.bundle +0 -0
- data/vendor/bundle/ruby/2.7.0/extensions/x86_64-darwin-18/2.7.0/json-2.3.1/mkmf.log +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/.rspec +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Code-of-Conduct.md +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Contributing.md +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/History.md +319 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/License.md +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Manifest.txt +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/README.rdoc +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/Rakefile +74 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/autotest/discover.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/bin/htmldiff +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/bin/ldiff +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/docs/COPYING.txt +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/docs/artistic.txt +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff-lcs.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs.rb +739 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/array.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/backports.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/block.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/callbacks.rb +325 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/change.rb +174 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/htmldiff.rb +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/hunk.rb +358 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/internals.rb +304 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/ldiff.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/lib/diff/lcs/string.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/change_spec.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/diff_spec.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/aX +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/bXaX +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ds1.csv +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ds2.csv +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-c +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-e +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-f +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/fixtures/ldiff/output.diff-u +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/hunk_spec.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/issues_spec.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/lcs_spec.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/ldiff_spec.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/patch_spec.rb +416 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/sdiff_spec.rb +214 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/spec_helper.rb +375 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/traverse_balanced_spec.rb +310 -0
- data/vendor/bundle/ruby/2.7.0/gems/diff-lcs-1.4.4/spec/traverse_sequences_spec.rb +139 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.editorconfig +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.gitignore +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.rubocop.yml +92 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.rubocop_todo.yml +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.simplecov +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/.travis.yml +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/CONTRIBUTING.md +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/Changelog.md +530 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/Gemfile +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/Guardfile +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/README.md +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/Rakefile +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/bin/httparty +123 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/cucumber.yml +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/docs/README.md +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/README.md +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/aaws.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/basic.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/body_stream.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/crack.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/delicious.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/google.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/headers_and_user_agents.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/logging.rb +36 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/microsoft_graph.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/multipart.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/nokogiri_html_parser.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/peer_cert.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/rescue_json.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/rubyurl.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/stackexchange.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/stream_download.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/tripit_sign_in.rb +44 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/twitter.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/whoismyrep.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/httparty.gemspec +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty.rb +668 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/connection_adapter.rb +254 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/cookie_hash.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/exceptions.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/hash_conversions.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/headers_processor.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/logger/apache_formatter.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/logger/curl_formatter.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/logger/logger.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/logger/logstash_formatter.rb +59 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/module_inheritable_attributes.rb +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/net_digest_auth.rb +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/parser.rb +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/request.rb +379 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/request/body.rb +84 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/request/multipart_boundary.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/response.rb +154 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/response/headers.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/response_fragment.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/text_encoder.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/utils.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/lib/httparty/version.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/script/release +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/website/css/common.css +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/website/index.html +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/.gitignore +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/.travis.yml +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/CHANGES.md +424 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/Gemfile +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/README-json-jruby.md +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/README.md +425 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/Rakefile +334 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/VERSION +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/diagrams/.keep +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/fbuffer/fbuffer.h +187 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/generator/depend +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/generator/extconf.rb +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/generator/generator.c +1569 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/generator/generator.h +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/depend +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/extconf.rb +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/parser.c +2137 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/parser.h +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/ext/parser/parser.rl +897 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/ext/json/extconf.rb +2 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/install.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/ByteListTranscoder.java +166 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/Generator.java +466 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/GeneratorMethods.java +231 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/GeneratorService.java +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/GeneratorState.java +490 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/OptionsReader.java +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/Parser.java +2362 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/Parser.rl +893 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/ParserService.java +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/RuntimeInfo.java +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/StringDecoder.java +166 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/StringEncoder.java +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/java/src/json/ext/Utils.java +88 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/json-java.gemspec +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/json.gemspec +139 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/json_pure.gemspec +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json.rb +412 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/bigdecimal.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/complex.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/core.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/date.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/date_time.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/exception.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/range.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/rational.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/regexp.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/set.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/struct.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/symbol.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/time.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/common.rb +691 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/ext.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/ext/.keep +0 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/generic_object.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/pure.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/pure/generator.rb +459 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/pure/parser.rb +319 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/references/rfc7159.txt +899 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail10.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail11.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail12.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail13.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail14.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail18.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail19.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail2.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail20.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail21.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail22.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail23.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail24.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail25.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail27.json +2 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail28.json +2 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail3.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail4.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail5.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail6.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail7.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail8.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/fail9.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/obsolete_fail1.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass1.json +56 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass15.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass16.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass17.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass2.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass26.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/fixtures/pass3.json +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_addition_test.rb +203 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_common_interface_test.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_encoding_test.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_ext_parser_test.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_generator_test.rb +421 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_generic_object_test.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_parser_test.rb +472 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_string_matching_test.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/test_helper.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tools/diff.sh +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tools/fuzz.rb +131 -0
- data/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tools/server.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/Code-of-Conduct.md +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/Contributing.md +143 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/History.md +240 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/Licence.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/Manifest.txt +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/README.rdoc +193 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/Rakefile +284 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/type.rb +587 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types.rb +231 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +136 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/cache.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/full.rb +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/loader.rb +146 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/logger.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/lib/mime/types/registry.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/bad-fixtures/malformed +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/fixture/json.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/fixture/old-data +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/fixture/yaml.yaml +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/minitest_helper.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_type.rb +610 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_types.rb +169 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +118 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_types_class.rb +159 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/Code-of-Conduct.md +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/Contributing.md +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/History.md +436 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/Licence.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/Manifest.txt +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/README.md +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/Rakefile +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime-types.json +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.content_type.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.docs.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.encoding.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.flags.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.friendly.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.pext.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.use_instead.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/data/mime.xrefs.column +2277 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/lib/mime-types-data.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/lib/mime/types/data.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/application.yaml +16703 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/audio.yaml +1679 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/chemical.yaml +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/conference.yaml +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/drawing.yaml +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/font.yaml +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/image.yaml +1217 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/message.yaml +200 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/model.yaml +322 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/multipart.yaml +179 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/text.yaml +1075 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/video.yaml +1070 -0
- data/vendor/bundle/ruby/2.7.0/gems/mime-types-data-3.2020.0512/types/world.yaml +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/.yardopts +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/CHANGELOG.md +93 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/CONTRIBUTING.md +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/LICENSE.md +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/README.md +95 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml.rb +305 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/libxml2_parser.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/nokogiri.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/oga.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/ox.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/parsers/rexml.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/lib/multi_xml/version.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/multi_xml-0.6.0/multi_xml.gemspec +19 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/CONTRIBUTING.rdoc +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/Gemfile +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/History.rdoc +2344 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/README.rdoc +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/Rakefile +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/azure-pipelines.yml +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/bundle +105 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/console +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/rake +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/rdoc +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/rubocop +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/bin/setup +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/exe/rake +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake.rb +71 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/application.rb +824 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/backtrace.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/dsl_definition.rb +195 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/file_task.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/file_utils.rb +137 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/file_utils_ext.rb +145 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/packagetask.rb +207 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/task.rb +413 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/task_manager.rb +324 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/testtask.rb +224 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rake-12.3.3/rake.gemspec +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/LICENSE.md +27 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/README.md +43 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/lib/rspec.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/.document +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/.yardopts +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/Changelog.md +2291 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/LICENSE.md +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/README.md +384 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/exe/rspec +4 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/autorun.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core.rb +186 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/backtrace_formatter.rb +65 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/coordinator.rb +62 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/example_minimizer.rb +173 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/fork_runner.rb +135 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/server.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_command.rb +126 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_runner.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/utilities.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration.rb +2363 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration_options.rb +233 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/did_you_mean.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/drb.rb +113 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/dsl.rb +98 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/example.rb +656 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/example_group.rb +900 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/example_status_persister.rb +235 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/filter_manager.rb +231 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/flat_map.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters.rb +273 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/console_codes.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/exception_presenter.rb +511 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/helpers.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_formatter.rb +153 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_printer.rb +414 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/json_formatter.rb +102 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/progress_formatter.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/protocol.rb +182 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/hooks.rb +641 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/memoized_helpers.rb +554 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/metadata.rb +498 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/metadata_filter.rb +255 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/notifications.rb +521 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/option_parser.rb +316 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/ordering.rb +158 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/output_wrapper.rb +29 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/pending.rb +165 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/profiler.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/.rspec +1 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/rake_task.rb +188 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/reporter.rb +265 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/ruby_project.rb +53 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/runner.rb +204 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/sandbox.rb +37 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/set.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/shared_context.rb +55 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/shared_example_group.rb +271 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/shell_escape.rb +49 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/warnings.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-core-3.9.2/lib/rspec/core/world.rb +276 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/.document +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/.yardopts +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/Changelog.md +1191 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/README.md +320 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/configuration.rb +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/expectation_target.rb +127 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/fail_with.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/handler.rb +170 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/minitest_integration.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/syntax.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers.rb +1038 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in.rb +52 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/all.rb +86 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be.rb +288 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/change.rb +428 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/compound.rb +276 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/exist.rb +90 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/has.rb +103 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/include.rb +149 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/match.rb +106 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/output.rb +200 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/raise_error.rb +230 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/respond_to.rb +199 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/satisfy.rb +60 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/yield.rb +441 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/composable.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/dsl.rb +540 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/generated_descriptions.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/.document +5 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/.yardopts +6 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/README.md +463 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/Changelog.md +302 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/LICENSE.md +23 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/README.md +40 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support.rb +149 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/encoded_string.rb +161 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/reentrant_mutex.rb +61 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/ruby_features.rb +190 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/source.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/source/location.rb +21 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/source/node.rb +110 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/source/token.rb +87 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec.rb +81 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/in_sub_process.rb +69 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/shell_out.rb +89 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/stderr_splitter.rb +75 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.9.3/lib/rspec/support/with_keywords_when_needed.rb +33 -0
- data/vendor/bundle/ruby/2.7.0/specifications/diff-lcs-1.4.4.gemspec +50 -0
- data/vendor/bundle/ruby/2.7.0/specifications/httparty-0.18.1.gemspec +36 -0
- data/vendor/bundle/ruby/2.7.0/specifications/json-2.3.1.gemspec +0 -0
- data/vendor/bundle/ruby/2.7.0/specifications/mime-types-3.3.1.gemspec +67 -0
- data/vendor/bundle/ruby/2.7.0/specifications/mime-types-data-3.2020.0512.gemspec +50 -0
- data/vendor/bundle/ruby/2.7.0/specifications/multi_xml-0.6.0.gemspec +30 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rake-12.3.3.gemspec +43 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-3.9.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-core-3.9.2.gemspec +53 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-expectations-3.9.2.gemspec +44 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-mocks-3.9.1.gemspec +44 -0
- data/vendor/bundle/ruby/2.7.0/specifications/rspec-support-3.9.3.gemspec +36 -0
- metadata +680 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
#ifndef _PARSER_H_
|
2
|
+
#define _PARSER_H_
|
3
|
+
|
4
|
+
#include "ruby.h"
|
5
|
+
|
6
|
+
#ifndef HAVE_RUBY_RE_H
|
7
|
+
#include "re.h"
|
8
|
+
#endif
|
9
|
+
|
10
|
+
#ifdef HAVE_RUBY_ST_H
|
11
|
+
#include "ruby/st.h"
|
12
|
+
#else
|
13
|
+
#include "st.h"
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#define option_given_p(opts, key) RTEST(rb_funcall(opts, i_key_p, 1, key))
|
17
|
+
|
18
|
+
/* unicode */
|
19
|
+
|
20
|
+
typedef unsigned long UTF32; /* at least 32 bits */
|
21
|
+
typedef unsigned short UTF16; /* at least 16 bits */
|
22
|
+
typedef unsigned char UTF8; /* typically 8 bits */
|
23
|
+
|
24
|
+
#define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
|
25
|
+
#define UNI_SUR_HIGH_START (UTF32)0xD800
|
26
|
+
#define UNI_SUR_HIGH_END (UTF32)0xDBFF
|
27
|
+
#define UNI_SUR_LOW_START (UTF32)0xDC00
|
28
|
+
#define UNI_SUR_LOW_END (UTF32)0xDFFF
|
29
|
+
|
30
|
+
typedef struct JSON_ParserStruct {
|
31
|
+
VALUE Vsource;
|
32
|
+
char *source;
|
33
|
+
long len;
|
34
|
+
char *memo;
|
35
|
+
VALUE create_id;
|
36
|
+
int max_nesting;
|
37
|
+
int allow_nan;
|
38
|
+
int parsing_name;
|
39
|
+
int symbolize_names;
|
40
|
+
VALUE object_class;
|
41
|
+
VALUE array_class;
|
42
|
+
VALUE decimal_class;
|
43
|
+
int create_additions;
|
44
|
+
VALUE match_string;
|
45
|
+
FBuffer *fbuffer;
|
46
|
+
} JSON_Parser;
|
47
|
+
|
48
|
+
#define GET_PARSER \
|
49
|
+
GET_PARSER_INIT; \
|
50
|
+
if (!json->Vsource) rb_raise(rb_eTypeError, "uninitialized instance")
|
51
|
+
#define GET_PARSER_INIT \
|
52
|
+
JSON_Parser *json; \
|
53
|
+
TypedData_Get_Struct(self, JSON_Parser, &JSON_Parser_type, json)
|
54
|
+
|
55
|
+
#define MinusInfinity "-Infinity"
|
56
|
+
#define EVIL 0x666
|
57
|
+
|
58
|
+
static UTF32 unescape_unicode(const unsigned char *p);
|
59
|
+
static int convert_UTF32_to_UTF8(char *buf, UTF32 ch);
|
60
|
+
static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting);
|
61
|
+
static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting);
|
62
|
+
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
63
|
+
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
64
|
+
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting);
|
65
|
+
static VALUE json_string_unescape(VALUE result, char *string, char *stringEnd);
|
66
|
+
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result);
|
67
|
+
static VALUE convert_encoding(VALUE source);
|
68
|
+
static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self);
|
69
|
+
static VALUE cParser_parse(VALUE self);
|
70
|
+
static void JSON_mark(void *json);
|
71
|
+
static void JSON_free(void *json);
|
72
|
+
static VALUE cJSON_parser_s_allocate(VALUE klass);
|
73
|
+
static VALUE cParser_source(VALUE self);
|
74
|
+
#ifndef ZALLOC
|
75
|
+
#define ZALLOC(type) ((type *)ruby_zalloc(sizeof(type)))
|
76
|
+
static inline void *ruby_zalloc(size_t n)
|
77
|
+
{
|
78
|
+
void *p = ruby_xmalloc(n);
|
79
|
+
memset(p, 0, n);
|
80
|
+
return p;
|
81
|
+
}
|
82
|
+
#endif
|
83
|
+
#ifdef TypedData_Make_Struct
|
84
|
+
static const rb_data_type_t JSON_Parser_type;
|
85
|
+
#define NEW_TYPEDDATA_WRAPPER 1
|
86
|
+
#else
|
87
|
+
#define TypedData_Make_Struct(klass, type, ignore, json) Data_Make_Struct(klass, type, NULL, JSON_free, json)
|
88
|
+
#define TypedData_Get_Struct(self, JSON_Parser, ignore, json) Data_Get_Struct(self, JSON_Parser, json)
|
89
|
+
#endif
|
90
|
+
|
91
|
+
#endif
|
@@ -0,0 +1,897 @@
|
|
1
|
+
#include "../fbuffer/fbuffer.h"
|
2
|
+
#include "parser.h"
|
3
|
+
|
4
|
+
#if defined HAVE_RUBY_ENCODING_H
|
5
|
+
# define EXC_ENCODING rb_utf8_encoding(),
|
6
|
+
# ifndef HAVE_RB_ENC_RAISE
|
7
|
+
static void
|
8
|
+
enc_raise(rb_encoding *enc, VALUE exc, const char *fmt, ...)
|
9
|
+
{
|
10
|
+
va_list args;
|
11
|
+
VALUE mesg;
|
12
|
+
|
13
|
+
va_start(args, fmt);
|
14
|
+
mesg = rb_enc_vsprintf(enc, fmt, args);
|
15
|
+
va_end(args);
|
16
|
+
|
17
|
+
rb_exc_raise(rb_exc_new3(exc, mesg));
|
18
|
+
}
|
19
|
+
# define rb_enc_raise enc_raise
|
20
|
+
# endif
|
21
|
+
#else
|
22
|
+
# define EXC_ENCODING /* nothing */
|
23
|
+
# define rb_enc_raise rb_raise
|
24
|
+
#endif
|
25
|
+
|
26
|
+
/* unicode */
|
27
|
+
|
28
|
+
static const signed char digit_values[256] = {
|
29
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
30
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
31
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1,
|
32
|
+
-1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
|
33
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
34
|
+
10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
35
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
36
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
37
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
38
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
39
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
40
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
41
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
42
|
+
-1, -1, -1, -1, -1, -1, -1
|
43
|
+
};
|
44
|
+
|
45
|
+
static UTF32 unescape_unicode(const unsigned char *p)
|
46
|
+
{
|
47
|
+
signed char b;
|
48
|
+
UTF32 result = 0;
|
49
|
+
b = digit_values[p[0]];
|
50
|
+
if (b < 0) return UNI_REPLACEMENT_CHAR;
|
51
|
+
result = (result << 4) | (unsigned char)b;
|
52
|
+
b = digit_values[p[1]];
|
53
|
+
if (b < 0) return UNI_REPLACEMENT_CHAR;
|
54
|
+
result = (result << 4) | (unsigned char)b;
|
55
|
+
b = digit_values[p[2]];
|
56
|
+
if (b < 0) return UNI_REPLACEMENT_CHAR;
|
57
|
+
result = (result << 4) | (unsigned char)b;
|
58
|
+
b = digit_values[p[3]];
|
59
|
+
if (b < 0) return UNI_REPLACEMENT_CHAR;
|
60
|
+
result = (result << 4) | (unsigned char)b;
|
61
|
+
return result;
|
62
|
+
}
|
63
|
+
|
64
|
+
static int convert_UTF32_to_UTF8(char *buf, UTF32 ch)
|
65
|
+
{
|
66
|
+
int len = 1;
|
67
|
+
if (ch <= 0x7F) {
|
68
|
+
buf[0] = (char) ch;
|
69
|
+
} else if (ch <= 0x07FF) {
|
70
|
+
buf[0] = (char) ((ch >> 6) | 0xC0);
|
71
|
+
buf[1] = (char) ((ch & 0x3F) | 0x80);
|
72
|
+
len++;
|
73
|
+
} else if (ch <= 0xFFFF) {
|
74
|
+
buf[0] = (char) ((ch >> 12) | 0xE0);
|
75
|
+
buf[1] = (char) (((ch >> 6) & 0x3F) | 0x80);
|
76
|
+
buf[2] = (char) ((ch & 0x3F) | 0x80);
|
77
|
+
len += 2;
|
78
|
+
} else if (ch <= 0x1fffff) {
|
79
|
+
buf[0] =(char) ((ch >> 18) | 0xF0);
|
80
|
+
buf[1] =(char) (((ch >> 12) & 0x3F) | 0x80);
|
81
|
+
buf[2] =(char) (((ch >> 6) & 0x3F) | 0x80);
|
82
|
+
buf[3] =(char) ((ch & 0x3F) | 0x80);
|
83
|
+
len += 3;
|
84
|
+
} else {
|
85
|
+
buf[0] = '?';
|
86
|
+
}
|
87
|
+
return len;
|
88
|
+
}
|
89
|
+
|
90
|
+
static VALUE mJSON, mExt, cParser, eParserError, eNestingError;
|
91
|
+
static VALUE CNaN, CInfinity, CMinusInfinity;
|
92
|
+
static VALUE cBigDecimal = Qundef;
|
93
|
+
|
94
|
+
static ID i_json_creatable_p, i_json_create, i_create_id, i_create_additions,
|
95
|
+
i_chr, i_max_nesting, i_allow_nan, i_symbolize_names,
|
96
|
+
i_object_class, i_array_class, i_decimal_class, i_key_p,
|
97
|
+
i_deep_const_get, i_match, i_match_string, i_aset, i_aref,
|
98
|
+
i_leftshift, i_new, i_BigDecimal;
|
99
|
+
|
100
|
+
%%{
|
101
|
+
machine JSON_common;
|
102
|
+
|
103
|
+
cr = '\n';
|
104
|
+
cr_neg = [^\n];
|
105
|
+
ws = [ \t\r\n];
|
106
|
+
c_comment = '/*' ( any* - (any* '*/' any* ) ) '*/';
|
107
|
+
cpp_comment = '//' cr_neg* cr;
|
108
|
+
comment = c_comment | cpp_comment;
|
109
|
+
ignore = ws | comment;
|
110
|
+
name_separator = ':';
|
111
|
+
value_separator = ',';
|
112
|
+
Vnull = 'null';
|
113
|
+
Vfalse = 'false';
|
114
|
+
Vtrue = 'true';
|
115
|
+
VNaN = 'NaN';
|
116
|
+
VInfinity = 'Infinity';
|
117
|
+
VMinusInfinity = '-Infinity';
|
118
|
+
begin_value = [nft\"\-\[\{NI] | digit;
|
119
|
+
begin_object = '{';
|
120
|
+
end_object = '}';
|
121
|
+
begin_array = '[';
|
122
|
+
end_array = ']';
|
123
|
+
begin_string = '"';
|
124
|
+
begin_name = begin_string;
|
125
|
+
begin_number = digit | '-';
|
126
|
+
}%%
|
127
|
+
|
128
|
+
%%{
|
129
|
+
machine JSON_object;
|
130
|
+
include JSON_common;
|
131
|
+
|
132
|
+
write data;
|
133
|
+
|
134
|
+
action parse_value {
|
135
|
+
VALUE v = Qnil;
|
136
|
+
char *np = JSON_parse_value(json, fpc, pe, &v, current_nesting);
|
137
|
+
if (np == NULL) {
|
138
|
+
fhold; fbreak;
|
139
|
+
} else {
|
140
|
+
if (NIL_P(json->object_class)) {
|
141
|
+
OBJ_FREEZE(last_name);
|
142
|
+
rb_hash_aset(*result, last_name, v);
|
143
|
+
} else {
|
144
|
+
rb_funcall(*result, i_aset, 2, last_name, v);
|
145
|
+
}
|
146
|
+
fexec np;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
action parse_name {
|
151
|
+
char *np;
|
152
|
+
json->parsing_name = 1;
|
153
|
+
np = JSON_parse_string(json, fpc, pe, &last_name);
|
154
|
+
json->parsing_name = 0;
|
155
|
+
if (np == NULL) { fhold; fbreak; } else fexec np;
|
156
|
+
}
|
157
|
+
|
158
|
+
action exit { fhold; fbreak; }
|
159
|
+
|
160
|
+
pair = ignore* begin_name >parse_name ignore* name_separator ignore* begin_value >parse_value;
|
161
|
+
next_pair = ignore* value_separator pair;
|
162
|
+
|
163
|
+
main := (
|
164
|
+
begin_object
|
165
|
+
(pair (next_pair)*)? ignore*
|
166
|
+
end_object
|
167
|
+
) @exit;
|
168
|
+
}%%
|
169
|
+
|
170
|
+
static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
|
171
|
+
{
|
172
|
+
int cs = EVIL;
|
173
|
+
VALUE last_name = Qnil;
|
174
|
+
VALUE object_class = json->object_class;
|
175
|
+
|
176
|
+
if (json->max_nesting && current_nesting > json->max_nesting) {
|
177
|
+
rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
|
178
|
+
}
|
179
|
+
|
180
|
+
*result = NIL_P(object_class) ? rb_hash_new() : rb_class_new_instance(0, 0, object_class);
|
181
|
+
|
182
|
+
%% write init;
|
183
|
+
%% write exec;
|
184
|
+
|
185
|
+
if (cs >= JSON_object_first_final) {
|
186
|
+
if (json->create_additions) {
|
187
|
+
VALUE klassname;
|
188
|
+
if (NIL_P(json->object_class)) {
|
189
|
+
klassname = rb_hash_aref(*result, json->create_id);
|
190
|
+
} else {
|
191
|
+
klassname = rb_funcall(*result, i_aref, 1, json->create_id);
|
192
|
+
}
|
193
|
+
if (!NIL_P(klassname)) {
|
194
|
+
VALUE klass = rb_funcall(mJSON, i_deep_const_get, 1, klassname);
|
195
|
+
if (RTEST(rb_funcall(klass, i_json_creatable_p, 0))) {
|
196
|
+
*result = rb_funcall(klass, i_json_create, 1, *result);
|
197
|
+
}
|
198
|
+
}
|
199
|
+
}
|
200
|
+
return p + 1;
|
201
|
+
} else {
|
202
|
+
return NULL;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
|
207
|
+
%%{
|
208
|
+
machine JSON_value;
|
209
|
+
include JSON_common;
|
210
|
+
|
211
|
+
write data;
|
212
|
+
|
213
|
+
action parse_null {
|
214
|
+
*result = Qnil;
|
215
|
+
}
|
216
|
+
action parse_false {
|
217
|
+
*result = Qfalse;
|
218
|
+
}
|
219
|
+
action parse_true {
|
220
|
+
*result = Qtrue;
|
221
|
+
}
|
222
|
+
action parse_nan {
|
223
|
+
if (json->allow_nan) {
|
224
|
+
*result = CNaN;
|
225
|
+
} else {
|
226
|
+
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 2);
|
227
|
+
}
|
228
|
+
}
|
229
|
+
action parse_infinity {
|
230
|
+
if (json->allow_nan) {
|
231
|
+
*result = CInfinity;
|
232
|
+
} else {
|
233
|
+
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 8);
|
234
|
+
}
|
235
|
+
}
|
236
|
+
action parse_string {
|
237
|
+
char *np = JSON_parse_string(json, fpc, pe, result);
|
238
|
+
if (np == NULL) { fhold; fbreak; } else fexec np;
|
239
|
+
}
|
240
|
+
|
241
|
+
action parse_number {
|
242
|
+
char *np;
|
243
|
+
if(pe > fpc + 8 && !strncmp(MinusInfinity, fpc, 9)) {
|
244
|
+
if (json->allow_nan) {
|
245
|
+
*result = CMinusInfinity;
|
246
|
+
fexec p + 10;
|
247
|
+
fhold; fbreak;
|
248
|
+
} else {
|
249
|
+
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
250
|
+
}
|
251
|
+
}
|
252
|
+
np = JSON_parse_float(json, fpc, pe, result);
|
253
|
+
if (np != NULL) fexec np;
|
254
|
+
np = JSON_parse_integer(json, fpc, pe, result);
|
255
|
+
if (np != NULL) fexec np;
|
256
|
+
fhold; fbreak;
|
257
|
+
}
|
258
|
+
|
259
|
+
action parse_array {
|
260
|
+
char *np;
|
261
|
+
np = JSON_parse_array(json, fpc, pe, result, current_nesting + 1);
|
262
|
+
if (np == NULL) { fhold; fbreak; } else fexec np;
|
263
|
+
}
|
264
|
+
|
265
|
+
action parse_object {
|
266
|
+
char *np;
|
267
|
+
np = JSON_parse_object(json, fpc, pe, result, current_nesting + 1);
|
268
|
+
if (np == NULL) { fhold; fbreak; } else fexec np;
|
269
|
+
}
|
270
|
+
|
271
|
+
action exit { fhold; fbreak; }
|
272
|
+
|
273
|
+
main := ignore* (
|
274
|
+
Vnull @parse_null |
|
275
|
+
Vfalse @parse_false |
|
276
|
+
Vtrue @parse_true |
|
277
|
+
VNaN @parse_nan |
|
278
|
+
VInfinity @parse_infinity |
|
279
|
+
begin_number >parse_number |
|
280
|
+
begin_string >parse_string |
|
281
|
+
begin_array >parse_array |
|
282
|
+
begin_object >parse_object
|
283
|
+
) ignore* %*exit;
|
284
|
+
}%%
|
285
|
+
|
286
|
+
static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
|
287
|
+
{
|
288
|
+
int cs = EVIL;
|
289
|
+
|
290
|
+
%% write init;
|
291
|
+
%% write exec;
|
292
|
+
|
293
|
+
if (cs >= JSON_value_first_final) {
|
294
|
+
return p;
|
295
|
+
} else {
|
296
|
+
return NULL;
|
297
|
+
}
|
298
|
+
}
|
299
|
+
|
300
|
+
%%{
|
301
|
+
machine JSON_integer;
|
302
|
+
|
303
|
+
write data;
|
304
|
+
|
305
|
+
action exit { fhold; fbreak; }
|
306
|
+
|
307
|
+
main := '-'? ('0' | [1-9][0-9]*) (^[0-9]? @exit);
|
308
|
+
}%%
|
309
|
+
|
310
|
+
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
311
|
+
{
|
312
|
+
int cs = EVIL;
|
313
|
+
|
314
|
+
%% write init;
|
315
|
+
json->memo = p;
|
316
|
+
%% write exec;
|
317
|
+
|
318
|
+
if (cs >= JSON_integer_first_final) {
|
319
|
+
long len = p - json->memo;
|
320
|
+
fbuffer_clear(json->fbuffer);
|
321
|
+
fbuffer_append(json->fbuffer, json->memo, len);
|
322
|
+
fbuffer_append_char(json->fbuffer, '\0');
|
323
|
+
*result = rb_cstr2inum(FBUFFER_PTR(json->fbuffer), 10);
|
324
|
+
return p + 1;
|
325
|
+
} else {
|
326
|
+
return NULL;
|
327
|
+
}
|
328
|
+
}
|
329
|
+
|
330
|
+
%%{
|
331
|
+
machine JSON_float;
|
332
|
+
include JSON_common;
|
333
|
+
|
334
|
+
write data;
|
335
|
+
|
336
|
+
action exit { fhold; fbreak; }
|
337
|
+
|
338
|
+
main := '-'? (
|
339
|
+
(('0' | [1-9][0-9]*) '.' [0-9]+ ([Ee] [+\-]?[0-9]+)?)
|
340
|
+
| (('0' | [1-9][0-9]*) ([Ee] [+\-]?[0-9]+))
|
341
|
+
) (^[0-9Ee.\-]? @exit );
|
342
|
+
}%%
|
343
|
+
|
344
|
+
static int is_bigdecimal_class(VALUE obj)
|
345
|
+
{
|
346
|
+
if (cBigDecimal == Qundef) {
|
347
|
+
if (rb_const_defined(rb_cObject, i_BigDecimal)) {
|
348
|
+
cBigDecimal = rb_const_get_at(rb_cObject, i_BigDecimal);
|
349
|
+
}
|
350
|
+
else {
|
351
|
+
return 0;
|
352
|
+
}
|
353
|
+
}
|
354
|
+
return obj == cBigDecimal;
|
355
|
+
}
|
356
|
+
|
357
|
+
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
358
|
+
{
|
359
|
+
int cs = EVIL;
|
360
|
+
|
361
|
+
%% write init;
|
362
|
+
json->memo = p;
|
363
|
+
%% write exec;
|
364
|
+
|
365
|
+
if (cs >= JSON_float_first_final) {
|
366
|
+
long len = p - json->memo;
|
367
|
+
fbuffer_clear(json->fbuffer);
|
368
|
+
fbuffer_append(json->fbuffer, json->memo, len);
|
369
|
+
fbuffer_append_char(json->fbuffer, '\0');
|
370
|
+
if (NIL_P(json->decimal_class)) {
|
371
|
+
*result = rb_float_new(rb_cstr_to_dbl(FBUFFER_PTR(json->fbuffer), 1));
|
372
|
+
} else {
|
373
|
+
VALUE text;
|
374
|
+
text = rb_str_new2(FBUFFER_PTR(json->fbuffer));
|
375
|
+
if (is_bigdecimal_class(json->decimal_class)) {
|
376
|
+
*result = rb_funcall(Qnil, i_BigDecimal, 1, text);
|
377
|
+
} else {
|
378
|
+
*result = rb_funcall(json->decimal_class, i_new, 1, text);
|
379
|
+
}
|
380
|
+
}
|
381
|
+
return p + 1;
|
382
|
+
} else {
|
383
|
+
return NULL;
|
384
|
+
}
|
385
|
+
}
|
386
|
+
|
387
|
+
|
388
|
+
%%{
|
389
|
+
machine JSON_array;
|
390
|
+
include JSON_common;
|
391
|
+
|
392
|
+
write data;
|
393
|
+
|
394
|
+
action parse_value {
|
395
|
+
VALUE v = Qnil;
|
396
|
+
char *np = JSON_parse_value(json, fpc, pe, &v, current_nesting);
|
397
|
+
if (np == NULL) {
|
398
|
+
fhold; fbreak;
|
399
|
+
} else {
|
400
|
+
if (NIL_P(json->array_class)) {
|
401
|
+
rb_ary_push(*result, v);
|
402
|
+
} else {
|
403
|
+
rb_funcall(*result, i_leftshift, 1, v);
|
404
|
+
}
|
405
|
+
fexec np;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
|
409
|
+
action exit { fhold; fbreak; }
|
410
|
+
|
411
|
+
next_element = value_separator ignore* begin_value >parse_value;
|
412
|
+
|
413
|
+
main := begin_array ignore*
|
414
|
+
((begin_value >parse_value ignore*)
|
415
|
+
(ignore* next_element ignore*)*)?
|
416
|
+
end_array @exit;
|
417
|
+
}%%
|
418
|
+
|
419
|
+
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
|
420
|
+
{
|
421
|
+
int cs = EVIL;
|
422
|
+
VALUE array_class = json->array_class;
|
423
|
+
|
424
|
+
if (json->max_nesting && current_nesting > json->max_nesting) {
|
425
|
+
rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
|
426
|
+
}
|
427
|
+
*result = NIL_P(array_class) ? rb_ary_new() : rb_class_new_instance(0, 0, array_class);
|
428
|
+
|
429
|
+
%% write init;
|
430
|
+
%% write exec;
|
431
|
+
|
432
|
+
if(cs >= JSON_array_first_final) {
|
433
|
+
return p + 1;
|
434
|
+
} else {
|
435
|
+
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
436
|
+
return NULL;
|
437
|
+
}
|
438
|
+
}
|
439
|
+
|
440
|
+
static VALUE json_string_unescape(VALUE result, char *string, char *stringEnd)
|
441
|
+
{
|
442
|
+
char *p = string, *pe = string, *unescape;
|
443
|
+
int unescape_len;
|
444
|
+
char buf[4];
|
445
|
+
|
446
|
+
while (pe < stringEnd) {
|
447
|
+
if (*pe == '\\') {
|
448
|
+
unescape = (char *) "?";
|
449
|
+
unescape_len = 1;
|
450
|
+
if (pe > p) rb_str_buf_cat(result, p, pe - p);
|
451
|
+
switch (*++pe) {
|
452
|
+
case 'n':
|
453
|
+
unescape = (char *) "\n";
|
454
|
+
break;
|
455
|
+
case 'r':
|
456
|
+
unescape = (char *) "\r";
|
457
|
+
break;
|
458
|
+
case 't':
|
459
|
+
unescape = (char *) "\t";
|
460
|
+
break;
|
461
|
+
case '"':
|
462
|
+
unescape = (char *) "\"";
|
463
|
+
break;
|
464
|
+
case '\\':
|
465
|
+
unescape = (char *) "\\";
|
466
|
+
break;
|
467
|
+
case 'b':
|
468
|
+
unescape = (char *) "\b";
|
469
|
+
break;
|
470
|
+
case 'f':
|
471
|
+
unescape = (char *) "\f";
|
472
|
+
break;
|
473
|
+
case 'u':
|
474
|
+
if (pe > stringEnd - 4) {
|
475
|
+
rb_enc_raise(
|
476
|
+
EXC_ENCODING eParserError,
|
477
|
+
"%u: incomplete unicode character escape sequence at '%s'", __LINE__, p
|
478
|
+
);
|
479
|
+
} else {
|
480
|
+
UTF32 ch = unescape_unicode((unsigned char *) ++pe);
|
481
|
+
pe += 3;
|
482
|
+
if (UNI_SUR_HIGH_START == (ch & 0xFC00)) {
|
483
|
+
pe++;
|
484
|
+
if (pe > stringEnd - 6) {
|
485
|
+
rb_enc_raise(
|
486
|
+
EXC_ENCODING eParserError,
|
487
|
+
"%u: incomplete surrogate pair at '%s'", __LINE__, p
|
488
|
+
);
|
489
|
+
}
|
490
|
+
if (pe[0] == '\\' && pe[1] == 'u') {
|
491
|
+
UTF32 sur = unescape_unicode((unsigned char *) pe + 2);
|
492
|
+
ch = (((ch & 0x3F) << 10) | ((((ch >> 6) & 0xF) + 1) << 16)
|
493
|
+
| (sur & 0x3FF));
|
494
|
+
pe += 5;
|
495
|
+
} else {
|
496
|
+
unescape = (char *) "?";
|
497
|
+
break;
|
498
|
+
}
|
499
|
+
}
|
500
|
+
unescape_len = convert_UTF32_to_UTF8(buf, ch);
|
501
|
+
unescape = buf;
|
502
|
+
}
|
503
|
+
break;
|
504
|
+
default:
|
505
|
+
p = pe;
|
506
|
+
continue;
|
507
|
+
}
|
508
|
+
rb_str_buf_cat(result, unescape, unescape_len);
|
509
|
+
p = ++pe;
|
510
|
+
} else {
|
511
|
+
pe++;
|
512
|
+
}
|
513
|
+
}
|
514
|
+
rb_str_buf_cat(result, p, pe - p);
|
515
|
+
return result;
|
516
|
+
}
|
517
|
+
|
518
|
+
%%{
|
519
|
+
machine JSON_string;
|
520
|
+
include JSON_common;
|
521
|
+
|
522
|
+
write data;
|
523
|
+
|
524
|
+
action parse_string {
|
525
|
+
*result = json_string_unescape(*result, json->memo + 1, p);
|
526
|
+
if (NIL_P(*result)) {
|
527
|
+
fhold;
|
528
|
+
fbreak;
|
529
|
+
} else {
|
530
|
+
FORCE_UTF8(*result);
|
531
|
+
fexec p + 1;
|
532
|
+
}
|
533
|
+
}
|
534
|
+
|
535
|
+
action exit { fhold; fbreak; }
|
536
|
+
|
537
|
+
main := '"' ((^([\"\\] | 0..0x1f) | '\\'[\"\\/bfnrt] | '\\u'[0-9a-fA-F]{4} | '\\'^([\"\\/bfnrtu]|0..0x1f))* %parse_string) '"' @exit;
|
538
|
+
}%%
|
539
|
+
|
540
|
+
static int
|
541
|
+
match_i(VALUE regexp, VALUE klass, VALUE memo)
|
542
|
+
{
|
543
|
+
if (regexp == Qundef) return ST_STOP;
|
544
|
+
if (RTEST(rb_funcall(klass, i_json_creatable_p, 0)) &&
|
545
|
+
RTEST(rb_funcall(regexp, i_match, 1, rb_ary_entry(memo, 0)))) {
|
546
|
+
rb_ary_push(memo, klass);
|
547
|
+
return ST_STOP;
|
548
|
+
}
|
549
|
+
return ST_CONTINUE;
|
550
|
+
}
|
551
|
+
|
552
|
+
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result)
|
553
|
+
{
|
554
|
+
int cs = EVIL;
|
555
|
+
VALUE match_string;
|
556
|
+
|
557
|
+
*result = rb_str_buf_new(0);
|
558
|
+
%% write init;
|
559
|
+
json->memo = p;
|
560
|
+
%% write exec;
|
561
|
+
|
562
|
+
if (json->create_additions && RTEST(match_string = json->match_string)) {
|
563
|
+
VALUE klass;
|
564
|
+
VALUE memo = rb_ary_new2(2);
|
565
|
+
rb_ary_push(memo, *result);
|
566
|
+
rb_hash_foreach(match_string, match_i, memo);
|
567
|
+
klass = rb_ary_entry(memo, 1);
|
568
|
+
if (RTEST(klass)) {
|
569
|
+
*result = rb_funcall(klass, i_json_create, 1, *result);
|
570
|
+
}
|
571
|
+
}
|
572
|
+
|
573
|
+
if (json->symbolize_names && json->parsing_name) {
|
574
|
+
*result = rb_str_intern(*result);
|
575
|
+
} else if (RB_TYPE_P(*result, T_STRING)) {
|
576
|
+
rb_str_resize(*result, RSTRING_LEN(*result));
|
577
|
+
}
|
578
|
+
if (cs >= JSON_string_first_final) {
|
579
|
+
return p + 1;
|
580
|
+
} else {
|
581
|
+
return NULL;
|
582
|
+
}
|
583
|
+
}
|
584
|
+
|
585
|
+
/*
|
586
|
+
* Document-class: JSON::Ext::Parser
|
587
|
+
*
|
588
|
+
* This is the JSON parser implemented as a C extension. It can be configured
|
589
|
+
* to be used by setting
|
590
|
+
*
|
591
|
+
* JSON.parser = JSON::Ext::Parser
|
592
|
+
*
|
593
|
+
* with the method parser= in JSON.
|
594
|
+
*
|
595
|
+
*/
|
596
|
+
|
597
|
+
static VALUE convert_encoding(VALUE source)
|
598
|
+
{
|
599
|
+
#ifdef HAVE_RUBY_ENCODING_H
|
600
|
+
rb_encoding *enc = rb_enc_get(source);
|
601
|
+
if (enc == rb_ascii8bit_encoding()) {
|
602
|
+
if (OBJ_FROZEN(source)) {
|
603
|
+
source = rb_str_dup(source);
|
604
|
+
}
|
605
|
+
FORCE_UTF8(source);
|
606
|
+
} else {
|
607
|
+
source = rb_str_conv_enc(source, rb_enc_get(source), rb_utf8_encoding());
|
608
|
+
}
|
609
|
+
#endif
|
610
|
+
return source;
|
611
|
+
}
|
612
|
+
|
613
|
+
/*
|
614
|
+
* call-seq: new(source, opts => {})
|
615
|
+
*
|
616
|
+
* Creates a new JSON::Ext::Parser instance for the string _source_.
|
617
|
+
*
|
618
|
+
* Creates a new JSON::Ext::Parser instance for the string _source_.
|
619
|
+
*
|
620
|
+
* It will be configured by the _opts_ hash. _opts_ can have the following
|
621
|
+
* keys:
|
622
|
+
*
|
623
|
+
* _opts_ can have the following keys:
|
624
|
+
* * *max_nesting*: The maximum depth of nesting allowed in the parsed data
|
625
|
+
* structures. Disable depth checking with :max_nesting => false|nil|0, it
|
626
|
+
* defaults to 100.
|
627
|
+
* * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
|
628
|
+
* defiance of RFC 4627 to be parsed by the Parser. This option defaults to
|
629
|
+
* false.
|
630
|
+
* * *symbolize_names*: If set to true, returns symbols for the names
|
631
|
+
* (keys) in a JSON object. Otherwise strings are returned, which is
|
632
|
+
* also the default. It's not possible to use this option in
|
633
|
+
* conjunction with the *create_additions* option.
|
634
|
+
* * *create_additions*: If set to false, the Parser doesn't create
|
635
|
+
* additions even if a matching class and create_id was found. This option
|
636
|
+
* defaults to false.
|
637
|
+
* * *object_class*: Defaults to Hash
|
638
|
+
* * *array_class*: Defaults to Array
|
639
|
+
*/
|
640
|
+
static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
|
641
|
+
{
|
642
|
+
VALUE source, opts;
|
643
|
+
GET_PARSER_INIT;
|
644
|
+
|
645
|
+
if (json->Vsource) {
|
646
|
+
rb_raise(rb_eTypeError, "already initialized instance");
|
647
|
+
}
|
648
|
+
#ifdef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
|
649
|
+
rb_scan_args(argc, argv, "1:", &source, &opts);
|
650
|
+
#else
|
651
|
+
rb_scan_args(argc, argv, "11", &source, &opts);
|
652
|
+
#endif
|
653
|
+
if (!NIL_P(opts)) {
|
654
|
+
#ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
|
655
|
+
opts = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
|
656
|
+
if (NIL_P(opts)) {
|
657
|
+
rb_raise(rb_eArgError, "opts needs to be like a hash");
|
658
|
+
} else {
|
659
|
+
#endif
|
660
|
+
VALUE tmp = ID2SYM(i_max_nesting);
|
661
|
+
if (option_given_p(opts, tmp)) {
|
662
|
+
VALUE max_nesting = rb_hash_aref(opts, tmp);
|
663
|
+
if (RTEST(max_nesting)) {
|
664
|
+
Check_Type(max_nesting, T_FIXNUM);
|
665
|
+
json->max_nesting = FIX2INT(max_nesting);
|
666
|
+
} else {
|
667
|
+
json->max_nesting = 0;
|
668
|
+
}
|
669
|
+
} else {
|
670
|
+
json->max_nesting = 100;
|
671
|
+
}
|
672
|
+
tmp = ID2SYM(i_allow_nan);
|
673
|
+
if (option_given_p(opts, tmp)) {
|
674
|
+
json->allow_nan = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
|
675
|
+
} else {
|
676
|
+
json->allow_nan = 0;
|
677
|
+
}
|
678
|
+
tmp = ID2SYM(i_symbolize_names);
|
679
|
+
if (option_given_p(opts, tmp)) {
|
680
|
+
json->symbolize_names = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
|
681
|
+
} else {
|
682
|
+
json->symbolize_names = 0;
|
683
|
+
}
|
684
|
+
tmp = ID2SYM(i_create_additions);
|
685
|
+
if (option_given_p(opts, tmp)) {
|
686
|
+
json->create_additions = RTEST(rb_hash_aref(opts, tmp));
|
687
|
+
} else {
|
688
|
+
json->create_additions = 0;
|
689
|
+
}
|
690
|
+
if (json->symbolize_names && json->create_additions) {
|
691
|
+
rb_raise(rb_eArgError,
|
692
|
+
"options :symbolize_names and :create_additions cannot be "
|
693
|
+
" used in conjunction");
|
694
|
+
}
|
695
|
+
tmp = ID2SYM(i_create_id);
|
696
|
+
if (option_given_p(opts, tmp)) {
|
697
|
+
json->create_id = rb_hash_aref(opts, tmp);
|
698
|
+
} else {
|
699
|
+
json->create_id = rb_funcall(mJSON, i_create_id, 0);
|
700
|
+
}
|
701
|
+
tmp = ID2SYM(i_object_class);
|
702
|
+
if (option_given_p(opts, tmp)) {
|
703
|
+
json->object_class = rb_hash_aref(opts, tmp);
|
704
|
+
} else {
|
705
|
+
json->object_class = Qnil;
|
706
|
+
}
|
707
|
+
tmp = ID2SYM(i_array_class);
|
708
|
+
if (option_given_p(opts, tmp)) {
|
709
|
+
json->array_class = rb_hash_aref(opts, tmp);
|
710
|
+
} else {
|
711
|
+
json->array_class = Qnil;
|
712
|
+
}
|
713
|
+
tmp = ID2SYM(i_decimal_class);
|
714
|
+
if (option_given_p(opts, tmp)) {
|
715
|
+
json->decimal_class = rb_hash_aref(opts, tmp);
|
716
|
+
} else {
|
717
|
+
json->decimal_class = Qnil;
|
718
|
+
}
|
719
|
+
tmp = ID2SYM(i_match_string);
|
720
|
+
if (option_given_p(opts, tmp)) {
|
721
|
+
VALUE match_string = rb_hash_aref(opts, tmp);
|
722
|
+
json->match_string = RTEST(match_string) ? match_string : Qnil;
|
723
|
+
} else {
|
724
|
+
json->match_string = Qnil;
|
725
|
+
}
|
726
|
+
#ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
|
727
|
+
}
|
728
|
+
#endif
|
729
|
+
} else {
|
730
|
+
json->max_nesting = 100;
|
731
|
+
json->allow_nan = 0;
|
732
|
+
json->create_additions = 0;
|
733
|
+
json->create_id = rb_funcall(mJSON, i_create_id, 0);
|
734
|
+
json->object_class = Qnil;
|
735
|
+
json->array_class = Qnil;
|
736
|
+
json->decimal_class = Qnil;
|
737
|
+
}
|
738
|
+
source = convert_encoding(StringValue(source));
|
739
|
+
StringValue(source);
|
740
|
+
json->len = RSTRING_LEN(source);
|
741
|
+
json->source = RSTRING_PTR(source);;
|
742
|
+
json->Vsource = source;
|
743
|
+
return self;
|
744
|
+
}
|
745
|
+
|
746
|
+
%%{
|
747
|
+
machine JSON;
|
748
|
+
|
749
|
+
write data;
|
750
|
+
|
751
|
+
include JSON_common;
|
752
|
+
|
753
|
+
action parse_value {
|
754
|
+
char *np = JSON_parse_value(json, fpc, pe, &result, 0);
|
755
|
+
if (np == NULL) { fhold; fbreak; } else fexec np;
|
756
|
+
}
|
757
|
+
|
758
|
+
main := ignore* (
|
759
|
+
begin_value >parse_value
|
760
|
+
) ignore*;
|
761
|
+
}%%
|
762
|
+
|
763
|
+
/*
|
764
|
+
* call-seq: parse()
|
765
|
+
*
|
766
|
+
* Parses the current JSON text _source_ and returns the complete data
|
767
|
+
* structure as a result.
|
768
|
+
*/
|
769
|
+
static VALUE cParser_parse(VALUE self)
|
770
|
+
{
|
771
|
+
char *p, *pe;
|
772
|
+
int cs = EVIL;
|
773
|
+
VALUE result = Qnil;
|
774
|
+
GET_PARSER;
|
775
|
+
|
776
|
+
%% write init;
|
777
|
+
p = json->source;
|
778
|
+
pe = p + json->len;
|
779
|
+
%% write exec;
|
780
|
+
|
781
|
+
if (cs >= JSON_first_final && p == pe) {
|
782
|
+
return result;
|
783
|
+
} else {
|
784
|
+
rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
|
785
|
+
return Qnil;
|
786
|
+
}
|
787
|
+
}
|
788
|
+
|
789
|
+
static void JSON_mark(void *ptr)
|
790
|
+
{
|
791
|
+
JSON_Parser *json = ptr;
|
792
|
+
rb_gc_mark_maybe(json->Vsource);
|
793
|
+
rb_gc_mark_maybe(json->create_id);
|
794
|
+
rb_gc_mark_maybe(json->object_class);
|
795
|
+
rb_gc_mark_maybe(json->array_class);
|
796
|
+
rb_gc_mark_maybe(json->decimal_class);
|
797
|
+
rb_gc_mark_maybe(json->match_string);
|
798
|
+
}
|
799
|
+
|
800
|
+
static void JSON_free(void *ptr)
|
801
|
+
{
|
802
|
+
JSON_Parser *json = ptr;
|
803
|
+
fbuffer_free(json->fbuffer);
|
804
|
+
ruby_xfree(json);
|
805
|
+
}
|
806
|
+
|
807
|
+
static size_t JSON_memsize(const void *ptr)
|
808
|
+
{
|
809
|
+
const JSON_Parser *json = ptr;
|
810
|
+
return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
|
811
|
+
}
|
812
|
+
|
813
|
+
#ifdef NEW_TYPEDDATA_WRAPPER
|
814
|
+
static const rb_data_type_t JSON_Parser_type = {
|
815
|
+
"JSON/Parser",
|
816
|
+
{JSON_mark, JSON_free, JSON_memsize,},
|
817
|
+
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
|
818
|
+
0, 0,
|
819
|
+
RUBY_TYPED_FREE_IMMEDIATELY,
|
820
|
+
#endif
|
821
|
+
};
|
822
|
+
#endif
|
823
|
+
|
824
|
+
static VALUE cJSON_parser_s_allocate(VALUE klass)
|
825
|
+
{
|
826
|
+
JSON_Parser *json;
|
827
|
+
VALUE obj = TypedData_Make_Struct(klass, JSON_Parser, &JSON_Parser_type, json);
|
828
|
+
json->fbuffer = fbuffer_alloc(0);
|
829
|
+
return obj;
|
830
|
+
}
|
831
|
+
|
832
|
+
/*
|
833
|
+
* call-seq: source()
|
834
|
+
*
|
835
|
+
* Returns a copy of the current _source_ string, that was used to construct
|
836
|
+
* this Parser.
|
837
|
+
*/
|
838
|
+
static VALUE cParser_source(VALUE self)
|
839
|
+
{
|
840
|
+
GET_PARSER;
|
841
|
+
return rb_str_dup(json->Vsource);
|
842
|
+
}
|
843
|
+
|
844
|
+
void Init_parser(void)
|
845
|
+
{
|
846
|
+
#undef rb_intern
|
847
|
+
rb_require("json/common");
|
848
|
+
mJSON = rb_define_module("JSON");
|
849
|
+
mExt = rb_define_module_under(mJSON, "Ext");
|
850
|
+
cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
|
851
|
+
eParserError = rb_path2class("JSON::ParserError");
|
852
|
+
eNestingError = rb_path2class("JSON::NestingError");
|
853
|
+
rb_gc_register_mark_object(eParserError);
|
854
|
+
rb_gc_register_mark_object(eNestingError);
|
855
|
+
rb_define_alloc_func(cParser, cJSON_parser_s_allocate);
|
856
|
+
rb_define_method(cParser, "initialize", cParser_initialize, -1);
|
857
|
+
rb_define_method(cParser, "parse", cParser_parse, 0);
|
858
|
+
rb_define_method(cParser, "source", cParser_source, 0);
|
859
|
+
|
860
|
+
CNaN = rb_const_get(mJSON, rb_intern("NaN"));
|
861
|
+
rb_gc_register_mark_object(CNaN);
|
862
|
+
|
863
|
+
CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
|
864
|
+
rb_gc_register_mark_object(CInfinity);
|
865
|
+
|
866
|
+
CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
|
867
|
+
rb_gc_register_mark_object(CMinusInfinity);
|
868
|
+
|
869
|
+
i_json_creatable_p = rb_intern("json_creatable?");
|
870
|
+
i_json_create = rb_intern("json_create");
|
871
|
+
i_create_id = rb_intern("create_id");
|
872
|
+
i_create_additions = rb_intern("create_additions");
|
873
|
+
i_chr = rb_intern("chr");
|
874
|
+
i_max_nesting = rb_intern("max_nesting");
|
875
|
+
i_allow_nan = rb_intern("allow_nan");
|
876
|
+
i_symbolize_names = rb_intern("symbolize_names");
|
877
|
+
i_object_class = rb_intern("object_class");
|
878
|
+
i_array_class = rb_intern("array_class");
|
879
|
+
i_decimal_class = rb_intern("decimal_class");
|
880
|
+
i_match = rb_intern("match");
|
881
|
+
i_match_string = rb_intern("match_string");
|
882
|
+
i_key_p = rb_intern("key?");
|
883
|
+
i_deep_const_get = rb_intern("deep_const_get");
|
884
|
+
i_aset = rb_intern("[]=");
|
885
|
+
i_aref = rb_intern("[]");
|
886
|
+
i_leftshift = rb_intern("<<");
|
887
|
+
i_new = rb_intern("new");
|
888
|
+
i_BigDecimal = rb_intern("BigDecimal");
|
889
|
+
}
|
890
|
+
|
891
|
+
/*
|
892
|
+
* Local variables:
|
893
|
+
* mode: c
|
894
|
+
* c-file-style: ruby
|
895
|
+
* indent-tabs-mode: nil
|
896
|
+
* End:
|
897
|
+
*/
|