File tree 4 files changed +6
-2
lines changed
4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
gem 'sinatra'
4
4
gem 'octokit'
5
5
gem 'eldritch'
6
+ gem 'puma'
Original file line number Diff line number Diff line change 1
1
require 'sinatra/base'
2
+ require 'puma'
2
3
require 'json'
3
4
require_relative '../../pairing_matrix'
4
5
require_relative '../config/config_reader'
9
10
module PairingMatrix
10
11
class Server < Sinatra ::Base
11
12
set :bind , '0.0.0.0'
13
+ set :server , :puma
12
14
13
15
logging_file = File . new ( 'app.log' , 'a+' )
14
16
logging_file . sync = true
@@ -36,4 +38,4 @@ class Server < Sinatra::Base
36
38
File . read ( File . join ( File . dirname ( __FILE__ ) , 'public/index.html' ) )
37
39
end
38
40
end
39
- end
41
+ end
Original file line number Diff line number Diff line change 1
1
module PairingMatrix
2
- VERSION = '2.1.1 '
2
+ VERSION = '2.2 '
3
3
end
Original file line number Diff line number Diff line change @@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
spec . add_dependency 'sinatra' , '~> 1.4.8'
23
23
spec . add_dependency 'octokit' , '~> 4.6.2'
24
24
spec . add_dependency 'eldritch' , '~> 1.1.2'
25
+ spec . add_dependency 'puma' , '~> 3.11.2'
25
26
end
You can’t perform that action at this time.
0 commit comments