add webrick

This commit is contained in:
Joerg Reichert 2023-04-01 23:04:08 +02:00
parent fafc6518d3
commit 563c1eff8c
2 changed files with 4 additions and 2 deletions

View file

@ -31,6 +31,8 @@ gem 'uglifier'
gem 'leaflet-rails'
gem 'validate_url'
gem 'webrick', '~> 1.7'
group :development do
gem 'awesome_print'
gem 'spring'
@ -42,7 +44,7 @@ group :development, :test do
gem 'launchy'
gem 'pry'
gem 'pry-rails'
gem 'puma'
gem 'puma', '~> 5.2'
gem 'rspec-rails', '~> 3.0'
gem 'rubocop'
end

View file

@ -1 +1 @@
web: bundle exec rails server -p 3000
web: bundle exec rails server -b 0.0.0.0 -p 3000