knife-rhn 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ ## 0.3.0
2
+
3
+ * Added last check-in to system details output
4
+
5
+ ## 0.2.1
6
+
7
+ * Fixed system details class typo
8
+ * Fixed systemgroup list banner typo
9
+
10
+ ## 0.2.0
11
+
12
+ * Backend class refactoring
data/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  A knife plugin for managing Red Hat Network.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/knife-rhn.png)](http://badge.fury.io/rb/knife-rhn)
6
+  
7
+ [![Code Climate](https://codeclimate.com/github/bflad/knife-rhn.png)](https://codeclimate.com/github/bflad/knife-rhn)
8
+
5
9
  ## Installation
6
10
 
7
11
  Uses [rhn_satellite rubygem](https://github.com/duritong/ruby-rhn_satellite) for the backend.
@@ -40,6 +40,8 @@ class Chef
40
40
  ui.info "#{ui.color "Description", :cyan}:"
41
41
  ui.info "#{details['description']}"
42
42
 
43
+ ui.info "#{ui.color "Last Check-In", :cyan}: #{satellite_system['last_checkin'].to_time}"
44
+
43
45
  base_channel = RhnSatellite::System.subscribed_base_channel(satellite_system['id'])
44
46
  child_channels = RhnSatellite::System.subscribed_child_channels(satellite_system['id'])
45
47
  ui.info "#{ui.color "Subscribed Channels", :cyan}:"
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Rhn
3
- VERSION = "0.2.1"
3
+ VERSION = "0.3.0"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-rhn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-21 00:00:00.000000000 Z
12
+ date: 2013-03-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rhn_satellite
@@ -35,6 +35,7 @@ extensions: []
35
35
  extra_rdoc_files: []
36
36
  files:
37
37
  - .gitignore
38
+ - CHANGELOG.md
38
39
  - Gemfile
39
40
  - README.md
40
41
  - Rakefile