From 11d443664b7a785b42cbbd5b96347bafa5ad273a Mon Sep 17 00:00:00 2001 From: varac Date: Wed, 13 Jul 2016 20:07:09 +0200 Subject: initial commit, import from pixelated_dashboard --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index cd8aa9e..01dc836 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,5 @@ source 'https://rubygems.org' -gemspec \ No newline at end of file +gemspec + +gem "nagiosharder" -- cgit v1.2.3 From c31e90830674070d16848e380a6e703fa1ae3edd Mon Sep 17 00:00:00 2001 From: varac Date: Fri, 30 Sep 2016 23:49:28 +0200 Subject: Use varacs gitlab gem fork for pipeline support --- Gemfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 01dc836..4406e52 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,5 @@ source 'https://rubygems.org' +gem 'gitlab', :git => 'https://github.com/varac/gitlab.git', :branch => 'pipeline_support' gemspec -- cgit v1.2.3 From 782793d75212d9efc1f2d3d03e4c889c924142e8 Mon Sep 17 00:00:00 2001 From: varac Date: Sat, 1 Oct 2016 01:02:23 +0200 Subject: activesupport >= 5.0.0 requires ruby 2.2 which break jessie support --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 4406e52..439b890 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source 'https://rubygems.org' gem 'gitlab', :git => 'https://github.com/varac/gitlab.git', :branch => 'pipeline_support' +# activesupport >= 5.0.0 requires ruby 2.2 which break jessie support +gem 'activesupport', '< 5.0.0' gemspec -- cgit v1.2.3 From 009594945171ce5aab15d341f36fad80dce36377 Mon Sep 17 00:00:00 2001 From: varac Date: Sat, 1 Oct 2016 01:21:42 +0200 Subject: pin two other gems that fail to install otherwise --- Gemfile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 439b890..08e8f3f 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,12 @@ source 'https://rubygems.org' gem 'gitlab', :git => 'https://github.com/varac/gitlab.git', :branch => 'pipeline_support' # activesupport >= 5.0.0 requires ruby 2.2 which break jessie support gem 'activesupport', '< 5.0.0' +# both following gems will break on jessie with +# Gem::InstallError: rest-client requires Ruby version >= 2.0.0. +# even when ruby 2.1 ist installed. So we pin earlier versions: +gem 'mime-types', '2.6.2' +gem 'rest-client', '< 2.0.0' + gemspec -- cgit v1.2.3 From 90be5e3859fbdd02202720716894b6b5261ab0e3 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 17 Jul 2017 20:51:46 +0200 Subject: feat: only alert for failing master builds --- Gemfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 08e8f3f..a1601d1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -gem 'gitlab', :git => 'https://github.com/varac/gitlab.git', :branch => 'pipeline_support' +gem 'gitlab' # activesupport >= 5.0.0 requires ruby 2.2 which break jessie support gem 'activesupport', '< 5.0.0' # both following gems will break on jessie with @@ -8,7 +8,6 @@ gem 'activesupport', '< 5.0.0' gem 'mime-types', '2.6.2' gem 'rest-client', '< 2.0.0' - gemspec gem "nagiosharder" -- cgit v1.2.3