pairing_matrix 2.1.1 → 2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d7ea09a3b4e40cd82689db445dfaa16afa0e55df
4
- data.tar.gz: a1ff706e4ea469cf6d383f7fb779c6ec4fafdb0e
3
+ metadata.gz: 2bc6f132a4599b75f2fd0aaf4fa182a184b77921
4
+ data.tar.gz: 764be9f4d5b27b53916f05f0c815bb3af1d8c1ae
5
5
  SHA512:
6
- metadata.gz: 53470f83eab6201122b49158cbc00e578a8acfa1755c532eb4e1a259e50c222306dc33e0b3abae276a8d5a7b1a9505954422959184c077a84538f3b1302ff831
7
- data.tar.gz: 874e2a23bb8602db681a637923ea4d102c6355b3b8dc8f05b085f97c9dff4d676a34abc82294f433367c8bb6f02ad014d67aad6a752b1c2fe4f4bfe92dbdec57
6
+ metadata.gz: 36883e28711dc4a2f6aac128a6fdece23cda51a849eddbed1a0fdf8614858cddefa8fc5086b4d4b3fba485e44a6574683aef1762bde05b2f1900099a4721f79a
7
+ data.tar.gz: 3ed8e52d880d28feda01184377923398a42fd2d4afe3a4e00ec9acb7433badde181c7362ea7014300a21e69c6b8f0dcf5b88c242dd1d9e35063a90d1c2b99a3e
data/Gemfile CHANGED
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gem 'sinatra'
4
4
  gem 'octokit'
5
5
  gem 'eldritch'
6
+ gem 'puma'
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://opensource.org/licenses/MIT)
6
6
  [![Twitter Follow](https://img.shields.io/twitter/follow/Ajit5ingh.svg?style=social)](https://twitter.com/Ajit5ingh)
7
7
 
8
- <img src="https://github.com/ajitsing/ScreenShots/blob/master/pairing_matrix/pairing_mat.png" width="600" height="550" />
8
+ <img src="https://github.com/ajitsing/ScreenShots/blob/master/pairing_matrix/pairing_mat.png" width="900" height="550" />
9
9
 
10
10
  ## How to read this matrix?
11
11
  1. This matrix is purely based on commits.
@@ -1,4 +1,5 @@
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,6 +10,7 @@ require_relative '../github_commit_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 @@ module PairingMatrix
36
38
  File.read(File.join(File.dirname(__FILE__), 'public/index.html'))
37
39
  end
38
40
  end
39
- end
41
+ end
@@ -1,3 +1,3 @@
1
1
  module PairingMatrix
2
- VERSION = '2.1.1'
2
+ VERSION = '2.2'
3
3
  end
@@ -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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pairing_matrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: '2.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ajit Singh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-27 00:00:00.000000000 Z
11
+ date: 2018-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 1.1.2
69
+ - !ruby/object:Gem::Dependency
70
+ name: puma
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 3.11.2
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 3.11.2
69
83
  description: Draw pairing matrix from given repos and configurations
70
84
  email:
71
85
  - jeetsingh.ajit@gmail.com