├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── react-rails-benchmark_renderer.rb └── react │ ├── rails │ ├── benchmark_renderer.rb │ └── benchmark_renderer │ │ └── version.rb │ └── server_rendering │ ├── benchmark_renderer.rb │ └── concerns │ └── instrumentation.rb ├── react-rails-benchmark_renderer.gemspec └── spec ├── react └── rails │ └── benchmark_renderer_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/react-rails-benchmark_renderer.rb: -------------------------------------------------------------------------------- 1 | require "react/rails/benchmark_renderer" 2 | -------------------------------------------------------------------------------- /lib/react/rails/benchmark_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/lib/react/rails/benchmark_renderer.rb -------------------------------------------------------------------------------- /lib/react/rails/benchmark_renderer/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/lib/react/rails/benchmark_renderer/version.rb -------------------------------------------------------------------------------- /lib/react/server_rendering/benchmark_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/lib/react/server_rendering/benchmark_renderer.rb -------------------------------------------------------------------------------- /lib/react/server_rendering/concerns/instrumentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/lib/react/server_rendering/concerns/instrumentation.rb -------------------------------------------------------------------------------- /react-rails-benchmark_renderer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/react-rails-benchmark_renderer.gemspec -------------------------------------------------------------------------------- /spec/react/rails/benchmark_renderer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/spec/react/rails/benchmark_renderer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galtzo-floss/react-rails-benchmark_renderer/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------