From 332b44424e33712b07060351a73dd71b03cba852 Mon Sep 17 00:00:00 2001 From: Ale Gnoli Date: Sun, 29 Aug 2021 05:18:20 +0000 Subject: [PATCH 1/2] Version bump to 0.9.3 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f76f913..b3ec163 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.2 \ No newline at end of file +0.9.3 \ No newline at end of file From 247f65b22eaf3b48e7546704584c7328aa62bee3 Mon Sep 17 00:00:00 2001 From: Ale Gnoli Date: Sun, 27 Feb 2022 17:29:20 -0800 Subject: [PATCH 2/2] Basic exception handling for bin file mgr --- Gemfile | 5 +++-- framework_components/binary-files-manager/bin_files_mngr.rb | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 66824be..360275f 100755 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source 'http://rubygems.org' gem 'semantic', '~> 1.4' -gem 'logging', '~> 2.2' +gem 'logging', '~> 2.3' gem 'git', '~> 1.2' gem 'sinatra', '~>1.4' gem 'sinatra-cross_origin', '~> 0.3.2' @@ -11,12 +11,13 @@ gem 'slop', '~>4.0' gem 'nutella_lib','~>0.4', '>=0.4.24' gem 'activesupport', '~>4.2' gem 'bson', '~> 3.0' +gem 'honeybadger', '~> 4.0' group :development do gem 'shoulda', '~> 3.0' gem 'yard', '~> 0.9.11' gem 'rdoc', '~> 4.0' - gem 'bundler', '~> 1.0' + gem 'bundler', '~> 2.0' gem 'jeweler', '~> 2.0' gem 'simplecov', '~> 0.9' end diff --git a/framework_components/binary-files-manager/bin_files_mngr.rb b/framework_components/binary-files-manager/bin_files_mngr.rb index e832941..81067b9 100755 --- a/framework_components/binary-files-manager/bin_files_mngr.rb +++ b/framework_components/binary-files-manager/bin_files_mngr.rb @@ -2,6 +2,8 @@ require 'sinatra/cross_origin' require 'fileutils' +require 'honeybadger' + require_relative '../../lib/config/runlist' require_relative '../../lib/config/config' require_relative '../../nutella_lib/framework_core'