wavefront-cli 0.0.2 → 0.0.5

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: cd9a4217e92b817721a7437e19ec3733bd06cd3c
4
- data.tar.gz: '019e98583f888391f948e7f82266ff2cdb902a3b'
3
+ metadata.gz: 88361573bacb11ad77961b36c20cbd1fee3a0275
4
+ data.tar.gz: 759b6a5b0c5f3287d7658d676fc27ba68d2bcdc6
5
5
  SHA512:
6
- metadata.gz: fb04299e0ad36f4f4cc6c587483574859a93794a317e9c54a127b1821894dad3d25a34eade8ad81ce290aedc8b8df24d44b9853d062433d8e3a6c7d1343bb8f4
7
- data.tar.gz: 926c982c2fccb55b043c8780662ab37e4f12481c91f24a3fc51d81c8e9a0226a4172522d46bef8db1d18769a7b5fb521c3d1332a22ce0f868a887c87bd5d2386
6
+ metadata.gz: 266b8c096a7b57896158b1f54bee0615108024984279a9ebfba714725ddb48eac9648ba8da2e96fbcfc2769614166b6e4c074dd163d55d5df0c0e767bc731a19
7
+ data.tar.gz: 77f79a1bf985a89dd1f4fa71151efa85ba53289e640456a4997d2c7f6285d12b3c6fb2259aadae20ac4efc8ff0e3bcf58faaf95ff45061bb98f800799eeb2e63
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wavefront-cli (0.0.2)
4
+ wavefront-cli (0.0.5)
5
5
  docopt (= 0.5.0)
6
6
  wavefront-sdk (~> 0.1.5)
7
7
 
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # Wavefront CLI [![Build Status](https://travis-ci.org/snltd/wavefront-cli.svg?branch=master)](https://travis-ci.org/snltd/wavefront-cli) [![Code Climate](https://codeclimate.com/github/snltd/wavefront-cli/badges/gpa.svg)](https://codeclimate.com/github/snltd/wavefront-cli) [![Issue Count](https://codeclimate.com/github/snltd/wavefront-cli/badges/issue_count.svg)](https://codeclimate.com/github/snltd/wavefront-cli) [![Known Vulnerabilities](https://snyk.io/test/github/snltd/wavefront-cli/badge.svg)](https://snyk.io/test/github/snltd/wavefront-cli)
1
+ # Wavefront CLI
2
+ [![Build Status](https://travis-ci.org/snltd/wavefront-cli.svg?branch=master)](https://travis-ci.org/snltd/wavefront-cli) [![Code Climate](https://codeclimate.com/github/snltd/wavefront-cli/badges/gpa.svg)](https://codeclimate.com/github/snltd/wavefront-cli) [![Issue Count](https://codeclimate.com/github/snltd/wavefront-cli/badges/issue_count.svg)](https://codeclimate.com/github/snltd/wavefront-cli) [![Known Vulnerabilities](https://snyk.io/test/github/snltd/wavefront-cli/badge.svg)](https://snyk.io/test/github/snltd/wavefront-cli) [![Gem Version](https://badge.fury.io/rb/wavefront-cli.svg)](https://badge.fury.io/rb/wavefront-cli) ![](http://ruby-gem-downloads-badge.herokuapp.com/wavefront-cli?type=total)
2
3
 
3
4
 
4
5
  This package provides a command-line interface to Wavefront's API. Each API path
@@ -5,10 +5,10 @@ require_relative './version'
5
5
  require_relative './opt_handler'
6
6
  require_relative './exception'
7
7
 
8
- $LOAD_PATH.<< Pathname.new(__FILE__).dirname.realpath.parent.parent
9
- .parent + 'lib'
10
- $LOAD_PATH.<< Pathname.new(__FILE__).dirname.realpath.parent.parent
11
- .parent + 'wavefront-sdk' + 'lib'
8
+ #$LOAD_PATH.<< Pathname.new(__FILE__).dirname.realpath.parent.parent
9
+ #.parent + 'lib'
10
+ #$LOAD_PATH.<< Pathname.new(__FILE__).dirname.realpath.parent.parent
11
+ #.parent + 'wavefront-sdk' + 'lib'
12
12
 
13
13
  CMD_DIR = Pathname.new(__FILE__).dirname + 'commands'
14
14
 
@@ -1 +1 @@
1
- WF_CLI_VERSION = '0.0.2'.freeze
1
+ WF_CLI_VERSION = '0.0.5'.freeze
@@ -1,6 +1,5 @@
1
1
  require 'pathname'
2
2
  require 'date'
3
- require 'English'
4
3
 
5
4
  require_relative 'lib/wavefront-cli/version'
6
5
 
@@ -17,7 +16,9 @@ Gem::Specification.new do |gem|
17
16
  gem.homepage = 'https://github.com/snltd/wavefront-cli'
18
17
  gem.license = 'BSD-2-Clause'
19
18
 
20
- gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
19
+ gem.bindir = 'bin'
20
+ gem.files = `git ls-files`.split("\n")
21
+ gem.executables = 'wavefront'
21
22
  gem.test_files = gem.files.grep(/^spec/)
22
23
  gem.require_paths = %w(lib)
23
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wavefront-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Fisher
@@ -150,7 +150,8 @@ dependencies:
150
150
  version: 0.4.0
151
151
  description: 'CLI for Wavefront (wavefront.com) API v2 '
152
152
  email: slackboy@gmail.com
153
- executables: []
153
+ executables:
154
+ - wavefront
154
155
  extensions: []
155
156
  extra_rdoc_files: []
156
157
  files: