From 088e58ec05bde49500c9ec1abca0dc79440c5c07 Mon Sep 17 00:00:00 2001 From: Fuzzwah Date: Wed, 25 Jan 2023 14:28:01 +1100 Subject: [PATCH] drag this into the current age --- .env-example | 5 --- Gemfile | 6 ++-- Gemfile.lock | 95 +++++++++++++++++++++++++++++++--------------------- 3 files changed, 61 insertions(+), 45 deletions(-) delete mode 100644 .env-example diff --git a/.env-example b/.env-example deleted file mode 100644 index 9a932c2..0000000 --- a/.env-example +++ /dev/null @@ -1,5 +0,0 @@ -GITHUB_PRIVATE_KEY="" -GITHUB_APP_IDENTIFIER= -GITHUB_WEBHOOK_SECRET= -GITHUB_APP_USER_NAME= -GITHUB_APP_USER_EMAIL= diff --git a/Gemfile b/Gemfile index c03ffaf..d0e4acf 100644 --- a/Gemfile +++ b/Gemfile @@ -1,8 +1,10 @@ source 'http://rubygems.org' -gem 'sinatra', '~> 2.0' +gem 'sinatra', '~> 2.2' gem 'jwt', '~> 2.1' -gem 'octokit', '~> 4.0' +gem 'octokit', '~> 4.2' gem 'rubocop' gem 'dotenv' gem 'git' +gem 'faraday-retry' +gem 'puma' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 2611e27..535022a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,58 +1,77 @@ GEM remote: http://rubygems.org/ specs: - addressable (2.5.2) - public_suffix (>= 2.0.2, < 4.0) - ast (2.4.0) - dotenv (2.5.0) - faraday (0.15.3) - multipart-post (>= 1.2, < 3) - git (1.5.0) - jaro_winkler (1.5.1) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + ast (2.4.2) + dotenv (2.8.1) + faraday (2.7.4) + faraday-net_http (>= 2.0, < 3.1) + ruby2_keywords (>= 0.0.4) + faraday-net_http (3.0.2) + faraday-retry (2.0.0) + faraday (~> 2.0) + git (1.13.1) + addressable (~> 2.8) + rchardet (~> 1.8) + json (2.6.3) jwt (2.1.0) - multipart-post (2.0.0) - mustermann (1.0.3) - octokit (4.13.0) - sawyer (~> 0.8.0, >= 0.5.3) - parallel (1.12.1) - parser (2.5.3.0) - ast (~> 2.4.0) - powerpack (0.1.2) - public_suffix (3.0.3) - rack (2.0.6) - rack-protection (2.0.4) + mustermann (2.0.2) + ruby2_keywords (~> 0.0.1) + nio4r (2.5.8) + octokit (4.25.1) + faraday (>= 1, < 3) + sawyer (~> 0.9) + parallel (1.22.1) + parser (3.2.0.0) + ast (~> 2.4.1) + public_suffix (5.0.1) + puma (6.0.2) + nio4r (~> 2.0) + rack (2.2.6.2) + rack-protection (2.2.4) rack - rainbow (3.0.0) - rubocop (0.60.0) - jaro_winkler (~> 1.5.1) + rainbow (3.1.1) + rchardet (1.8.0) + regexp_parser (2.6.2) + rexml (3.2.5) + rubocop (1.44.0) + json (~> 2.3) parallel (~> 1.10) - parser (>= 2.5, != 2.5.1.1) - powerpack (~> 0.1) + parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.24.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (~> 1.4.0) - ruby-progressbar (1.10.0) - sawyer (0.8.1) - addressable (>= 2.3.5, < 2.6) - faraday (~> 0.8, < 1.0) - sinatra (2.0.4) - mustermann (~> 1.0) - rack (~> 2.0) - rack-protection (= 2.0.4) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.24.1) + parser (>= 3.1.1.0) + ruby-progressbar (1.11.0) + ruby2_keywords (0.0.5) + sawyer (0.9.2) + addressable (>= 2.3.5) + faraday (>= 0.17.3, < 3) + sinatra (2.2.4) + mustermann (~> 2.0) + rack (~> 2.2) + rack-protection (= 2.2.4) tilt (~> 2.0) - tilt (2.0.8) - unicode-display_width (1.4.0) + tilt (2.0.11) + unicode-display_width (2.4.2) PLATFORMS ruby DEPENDENCIES dotenv + faraday-retry git jwt (~> 2.1) - octokit (~> 4.0) + octokit (~> 4.2) + puma rubocop - sinatra (~> 2.0) + sinatra (~> 2.2) BUNDLED WITH - 1.17.1 + 2.4.5