From 357935d3da18dd68eca9f4891c20b7d9b7e12013 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 5 Feb 2023 03:30:30 +0400 Subject: [PATCH] Initialize Bundler application --- .ruby-gemset | 1 + .ruby-version | 1 + Gemfile | 6 ++++++ Gemfile.lock | 28 ++++++++++++++++++++++++++++ 4 files changed, 36 insertions(+) create mode 100644 .ruby-gemset create mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/.ruby-gemset b/.ruby-gemset new file mode 100644 index 0000000..97fe6e1 --- /dev/null +++ b/.ruby-gemset @@ -0,0 +1 @@ +leqsikoni-backend diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..79bc2c7 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +ruby-3.0.4 diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..bd40345 --- /dev/null +++ b/Gemfile @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +source 'https://rubygems.org' + +gem 'puma', '~> 6.0' +gem 'sinatra', '~> 3.0' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..5cbf063 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,28 @@ +GEM + remote: https://rubygems.org/ + specs: + mustermann (3.0.0) + ruby2_keywords (~> 0.0.1) + nio4r (2.5.8) + puma (6.0.2) + nio4r (~> 2.0) + rack (2.2.6.2) + rack-protection (3.0.5) + rack + ruby2_keywords (0.0.5) + sinatra (3.0.5) + mustermann (~> 3.0) + rack (~> 2.2, >= 2.2.4) + rack-protection (= 3.0.5) + tilt (~> 2.0) + tilt (2.0.11) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + puma (~> 6.0) + sinatra (~> 3.0) + +BUNDLED WITH + 2.4.6