├── .clang-format ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .gitmodules ├── .rubocop.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── benchmark ├── apache_builds.json ├── demo.json ├── github_events.json └── run_benchmark.rb ├── ext └── simdjson │ ├── extconf.rb │ └── simdjson_ruby.cpp ├── lib ├── simdjson.rb └── simdjson │ └── version.rb ├── simdjson.gemspec ├── test ├── simdjson_test.rb └── test_helper.rb └── vendor └── .gitkeep /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: Google 4 | ColumnLimit: 120 5 | IndentWidth: 4 6 | -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark/apache_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/benchmark/apache_builds.json -------------------------------------------------------------------------------- /benchmark/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/benchmark/demo.json -------------------------------------------------------------------------------- /benchmark/github_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/benchmark/github_events.json -------------------------------------------------------------------------------- /benchmark/run_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/benchmark/run_benchmark.rb -------------------------------------------------------------------------------- /ext/simdjson/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/ext/simdjson/extconf.rb -------------------------------------------------------------------------------- /ext/simdjson/simdjson_ruby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/ext/simdjson/simdjson_ruby.cpp -------------------------------------------------------------------------------- /lib/simdjson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/lib/simdjson.rb -------------------------------------------------------------------------------- /lib/simdjson/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Simdjson 4 | VERSION = '1.0.1' 5 | end 6 | -------------------------------------------------------------------------------- /simdjson.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/simdjson.gemspec -------------------------------------------------------------------------------- /test/simdjson_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/test/simdjson_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saka1/simdjson_ruby/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------