skull_island 1.2.8 → 1.2.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83a5a4bbb01bcbd6b9837e72533d2ce4ef7b7515435da663a5f098e2ac64dde0
4
- data.tar.gz: 227036f85eb431f3a7feab16e24c994d7702e168df5e773b53c6a89ed79368a0
3
+ metadata.gz: f268c820dcd42d72c73df67cb9cda9440704fd4d4ad18bab086497b4eff049f1
4
+ data.tar.gz: 9dc739be3c2cd49f6f2babdc88f7156018f3ca5c97c373ede064be3d6a4e4724
5
5
  SHA512:
6
- metadata.gz: fecb0e599904792539a4656d7bea043a14a0eb7f90c5fc6f59b450f32b1cbeb326fab1837a445df107536fb750ad83b4eda0f446b9231aaaebe19bcc3f7861c8
7
- data.tar.gz: '039460f3aacc5981e3f820210dee37888990bb7930baa142eef457d10fe04d0a977ef955f5dd2b9169ffa78867879c0fe0a9ffe590db198a556bf1f3397251d5'
6
+ metadata.gz: 41be4de3f825f795d9354c3164c27ff2046fbbfb4705fc20dbf218f39590c5aff190d66aa9ec5e2dc45110c1711f011da39631a8e47c2cb4b2133b598f3140c1
7
+ data.tar.gz: 1b5172d9079706284c70495a3d69b4b7a0c8875ef03df9e93aae896a98d13007051687da4004fe66f4236e473172e33c9b71c67d8eb74c93f2bc84e43d937e17
data/.travis.yml CHANGED
@@ -1,8 +1,8 @@
1
- sudo: false
2
1
  language: ruby
3
2
  cache: bundler
4
3
  rvm:
5
- - 2.5.3
4
+ - 2.5
5
+ - 2.6
6
6
  before_install: gem install bundler -v 2.0.1
7
7
  deploy:
8
8
  provider: rubygems
data/Dockerfile ADDED
@@ -0,0 +1,16 @@
1
+ FROM ruby:2.5-alpine
2
+ LABEL maintainer="Jonathan Gnagy <jonathan.gnagy@gmail.com>"
3
+
4
+ COPY . /install
5
+
6
+ RUN apk add build-base git \
7
+ && cd /install \
8
+ && gem build skull_island.gemspec \
9
+ && gem install skull_island*.gem \
10
+ && rm skull_island*.gem \
11
+ && apk del build-base git \
12
+ && rm -rf /var/cache/apk/* \
13
+ && cd / \
14
+ && rm -rf /install
15
+
16
+ ENTRYPOINT ["skull_island"]
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skull_island (1.2.8)
4
+ skull_island (1.2.9)
5
5
  deepsort (~> 0.4)
6
6
  erubi (~> 1.8)
7
7
  json (~> 2.1)
data/README.md CHANGED
@@ -4,6 +4,18 @@ A full-featured SDK for [Kong](https://konghq.com/kong/) 1.1.x/1.2.x (with suppo
4
4
 
5
5
  ## Installation
6
6
 
7
+ ### CLI Tool
8
+
9
+ If you only plan on using the CLI tool, feel free to just use the Docker image:
10
+
11
+ ```sh
12
+ docker pull jgnagy/skull_island
13
+ alias skull_island='docker run -it --rm -e KONG_ADMIN_URL=${KONG_ADMIN_URL:-http://host.docker.internal:8001} -u $(id -u) -v ${PWD}:${PWD} -w ${PWD} jgnagy/skull_island'
14
+ skull_island help
15
+ ```
16
+
17
+ ### Ruby Gem Install / SDK
18
+
7
19
  Either:
8
20
 
9
21
  ```sh
@@ -4,6 +4,6 @@ module SkullIsland
4
4
  VERSION = [
5
5
  1, # Major
6
6
  2, # Minor
7
- 8 # Patch
7
+ 9 # Patch
8
8
  ].join('.')
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skull_island
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.8
4
+ version: 1.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-06 00:00:00.000000000 Z
11
+ date: 2019-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deepsort
@@ -218,6 +218,7 @@ files:
218
218
  - ".rspec"
219
219
  - ".rubocop.yml"
220
220
  - ".travis.yml"
221
+ - Dockerfile
221
222
  - Gemfile
222
223
  - Gemfile.lock
223
224
  - LICENSE.txt