okapi 1.0.0 → 1.0.1

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: 0b4ad705452ab3ced9e0ec9743e56c6fa24f1117
4
- data.tar.gz: 345239939ca579b2497d394682dae3f8d53932dc
3
+ metadata.gz: 100d12d460d419c46f057268d5f3c878590998ee
4
+ data.tar.gz: 81baa5f0e8a41bf6ff2c403d47e268db4d421eb2
5
5
  SHA512:
6
- metadata.gz: a19a00888830698ff87639178e45620b5af594299e0af9d86470de3ca095954e004e93b3f4591038d62757d89b2e0718ebb73318129d93c1632a22e80493cfe9
7
- data.tar.gz: 4a3f1df365e80aa17386e763d205584dc39cbd553a5c12df639658e6cba7e90c35f2a0dee3f30e7b2e17451aaf3f192505864f56ec5937f940d034eb501311c9
6
+ metadata.gz: 3b96ed95057ab19b7018d3280636496169aa563df10499b266f097635cf4fd46bf9921d1ce5c63ab0ae6bf69d9f84a07ded9d7b19bbfc6e26ae330df1b12695e
7
+ data.tar.gz: 6b5bcba70b692b31619d357ac3b2e5de311d655c2b9a8e87c4fcf677fbcd0ab12e7f57091f1994eb4f492bcaf7389fc1af0ea3788f6f3c890acd90dbe3994824
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+
6
+ ## [1.0.1] - 2017-10-27
7
+
8
+ ### Added
9
+ - command line client to interact with an OKAPI gateway within a
10
+ shell. `okapi -h` for details after installing the gem.
data/lib/okapi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Okapi
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/okapi.gemspec CHANGED
@@ -6,8 +6,8 @@ require "okapi/version"
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "okapi"
8
8
  spec.version = Okapi::VERSION
9
- spec.authors = ["Charles Lowell"]
10
- spec.email = ["cowboyd@frontside.io"]
9
+ spec.authors = ["Frontside Engineering"]
10
+ spec.email = ["engineering@frontside.io"]
11
11
 
12
12
  spec.summary = %q{Ruby utilities for interacting with an okapi cluster}
13
13
  spec.description = %q{Interaact with an OKAPI gateway from ruby}
@@ -17,8 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
18
  f.match(%r{^(test|spec|features)/})
19
19
  end
20
- spec.bindir = "exe"
21
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.bindir = "bin"
21
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
24
  spec.add_dependency "clamp", "~> 1.1"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: okapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Charles Lowell
7
+ - Frontside Engineering
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2017-10-27 00:00:00.000000000 Z
12
12
  dependencies:
@@ -124,14 +124,18 @@ dependencies:
124
124
  version: '3.5'
125
125
  description: Interaact with an OKAPI gateway from ruby
126
126
  email:
127
- - cowboyd@frontside.io
128
- executables: []
127
+ - engineering@frontside.io
128
+ executables:
129
+ - console
130
+ - okapi
131
+ - setup
129
132
  extensions: []
130
133
  extra_rdoc_files: []
131
134
  files:
132
135
  - ".gitignore"
133
136
  - ".rspec"
134
137
  - ".travis.yml"
138
+ - CHANGELOG.md
135
139
  - Gemfile
136
140
  - LICENSE.txt
137
141
  - README.md