From d39ecf1ca7e9455abcdeb17c251a2d248a47d471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Wed, 17 May 2017 13:20:55 +0200 Subject: New performance bar that can be enabled with the `p b` shortcut MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- Gemfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 715ce2bc6c2..7a5b32a447d 100644 --- a/Gemfile +++ b/Gemfile @@ -264,6 +264,18 @@ gem 'gettext_i18n_rails', '~> 1.8.0' gem 'gettext_i18n_rails_js', '~> 1.2.0' gem 'gettext', '~> 3.2.2', require: false, group: :development +# Perf bar +gem 'peek', '~> 1.0.1' +gem 'peek-gc', '~> 0.0.2' +gem 'peek-host', '~> 1.0.0' +gem 'peek-mysql2', '~> 1.1.0', group: :mysql +gem 'peek-performance_bar', '~> 1.2.1' +gem 'peek-pg', '~> 1.3.0' +gem 'peek-rblineprof', '~> 0.2.0' +gem 'pygments.rb', require: false +gem 'peek-redis', '~> 1.2.0' +gem 'peek-sidekiq', '~> 1.0.3' + # Metrics group :metrics do gem 'allocations', '~> 1.0', require: false, platform: :mri -- cgit v1.2.1 From 47054451da0a3aa80cae02c8a096338c23be7b9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Wed, 7 Jun 2017 09:57:21 +0200 Subject: Don't use Pygment,rb, use Rouge instead, and put peek-pg in the :postgres group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- Gemfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 7a5b32a447d..c78c1f2fc4c 100644 --- a/Gemfile +++ b/Gemfile @@ -270,9 +270,8 @@ gem 'peek-gc', '~> 0.0.2' gem 'peek-host', '~> 1.0.0' gem 'peek-mysql2', '~> 1.1.0', group: :mysql gem 'peek-performance_bar', '~> 1.2.1' -gem 'peek-pg', '~> 1.3.0' +gem 'peek-pg', '~> 1.3.0', group: :postgres gem 'peek-rblineprof', '~> 0.2.0' -gem 'pygments.rb', require: false gem 'peek-redis', '~> 1.2.0' gem 'peek-sidekiq', '~> 1.0.3' -- cgit v1.2.1