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 +4 -4
- data/Gemfile +1 -0
- data/README.md +1 -1
- data/lib/pairing_matrix/server/server.rb +3 -1
- data/lib/pairing_matrix/version.rb +1 -1
- data/pairing_matrix.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bc6f132a4599b75f2fd0aaf4fa182a184b77921
|
|
4
|
+
data.tar.gz: 764be9f4d5b27b53916f05f0c815bb3af1d8c1ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36883e28711dc4a2f6aac128a6fdece23cda51a849eddbed1a0fdf8614858cddefa8fc5086b4d4b3fba485e44a6574683aef1762bde05b2f1900099a4721f79a
|
|
7
|
+
data.tar.gz: 3ed8e52d880d28feda01184377923398a42fd2d4afe3a4e00ec9acb7433badde181c7362ea7014300a21e69c6b8f0dcf5b88c242dd1d9e35063a90d1c2b99a3e
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://twitter.com/Ajit5ingh)
|
|
7
7
|
|
|
8
|
-
<img src="https://github.com/ajitsing/ScreenShots/blob/master/pairing_matrix/pairing_mat.png" width="
|
|
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
|
data/pairing_matrix.gemspec
CHANGED
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.
|
|
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-
|
|
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
|