uptimerobot_cmd 0.2.0 → 0.2.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: 02f5f7e56ee4cff14f89ab3b86186f3d476142e8
4
- data.tar.gz: 32d053ab4394994e861aac0bc26a3fcbf7e7eab3
3
+ metadata.gz: 19b3f9fd50af7ef66b911bfa989af841e9153fd4
4
+ data.tar.gz: e57daf3be0d59c504e5da45d3807c031a13a1681
5
5
  SHA512:
6
- metadata.gz: 766f2ea20adbce5d7e2a3d5c1b1a1c29f47daa2e2813f1bca43b96c839c517032de86c6fc39c033a77afdeb2ad7146e9ea065876fec1cbf532b990c21e6ae1a2
7
- data.tar.gz: 8f940133b8cd5bdd79e5b048e377c9ca6a86573e794cb63e2f49bee5a0760463d4c93c774099caec388b8aa9615dd3a0e4ab2dec89cf98d6eda058287b6814b2
6
+ metadata.gz: 915aa203eaa0be52041e1b429d677fd1611ac27ce586eb0a0c306e8e7fb3a0e878e489c4f468db2928c5e24060f8e55df21ae0bc5836ee86819cbf33753b0646
7
+ data.tar.gz: 5391d5f0ce19ee2d851bf0d455f5d7b724b369e7e45383cfa83fd0c6f3b67fc90627d18bc3dfc549ff068627bb9b362c8cf0787b47a8c533672ab9d1e177361a
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ [![Build Status](https://travis-ci.org/vigo/uptimerobot_cmd.svg?branch=master)](https://travis-ci.org/vigo/uptimerobot_cmd)
2
+ ![Version](https://img.shields.io/badge/version-0.2.0-yellow.svg)
3
+
4
+
1
5
  # UptimerobotCmd
2
6
 
3
7
  Command-line client for [Uptimerobot](https://uptimerobot.com) service.
@@ -42,6 +46,7 @@ Commands:
42
46
  uptimerobot_cmd help [COMMAND] # Describe available commands or one specific command
43
47
  uptimerobot_cmd list # List current monitors
44
48
  uptimerobot_cmd search NAME or URL # Search in monitored services
49
+ uptimerobot_cmd version # Version information
45
50
 
46
51
  Options:
47
52
  [--color], [--no-color]
@@ -6,6 +6,11 @@ module UptimerobotCmd
6
6
  class CLI < Thor
7
7
  class_option :color, :type => :boolean
8
8
 
9
+ desc "version", "Version information"
10
+ def version
11
+ puts UptimerobotCmd::VERSION
12
+ end
13
+
9
14
  desc "list", "List current monitors"
10
15
  long_desc <<-LONGDESC
11
16
  List current monitored services.\n
@@ -1,3 +1,3 @@
1
1
  module UptimerobotCmd
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uptimerobot_cmd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uğur Özyılmazel