vault 0.1.1 → 0.1.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: a89d23ccac2e973fd3fa339fc135d8da946f0a3b
4
- data.tar.gz: d5caa33647ecaa5f2bacfd25cac78b195e760e7f
3
+ metadata.gz: 9496bfe71a748722868ca561d6eee9b39653f22f
4
+ data.tar.gz: 9fbd192e0714dd8ccae4eea5dae83731093eb622
5
5
  SHA512:
6
- metadata.gz: f9a3e92e738cba9dbb0a8eff1c7cf7295b8ac1ca3d271137726864a8ec1fa3dceea02c394ae45d416ad899529a5521a44ea58f7e28b751a5f90df2ae8df86f17
7
- data.tar.gz: ef86717cb1e26c9c8b93455db892688ba06fcec49bd172407d4c0cddb9549be00a2cd346507753edaa1eac34feaac0551e9d0ef1563fadb13b5b7a52c18068de
6
+ metadata.gz: 743faddaf58727aa08c0b32dcdf52e599c87142011fec8e7910480e365a3d398e551f209822c5f9df35fbabdfe0f4f98dcc07793d482f0a7f8e96243cf2b00f8
7
+ data.tar.gz: 704847057e6127627aab9ad2c7394cfcc59e6c77364c3d73a77fc12ac6fb22434e0761f14708e4dca581cc5502d312c3637135fa19c771dc111f8e8542c133e4
@@ -2,5 +2,16 @@ language: ruby
2
2
  cache: bundler
3
3
  sudo: false
4
4
 
5
+ before_install: |-
6
+ wget -O vault.zip -q https://dl.bintray.com/mitchellh/vault/vault_0.1.1_linux_amd64.zip
7
+ unzip vault.zip
8
+ mkdir ~/bin
9
+ mv vault ~/bin
10
+ export PATH="~/bin:$PATH"
11
+
12
+ branches:
13
+ only:
14
+ - master
15
+
5
16
  rvm:
6
17
  - 2.2
@@ -1,5 +1,13 @@
1
1
  # Vault Ruby Changelog
2
2
 
3
+ ## v0.1.2 (May 3, 2015)
4
+
5
+ BUG FIXES
6
+
7
+ - Require vault/version before accessing Vault::VERSION in the client
8
+ - Improve Travis CI test coverage
9
+ - README and typo fixes
10
+
3
11
  ## v0.1.1 (April 4, 2015)
4
12
 
5
13
  - Initial release
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vault (0.1.1)
4
+ vault (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,5 @@
1
- Vault Ruby Client
1
+ Vault Ruby Client [![Build Status](https://secure.travis-ci.org/hashicorp/vault-ruby.svg)](http://travis-ci.org/hashicorp/vault-ruby)
2
2
  =================
3
- [![Build Status](https://secure.travis-ci.org/hashicorp/vault-ruby.png?branch=master)](http://travis-ci.org/hashicorp/vault-ruby)
4
3
 
5
4
  Vault is the official Ruby client for interacting with [Vault](https://vaultproject.io) by HashiCorp.
6
5
 
@@ -33,7 +32,7 @@ The following configuration options are available:
33
32
 
34
33
  ```ruby
35
34
  Vault::Client.configure do |config|
36
- # The address of the Vault server, also read as ENV["VAULT_TOKEN"]
35
+ # The address of the Vault server, also read as ENV["VAULT_ADDR"]
37
36
  config.address = "https://127.0.0.1:8200"
38
37
 
39
38
  # The token to authenticate with Vault, also read as ENV["VAULT_TOKEN"]
@@ -7,6 +7,7 @@ require "uri"
7
7
 
8
8
  require_relative "configurable"
9
9
  require_relative "errors"
10
+ require_relative "version"
10
11
 
11
12
  module Vault
12
13
  class Client
@@ -1,3 +1,3 @@
1
1
  module Vault
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vault
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-04-28 00:00:00.000000000 Z
11
+ date: 2015-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler