├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .rspec ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── before_install.sh ├── console └── setup ├── brotli.gemspec ├── ext └── brotli │ ├── brotli.c │ ├── brotli.h │ ├── buffer.c │ ├── buffer.h │ └── extconf.rb ├── lib ├── brotli.rb └── brotli │ └── version.rb ├── smoke.sh └── test ├── brotli_test.rb ├── brotli_writer_test.rb └── test_helper.rb /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/bin/before_install.sh -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/bin/setup -------------------------------------------------------------------------------- /brotli.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/brotli.gemspec -------------------------------------------------------------------------------- /ext/brotli/brotli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/ext/brotli/brotli.c -------------------------------------------------------------------------------- /ext/brotli/brotli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/ext/brotli/brotli.h -------------------------------------------------------------------------------- /ext/brotli/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/ext/brotli/buffer.c -------------------------------------------------------------------------------- /ext/brotli/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/ext/brotli/buffer.h -------------------------------------------------------------------------------- /ext/brotli/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/ext/brotli/extconf.rb -------------------------------------------------------------------------------- /lib/brotli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/lib/brotli.rb -------------------------------------------------------------------------------- /lib/brotli/version.rb: -------------------------------------------------------------------------------- 1 | module Brotli 2 | VERSION = '0.7.0' 3 | end 4 | -------------------------------------------------------------------------------- /smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/smoke.sh -------------------------------------------------------------------------------- /test/brotli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/test/brotli_test.rb -------------------------------------------------------------------------------- /test/brotli_writer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/test/brotli_writer_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyucy/brotli/HEAD/test/test_helper.rb --------------------------------------------------------------------------------