wavefront-cli 0.0.2 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -1
- data/lib/wavefront-cli/controller.rb +4 -4
- data/lib/wavefront-cli/version.rb +1 -1
- data/wavefront-cli.gemspec +3 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88361573bacb11ad77961b36c20cbd1fee3a0275
|
4
|
+
data.tar.gz: 759b6a5b0c5f3287d7658d676fc27ba68d2bcdc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 266b8c096a7b57896158b1f54bee0615108024984279a9ebfba714725ddb48eac9648ba8da2e96fbcfc2769614166b6e4c074dd163d55d5df0c0e767bc731a19
|
7
|
+
data.tar.gz: 77f79a1bf985a89dd1f4fa71151efa85ba53289e640456a4997d2c7f6285d12b3c6fb2259aadae20ac4efc8ff0e3bcf58faaf95ff45061bb98f800799eeb2e63
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
# 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
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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.
|
1
|
+
WF_CLI_VERSION = '0.0.5'.freeze
|
data/wavefront-cli.gemspec
CHANGED
@@ -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.
|
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.
|
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:
|