1
0
Fork 0

Initialize Bundler application

This commit is contained in:
Alex Kotov 2023-02-05 03:30:30 +04:00
parent ee0c5eba9a
commit 357935d3da
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 36 additions and 0 deletions

1
.ruby-gemset Normal file
View File

@ -0,0 +1 @@
leqsikoni-backend

1
.ruby-version Normal file
View File

@ -0,0 +1 @@
ruby-3.0.4

6
Gemfile Normal file
View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'puma', '~> 6.0'
gem 'sinatra', '~> 3.0'

28
Gemfile.lock Normal file
View File

@ -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