├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ └── peek │ │ │ └── views │ │ │ └── performance_bar.js │ └── stylesheets │ │ └── peek │ │ └── views │ │ └── performance_bar.scss ├── helpers │ └── peek │ │ └── performance_bar_helper.rb └── views │ └── peek │ ├── results │ └── _performance_bar.html.erb │ └── views │ └── _performance_bar.html.erb ├── lib ├── peek-performance_bar.rb ├── peek-performance_bar │ ├── railtie.rb │ └── version.rb └── peek │ └── views │ ├── performance_bar.rb │ └── performance_bar │ └── process_utilization.rb └── peek-performance_bar.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/peek/views/performance_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/app/assets/javascripts/peek/views/performance_bar.js -------------------------------------------------------------------------------- /app/assets/stylesheets/peek/views/performance_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/app/assets/stylesheets/peek/views/performance_bar.scss -------------------------------------------------------------------------------- /app/helpers/peek/performance_bar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/app/helpers/peek/performance_bar_helper.rb -------------------------------------------------------------------------------- /app/views/peek/results/_performance_bar.html.erb: -------------------------------------------------------------------------------- 1 | <%= render_server_response_time %> 2 | -------------------------------------------------------------------------------- /app/views/peek/views/_performance_bar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/app/views/peek/views/_performance_bar.html.erb -------------------------------------------------------------------------------- /lib/peek-performance_bar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/lib/peek-performance_bar.rb -------------------------------------------------------------------------------- /lib/peek-performance_bar/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/lib/peek-performance_bar/railtie.rb -------------------------------------------------------------------------------- /lib/peek-performance_bar/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/lib/peek-performance_bar/version.rb -------------------------------------------------------------------------------- /lib/peek/views/performance_bar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/lib/peek/views/performance_bar.rb -------------------------------------------------------------------------------- /lib/peek/views/performance_bar/process_utilization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/lib/peek/views/performance_bar/process_utilization.rb -------------------------------------------------------------------------------- /peek-performance_bar.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peek/peek-performance_bar/HEAD/peek-performance_bar.gemspec --------------------------------------------------------------------------------