gyoza-languages 1.0.1 → 1.0.3
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/lib/gyoza-languages/gyoza_app.rb +1 -1
- data/lib/gyoza-languages/version.rb +2 -2
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 498c4c284ca425c3e5209d01d9d672f92564cd34c920c36c30316e1a8558702d
|
4
|
+
data.tar.gz: 6133c90b3ff6d4b01bed2c05f0ea8909ab530da95fe3c72c16ca6839da1b91f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 499cecbafa170bb4dea32f752a01ad9326116f82a35cda6a85bf5768eb4aa511968f4ca4521a01ebc5ffba5d0c5e7fa25710d52acb10500a749d4b0ff245d77f
|
7
|
+
data.tar.gz: 2938c1fd91118110395b34e41b8e4f870799aa43bdd2f471e5e5826590906d8aadad69af6c1379818243d784bdf5d7b758212c452c0864898eb3a72e7c23776e
|
data/Gemfile
CHANGED
@@ -19,7 +19,7 @@ class GyozaApp
|
|
19
19
|
# a GyozaError is raised.
|
20
20
|
#
|
21
21
|
# Arguments:
|
22
|
-
# port: the port to start the server at
|
22
|
+
# port: the port to start the server at
|
23
23
|
def start(port = GyozaLanguages::DEFAULT_PORT)
|
24
24
|
if @handler.nil?
|
25
25
|
@handler = Rackup::Handler.default
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module GyozaLanguages
|
4
|
-
VERSION = '1.0.
|
4
|
+
VERSION = '1.0.3'
|
5
5
|
# The content sent as the HTTP Server header
|
6
6
|
SERVER_NAME = "Gyoza-Languages/#{VERSION}"
|
7
|
-
DEFAULT_PORT =
|
7
|
+
DEFAULT_PORT = 20125
|
8
8
|
|
9
9
|
SPEC_NAME = $PROGRAM_NAME.split('/').last
|
10
10
|
SPEC_DESCRIPTION = 'A Ruby implementation of the Github linguist project with an integrated simple HTTP web server'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gyoza-languages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fulminazzo
|
@@ -108,6 +108,20 @@ dependencies:
|
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: 2.2.1
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.21.2
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.21.2
|
111
125
|
description: This Gem acts as a bridge between a simple Rest API and the Github linguist
|
112
126
|
program, to allow for languages retrieval with easy and parameterized requests.
|
113
127
|
email:
|