├── .gitignore ├── Gemfile ├── Rakefile ├── bridge.jpg ├── cakes.jpg ├── large-benchmark.html ├── large-benchmark.png ├── node_io_speed.js ├── node_io_speed_streams.js ├── package.json ├── readme.md ├── ruby_io_speed.rb ├── small-benchmark.html └── small-benchmark.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/Gemfile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/Rakefile -------------------------------------------------------------------------------- /bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/bridge.jpg -------------------------------------------------------------------------------- /cakes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/cakes.jpg -------------------------------------------------------------------------------- /large-benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/large-benchmark.html -------------------------------------------------------------------------------- /large-benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/large-benchmark.png -------------------------------------------------------------------------------- /node_io_speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/node_io_speed.js -------------------------------------------------------------------------------- /node_io_speed_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/node_io_speed_streams.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/readme.md -------------------------------------------------------------------------------- /ruby_io_speed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/ruby_io_speed.rb -------------------------------------------------------------------------------- /small-benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/small-benchmark.html -------------------------------------------------------------------------------- /small-benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shime/node-vs-ruby-io/HEAD/small-benchmark.png --------------------------------------------------------------------------------