Skip to content

Commit

Permalink
added simple page
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyacheslav Litvinov committed Nov 13, 2023
1 parent 2c3ae65 commit 6e4477f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'

gem 'rubocop'
gem 'sinatra'
gem 'puma'

17 changes: 17 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@ GEM
ast (2.4.2)
json (2.6.3)
language_server-protocol (3.17.0.3)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.9)
parallel (1.23.0)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
puma (6.4.0)
nio4r (~> 2.0)
racc (1.7.3)
rack (2.2.8)
rack-protection (3.1.0)
rack (~> 2.2, >= 2.2.4)
rainbow (3.1.1)
regexp_parser (2.8.2)
rexml (3.2.6)
Expand All @@ -26,6 +34,13 @@ GEM
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
sinatra (3.1.0)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.1.0)
tilt (~> 2.0)
tilt (2.3.0)
unicode-display_width (2.5.0)

PLATFORMS
Expand All @@ -35,7 +50,9 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
puma
rubocop
sinatra

RUBY VERSION
ruby 3.1.2p20
Expand Down
6 changes: 6 additions & 0 deletions myapp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'sinatra'

get '/' do
'Hello world!'
end

0 comments on commit 6e4477f

Please sign in to comment.