buzz 0.0.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.
- data/.document +5 -0
 - data/Gemfile +13 -0
 - data/Gemfile.lock +35 -0
 - data/LICENSE.txt +20 -0
 - data/README.rdoc +19 -0
 - data/Rakefile +45 -0
 - data/VERSION +1 -0
 - data/buzz +5 -0
 - data/buzz.gemspec +75 -0
 - data/conf/.buzz +0 -0
 - data/lib/buzz.rb +16 -0
 - data/lib/channel.rb +46 -0
 - data/lib/system.rb +120 -0
 - data/test/helper.rb +18 -0
 - data/test/test_buzz.rb +7 -0
 - metadata +193 -0
 
    
        data/.document
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    
    
        data/Gemfile.lock
    ADDED
    
    | 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            GEM
         
     | 
| 
      
 2 
     | 
    
         
            +
              remote: http://rubygems.org/
         
     | 
| 
      
 3 
     | 
    
         
            +
              specs:
         
     | 
| 
      
 4 
     | 
    
         
            +
                addressable (2.3.4)
         
     | 
| 
      
 5 
     | 
    
         
            +
                crack (0.3.2)
         
     | 
| 
      
 6 
     | 
    
         
            +
                extensions (0.6.0)
         
     | 
| 
      
 7 
     | 
    
         
            +
                git (1.2.5)
         
     | 
| 
      
 8 
     | 
    
         
            +
                jeweler (1.8.4)
         
     | 
| 
      
 9 
     | 
    
         
            +
                  bundler (~> 1.0)
         
     | 
| 
      
 10 
     | 
    
         
            +
                  git (>= 1.2.5)
         
     | 
| 
      
 11 
     | 
    
         
            +
                  rake
         
     | 
| 
      
 12 
     | 
    
         
            +
                  rdoc
         
     | 
| 
      
 13 
     | 
    
         
            +
                json (1.7.7)
         
     | 
| 
      
 14 
     | 
    
         
            +
                rake (10.0.4)
         
     | 
| 
      
 15 
     | 
    
         
            +
                rdoc (4.0.1)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  json (~> 1.4)
         
     | 
| 
      
 17 
     | 
    
         
            +
                sif (0.0.2)
         
     | 
| 
      
 18 
     | 
    
         
            +
                thor (0.18.1)
         
     | 
| 
      
 19 
     | 
    
         
            +
                vcr (2.4.0)
         
     | 
| 
      
 20 
     | 
    
         
            +
                webmock (1.11.0)
         
     | 
| 
      
 21 
     | 
    
         
            +
                  addressable (>= 2.2.7)
         
     | 
| 
      
 22 
     | 
    
         
            +
                  crack (>= 0.3.2)
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            PLATFORMS
         
     | 
| 
      
 25 
     | 
    
         
            +
              ruby
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            DEPENDENCIES
         
     | 
| 
      
 28 
     | 
    
         
            +
              bundler
         
     | 
| 
      
 29 
     | 
    
         
            +
              extensions
         
     | 
| 
      
 30 
     | 
    
         
            +
              jeweler (~> 1.8.4)
         
     | 
| 
      
 31 
     | 
    
         
            +
              rake
         
     | 
| 
      
 32 
     | 
    
         
            +
              sif (~> 0.0.2)
         
     | 
| 
      
 33 
     | 
    
         
            +
              thor
         
     | 
| 
      
 34 
     | 
    
         
            +
              vcr
         
     | 
| 
      
 35 
     | 
    
         
            +
              webmock
         
     | 
    
        data/LICENSE.txt
    ADDED
    
    | 
         @@ -0,0 +1,20 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Copyright (c) 2013 George McIntosh
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining
         
     | 
| 
      
 4 
     | 
    
         
            +
            a copy of this software and associated documentation files (the
         
     | 
| 
      
 5 
     | 
    
         
            +
            "Software"), to deal in the Software without restriction, including
         
     | 
| 
      
 6 
     | 
    
         
            +
            without limitation the rights to use, copy, modify, merge, publish,
         
     | 
| 
      
 7 
     | 
    
         
            +
            distribute, sublicense, and/or sell copies of the Software, and to
         
     | 
| 
      
 8 
     | 
    
         
            +
            permit persons to whom the Software is furnished to do so, subject to
         
     | 
| 
      
 9 
     | 
    
         
            +
            the following conditions:
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be
         
     | 
| 
      
 12 
     | 
    
         
            +
            included in all copies or substantial portions of the Software.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         
     | 
| 
      
 15 
     | 
    
         
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         
     | 
| 
      
 16 
     | 
    
         
            +
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         
     | 
| 
      
 17 
     | 
    
         
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         
     | 
| 
      
 18 
     | 
    
         
            +
            LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         
     | 
| 
      
 19 
     | 
    
         
            +
            OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         
     | 
| 
      
 20 
     | 
    
         
            +
            WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
     | 
    
        data/README.rdoc
    ADDED
    
    | 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            = buzz
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Description goes here.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            == Contributing to buzz
         
     | 
| 
      
 6 
     | 
    
         
            +
             
         
     | 
| 
      
 7 
     | 
    
         
            +
            * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
         
     | 
| 
      
 8 
     | 
    
         
            +
            * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
         
     | 
| 
      
 9 
     | 
    
         
            +
            * Fork the project.
         
     | 
| 
      
 10 
     | 
    
         
            +
            * Start a feature/bugfix branch.
         
     | 
| 
      
 11 
     | 
    
         
            +
            * Commit and push until you are happy with your contribution.
         
     | 
| 
      
 12 
     | 
    
         
            +
            * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
         
     | 
| 
      
 13 
     | 
    
         
            +
            * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            == Copyright
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            Copyright (c) 2013 George McIntosh. See LICENSE.txt for
         
     | 
| 
      
 18 
     | 
    
         
            +
            further details.
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1,45 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # encoding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'bundler'
         
     | 
| 
      
 5 
     | 
    
         
            +
            begin
         
     | 
| 
      
 6 
     | 
    
         
            +
              Bundler.setup(:default, :development)
         
     | 
| 
      
 7 
     | 
    
         
            +
            rescue Bundler::BundlerError => e
         
     | 
| 
      
 8 
     | 
    
         
            +
              $stderr.puts e.message
         
     | 
| 
      
 9 
     | 
    
         
            +
              $stderr.puts "Run `bundle install` to install missing gems"
         
     | 
| 
      
 10 
     | 
    
         
            +
              exit e.status_code
         
     | 
| 
      
 11 
     | 
    
         
            +
            end
         
     | 
| 
      
 12 
     | 
    
         
            +
            require 'rake'
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            require 'jeweler'
         
     | 
| 
      
 15 
     | 
    
         
            +
            Jeweler::Tasks.new do |gem|
         
     | 
| 
      
 16 
     | 
    
         
            +
              # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
         
     | 
| 
      
 17 
     | 
    
         
            +
              gem.name = "buzz"
         
     | 
| 
      
 18 
     | 
    
         
            +
              gem.homepage = "http://github.com/georgecodes/buzz"
         
     | 
| 
      
 19 
     | 
    
         
            +
              gem.license = "MIT"
         
     | 
| 
      
 20 
     | 
    
         
            +
              gem.summary = "A command-line interface for Spacewalk/RHN Satellites"
         
     | 
| 
      
 21 
     | 
    
         
            +
              gem.description = "A growing suite of tools for doing handy admin tasks etc with Spacewalk"
         
     | 
| 
      
 22 
     | 
    
         
            +
              gem.email = "george@georgemcintosh.com"
         
     | 
| 
      
 23 
     | 
    
         
            +
              gem.authors = ["George McIntosh"]
         
     | 
| 
      
 24 
     | 
    
         
            +
              # dependencies defined in Gemfile
         
     | 
| 
      
 25 
     | 
    
         
            +
            end
         
     | 
| 
      
 26 
     | 
    
         
            +
            Jeweler::RubygemsDotOrgTasks.new
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            require 'rake/testtask'
         
     | 
| 
      
 29 
     | 
    
         
            +
            Rake::TestTask.new(:test) do |test|
         
     | 
| 
      
 30 
     | 
    
         
            +
              test.libs << 'lib' << 'test'
         
     | 
| 
      
 31 
     | 
    
         
            +
              test.pattern = 'test/**/test_*.rb'
         
     | 
| 
      
 32 
     | 
    
         
            +
              test.verbose = true
         
     | 
| 
      
 33 
     | 
    
         
            +
            end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            task :default => :test
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            require 'rdoc/task'
         
     | 
| 
      
 38 
     | 
    
         
            +
            Rake::RDocTask.new do |rdoc|
         
     | 
| 
      
 39 
     | 
    
         
            +
              version = File.exist?('VERSION') ? File.read('VERSION') : ""
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
              rdoc.rdoc_dir = 'rdoc'
         
     | 
| 
      
 42 
     | 
    
         
            +
              rdoc.title = "buzz #{version}"
         
     | 
| 
      
 43 
     | 
    
         
            +
              rdoc.rdoc_files.include('README*')
         
     | 
| 
      
 44 
     | 
    
         
            +
              rdoc.rdoc_files.include('lib/**/*.rb')
         
     | 
| 
      
 45 
     | 
    
         
            +
            end
         
     | 
    
        data/VERSION
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            0.0.1
         
     | 
    
        data/buzz
    ADDED
    
    
    
        data/buzz.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,75 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Generated by jeweler
         
     | 
| 
      
 2 
     | 
    
         
            +
            # DO NOT EDIT THIS FILE DIRECTLY
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
         
     | 
| 
      
 4 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.name = "buzz"
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.version = "0.0.1"
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.authors = ["George McIntosh"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.date = "2013-04-19"
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.description = "A growing suite of tools for doing handy admin tasks etc with Spacewalk"
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.email = "george@georgemcintosh.com"
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.extra_rdoc_files = [
         
     | 
| 
      
 16 
     | 
    
         
            +
                "LICENSE.txt",
         
     | 
| 
      
 17 
     | 
    
         
            +
                "README.rdoc"
         
     | 
| 
      
 18 
     | 
    
         
            +
              ]
         
     | 
| 
      
 19 
     | 
    
         
            +
              s.files = [
         
     | 
| 
      
 20 
     | 
    
         
            +
                ".document",
         
     | 
| 
      
 21 
     | 
    
         
            +
                "Gemfile",
         
     | 
| 
      
 22 
     | 
    
         
            +
                "Gemfile.lock",
         
     | 
| 
      
 23 
     | 
    
         
            +
                "LICENSE.txt",
         
     | 
| 
      
 24 
     | 
    
         
            +
                "README.rdoc",
         
     | 
| 
      
 25 
     | 
    
         
            +
                "Rakefile",
         
     | 
| 
      
 26 
     | 
    
         
            +
                "VERSION",
         
     | 
| 
      
 27 
     | 
    
         
            +
                "buzz",
         
     | 
| 
      
 28 
     | 
    
         
            +
                "buzz.gemspec",
         
     | 
| 
      
 29 
     | 
    
         
            +
                "conf/.buzz",
         
     | 
| 
      
 30 
     | 
    
         
            +
                "lib/buzz.rb",
         
     | 
| 
      
 31 
     | 
    
         
            +
                "lib/channel.rb",
         
     | 
| 
      
 32 
     | 
    
         
            +
                "lib/system.rb",
         
     | 
| 
      
 33 
     | 
    
         
            +
                "test/helper.rb",
         
     | 
| 
      
 34 
     | 
    
         
            +
                "test/test_buzz.rb"
         
     | 
| 
      
 35 
     | 
    
         
            +
              ]
         
     | 
| 
      
 36 
     | 
    
         
            +
              s.homepage = "http://github.com/georgecodes/buzz"
         
     | 
| 
      
 37 
     | 
    
         
            +
              s.licenses = ["MIT"]
         
     | 
| 
      
 38 
     | 
    
         
            +
              s.require_paths = ["lib"]
         
     | 
| 
      
 39 
     | 
    
         
            +
              s.rubygems_version = "1.8.24"
         
     | 
| 
      
 40 
     | 
    
         
            +
              s.summary = "A command-line interface for Spacewalk/RHN Satellites"
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
              if s.respond_to? :specification_version then
         
     | 
| 
      
 43 
     | 
    
         
            +
                s.specification_version = 3
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
                if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
         
     | 
| 
      
 46 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<webmock>, [">= 0"])
         
     | 
| 
      
 47 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<vcr>, [">= 0"])
         
     | 
| 
      
 48 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<sif>, ["~> 0.0.2"])
         
     | 
| 
      
 49 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<thor>, [">= 0"])
         
     | 
| 
      
 50 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<rake>, [">= 0"])
         
     | 
| 
      
 51 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<extensions>, [">= 0"])
         
     | 
| 
      
 52 
     | 
    
         
            +
                  s.add_development_dependency(%q<bundler>, [">= 0"])
         
     | 
| 
      
 53 
     | 
    
         
            +
                  s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
         
     | 
| 
      
 54 
     | 
    
         
            +
                else
         
     | 
| 
      
 55 
     | 
    
         
            +
                  s.add_dependency(%q<webmock>, [">= 0"])
         
     | 
| 
      
 56 
     | 
    
         
            +
                  s.add_dependency(%q<vcr>, [">= 0"])
         
     | 
| 
      
 57 
     | 
    
         
            +
                  s.add_dependency(%q<sif>, ["~> 0.0.2"])
         
     | 
| 
      
 58 
     | 
    
         
            +
                  s.add_dependency(%q<thor>, [">= 0"])
         
     | 
| 
      
 59 
     | 
    
         
            +
                  s.add_dependency(%q<rake>, [">= 0"])
         
     | 
| 
      
 60 
     | 
    
         
            +
                  s.add_dependency(%q<extensions>, [">= 0"])
         
     | 
| 
      
 61 
     | 
    
         
            +
                  s.add_dependency(%q<bundler>, [">= 0"])
         
     | 
| 
      
 62 
     | 
    
         
            +
                  s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
         
     | 
| 
      
 63 
     | 
    
         
            +
                end
         
     | 
| 
      
 64 
     | 
    
         
            +
              else
         
     | 
| 
      
 65 
     | 
    
         
            +
                s.add_dependency(%q<webmock>, [">= 0"])
         
     | 
| 
      
 66 
     | 
    
         
            +
                s.add_dependency(%q<vcr>, [">= 0"])
         
     | 
| 
      
 67 
     | 
    
         
            +
                s.add_dependency(%q<sif>, ["~> 0.0.2"])
         
     | 
| 
      
 68 
     | 
    
         
            +
                s.add_dependency(%q<thor>, [">= 0"])
         
     | 
| 
      
 69 
     | 
    
         
            +
                s.add_dependency(%q<rake>, [">= 0"])
         
     | 
| 
      
 70 
     | 
    
         
            +
                s.add_dependency(%q<extensions>, [">= 0"])
         
     | 
| 
      
 71 
     | 
    
         
            +
                s.add_dependency(%q<bundler>, [">= 0"])
         
     | 
| 
      
 72 
     | 
    
         
            +
                s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
         
     | 
| 
      
 73 
     | 
    
         
            +
              end
         
     | 
| 
      
 74 
     | 
    
         
            +
            end
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
    
        data/conf/.buzz
    ADDED
    
    | 
         
            File without changes
         
     | 
    
        data/lib/buzz.rb
    ADDED
    
    | 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #!/usr/bin/env ruby
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require 'thor'
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'extensions/all'
         
     | 
| 
      
 5 
     | 
    
         
            +
            require_relative 'channel'
         
     | 
| 
      
 6 
     | 
    
         
            +
            require_relative 'system'
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            class Buzz < Thor
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              desc "channel", "Manipulate Spacewalk channels"  
         
     | 
| 
      
 11 
     | 
    
         
            +
              subcommand "channel", Channel
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              desc "system", "Manipulate Spacewalk systems"
         
     | 
| 
      
 14 
     | 
    
         
            +
              subcommand "system", System
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/channel.rb
    ADDED
    
    | 
         @@ -0,0 +1,46 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'sif'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require "xmlrpc/client"
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            class Channel < Sif::Loader
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
              option :name, :aliases => ['-n']
         
     | 
| 
      
 7 
     | 
    
         
            +
              option :summary, :aliases => ['-s']
         
     | 
| 
      
 8 
     | 
    
         
            +
              option :arch, :aliases => ['-a']
         
     | 
| 
      
 9 
     | 
    
         
            +
              option :parent, :default => '', :aliases => ['-p']
         
     | 
| 
      
 10 
     | 
    
         
            +
              option :checksum, :default => 'sha256'
         
     | 
| 
      
 11 
     | 
    
         
            +
              desc "Create channel", "Creates a new channel"
         
     | 
| 
      
 12 
     | 
    
         
            +
              def create(channel_label)
         
     | 
| 
      
 13 
     | 
    
         
            +
                server = XMLRPC::Client.new("spacewalk.elevenware.com", "/rpc/api", 80)
         
     | 
| 
      
 14 
     | 
    
         
            +
                puts "Creating #{channel_label}"
         
     | 
| 
      
 15 
     | 
    
         
            +
                puts "Name #{options[:name]}"
         
     | 
| 
      
 16 
     | 
    
         
            +
                puts "Summary #{options[:summary]}"
         
     | 
| 
      
 17 
     | 
    
         
            +
                puts "Arch #{options[:arch]}"
         
     | 
| 
      
 18 
     | 
    
         
            +
                puts "Parent #{options[:parent]}"
         
     | 
| 
      
 19 
     | 
    
         
            +
                puts "Checksum #{options[:checksum]}"
         
     | 
| 
      
 20 
     | 
    
         
            +
                name = options[:name]
         
     | 
| 
      
 21 
     | 
    
         
            +
                summary = options[:summary]
         
     | 
| 
      
 22 
     | 
    
         
            +
                archLabel = "channel-#{options[:arch]}"   
         
     | 
| 
      
 23 
     | 
    
         
            +
                parent = options[:parent]
         
     | 
| 
      
 24 
     | 
    
         
            +
                checksum = options[:checksum]
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                begin
         
     | 
| 
      
 27 
     | 
    
         
            +
                  key = server.call("auth.login", "admin", "admin")
         
     | 
| 
      
 28 
     | 
    
         
            +
                  puts "Using session key #{key}"
         
     | 
| 
      
 29 
     | 
    
         
            +
                  out = server.call("channel.software.create", 
         
     | 
| 
      
 30 
     | 
    
         
            +
                        key,
         
     | 
| 
      
 31 
     | 
    
         
            +
                        channel_label,
         
     | 
| 
      
 32 
     | 
    
         
            +
                        name,
         
     | 
| 
      
 33 
     | 
    
         
            +
                        summary,
         
     | 
| 
      
 34 
     | 
    
         
            +
                        archLabel,
         
     | 
| 
      
 35 
     | 
    
         
            +
                        parent,
         
     | 
| 
      
 36 
     | 
    
         
            +
                        checksum
         
     | 
| 
      
 37 
     | 
    
         
            +
                        )
         
     | 
| 
      
 38 
     | 
    
         
            +
                  puts out
         
     | 
| 
      
 39 
     | 
    
         
            +
                rescue XMLRPC::FaultException => e
         
     | 
| 
      
 40 
     | 
    
         
            +
                  puts "Error:"
         
     | 
| 
      
 41 
     | 
    
         
            +
                  puts e.faultCode
         
     | 
| 
      
 42 
     | 
    
         
            +
                  puts e.faultString
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/system.rb
    ADDED
    
    | 
         @@ -0,0 +1,120 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'sif'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'rexml/document'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'rexml/xpath'
         
     | 
| 
      
 4 
     | 
    
         
            +
            require "xmlrpc/client"
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            class System < Sif::Loader
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
              config_file '.buzz'
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              desc "Delete self", "Delete this system from Spacewalk"
         
     | 
| 
      
 11 
     | 
    
         
            +
              def deleteself
         
     | 
| 
      
 12 
     | 
    
         
            +
                server = XMLRPC::Client.new(@spacewalk_server, "/rpc/api", 80)
         
     | 
| 
      
 13 
     | 
    
         
            +
                systemid_file_path = '/etc/sysconfig/rhn/systemid'
         
     | 
| 
      
 14 
     | 
    
         
            +
                systemid_file_path = './systemid.xml'
         
     | 
| 
      
 15 
     | 
    
         
            +
                if (!File.exists?(systemid_file_path))
         
     | 
| 
      
 16 
     | 
    
         
            +
                  puts "Cannot find system ID file - exiting"
         
     | 
| 
      
 17 
     | 
    
         
            +
                  exit -1
         
     | 
| 
      
 18 
     | 
    
         
            +
                end
         
     | 
| 
      
 19 
     | 
    
         
            +
                systemid_file = File.read systemid_file_path 
         
     | 
| 
      
 20 
     | 
    
         
            +
                doc = REXML::Document.new(systemid_file)
         
     | 
| 
      
 21 
     | 
    
         
            +
                systemid = REXML::XPath.first( doc, 'string(//member[* = "system_id"]/value/string)' ).split('-')[1] 
         
     | 
| 
      
 22 
     | 
    
         
            +
                puts "Delete this system from spacewalk - ID #{systemid}"
         
     | 
| 
      
 23 
     | 
    
         
            +
                delete_systems [systemid.to_i]
         
     | 
| 
      
 24 
     | 
    
         
            +
               
         
     | 
| 
      
 25 
     | 
    
         
            +
              end
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              desc "Delete specific machine", "Delete the specified system from Spacewalk"
         
     | 
| 
      
 28 
     | 
    
         
            +
              def delete(systemid)
         
     | 
| 
      
 29 
     | 
    
         
            +
                
         
     | 
| 
      
 30 
     | 
    
         
            +
                puts "Delete this system from spacewalk - ID #{systemid}"
         
     | 
| 
      
 31 
     | 
    
         
            +
                delete_systems [systemid.to_i]
         
     | 
| 
      
 32 
     | 
    
         
            +
               
         
     | 
| 
      
 33 
     | 
    
         
            +
              end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
              desc "List systems", "List all subscribed systems"
         
     | 
| 
      
 36 
     | 
    
         
            +
              def list
         
     | 
| 
      
 37 
     | 
    
         
            +
                 server = XMLRPC::Client.new(@spacewalk_server, "/rpc/api", 80)
         
     | 
| 
      
 38 
     | 
    
         
            +
                  begin
         
     | 
| 
      
 39 
     | 
    
         
            +
                    key = server.call("auth.login", @username, @password)
         
     | 
| 
      
 40 
     | 
    
         
            +
                    puts "Using session key #{key}"
         
     | 
| 
      
 41 
     | 
    
         
            +
                    response = server.call("system.listSystems", 
         
     | 
| 
      
 42 
     | 
    
         
            +
                          key
         
     | 
| 
      
 43 
     | 
    
         
            +
                        )
         
     | 
| 
      
 44 
     | 
    
         
            +
                    systems = []
         
     | 
| 
      
 45 
     | 
    
         
            +
                    response.each do |system|
         
     | 
| 
      
 46 
     | 
    
         
            +
                      id = system['id']
         
     | 
| 
      
 47 
     | 
    
         
            +
                      name = system['name']
         
     | 
| 
      
 48 
     | 
    
         
            +
                      last_checkin = system['last_checkin'].to_time
         
     | 
| 
      
 49 
     | 
    
         
            +
                      puts "System: ID: #{id} name: #{name} last checked in: #{last_checkin}"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    end
         
     | 
| 
      
 51 
     | 
    
         
            +
                  rescue XMLRPC::FaultException => e
         
     | 
| 
      
 52 
     | 
    
         
            +
                    puts "Error:"
         
     | 
| 
      
 53 
     | 
    
         
            +
                    puts e.faultCode
         
     | 
| 
      
 54 
     | 
    
         
            +
                    puts e.faultString
         
     | 
| 
      
 55 
     | 
    
         
            +
                  end 
         
     | 
| 
      
 56 
     | 
    
         
            +
                end
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
                desc "List by regex", "list"
         
     | 
| 
      
 59 
     | 
    
         
            +
                def list_by_regex(regex)
         
     | 
| 
      
 60 
     | 
    
         
            +
                  
         
     | 
| 
      
 61 
     | 
    
         
            +
                    systems = find_systems_by_regex(regex)
         
     | 
| 
      
 62 
     | 
    
         
            +
                    systems.each do |system|
         
     | 
| 
      
 63 
     | 
    
         
            +
                      id = system['id']
         
     | 
| 
      
 64 
     | 
    
         
            +
                      name = system['name']
         
     | 
| 
      
 65 
     | 
    
         
            +
                      last_checkin = system['last_checkin'].to_time
         
     | 
| 
      
 66 
     | 
    
         
            +
                      puts "System: ID: #{id} name: #{name} last checked in: #{last_checkin}"
         
     | 
| 
      
 67 
     | 
    
         
            +
                    end
         
     | 
| 
      
 68 
     | 
    
         
            +
                  
         
     | 
| 
      
 69 
     | 
    
         
            +
                end
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                desc "Delete by regex", "Delete all systems whose name matches the regex supplied"
         
     | 
| 
      
 72 
     | 
    
         
            +
                def delete_by_regex(regex)
         
     | 
| 
      
 73 
     | 
    
         
            +
                  systems_to_delete = find_systems_by_regex regex
         
     | 
| 
      
 74 
     | 
    
         
            +
                  system_ids = systems_to_delete.collect { |system| system['id']}
         
     | 
| 
      
 75 
     | 
    
         
            +
                  system_ids.each { |it| puts "Deleting #{it}"}
         
     | 
| 
      
 76 
     | 
    
         
            +
                  delete_systems system_ids
         
     | 
| 
      
 77 
     | 
    
         
            +
                end
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
              no_tasks do 
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                def delete_systems(system_ids) 
         
     | 
| 
      
 82 
     | 
    
         
            +
                  server = XMLRPC::Client.new(@spacewalk_server, "/rpc/api", 80)
         
     | 
| 
      
 83 
     | 
    
         
            +
                  
         
     | 
| 
      
 84 
     | 
    
         
            +
                  begin
         
     | 
| 
      
 85 
     | 
    
         
            +
                    key = server.call("auth.login", @username, @password)
         
     | 
| 
      
 86 
     | 
    
         
            +
                    puts "Using session key #{key}"
         
     | 
| 
      
 87 
     | 
    
         
            +
                    out = server.call("system.deleteSystems", 
         
     | 
| 
      
 88 
     | 
    
         
            +
                          key,
         
     | 
| 
      
 89 
     | 
    
         
            +
                          system_ids
         
     | 
| 
      
 90 
     | 
    
         
            +
                        )
         
     | 
| 
      
 91 
     | 
    
         
            +
                    puts out
         
     | 
| 
      
 92 
     | 
    
         
            +
                  rescue XMLRPC::FaultException => e
         
     | 
| 
      
 93 
     | 
    
         
            +
                    puts "Error:"
         
     | 
| 
      
 94 
     | 
    
         
            +
                    puts e.faultCode
         
     | 
| 
      
 95 
     | 
    
         
            +
                    puts e.faultString
         
     | 
| 
      
 96 
     | 
    
         
            +
                  end 
         
     | 
| 
      
 97 
     | 
    
         
            +
                end
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                def find_systems_by_regex(regex)
         
     | 
| 
      
 100 
     | 
    
         
            +
                  
         
     | 
| 
      
 101 
     | 
    
         
            +
                  server = XMLRPC::Client.new(@spacewalk_server, "/rpc/api", 80)
         
     | 
| 
      
 102 
     | 
    
         
            +
                  systems = []
         
     | 
| 
      
 103 
     | 
    
         
            +
                    begin
         
     | 
| 
      
 104 
     | 
    
         
            +
                      key = server.call("auth.login", @username, @password)
         
     | 
| 
      
 105 
     | 
    
         
            +
                      puts "Using session key #{key}"
         
     | 
| 
      
 106 
     | 
    
         
            +
                      systems = server.call("system.searchByName", 
         
     | 
| 
      
 107 
     | 
    
         
            +
                          key,
         
     | 
| 
      
 108 
     | 
    
         
            +
                          regex
         
     | 
| 
      
 109 
     | 
    
         
            +
                       )
         
     | 
| 
      
 110 
     | 
    
         
            +
                    rescue XMLRPC::FaultException => e
         
     | 
| 
      
 111 
     | 
    
         
            +
                      puts "Error:"
         
     | 
| 
      
 112 
     | 
    
         
            +
                      puts e.faultCode
         
     | 
| 
      
 113 
     | 
    
         
            +
                      puts e.faultString 
         
     | 
| 
      
 114 
     | 
    
         
            +
                    end
         
     | 
| 
      
 115 
     | 
    
         
            +
                   systems
         
     | 
| 
      
 116 
     | 
    
         
            +
                end
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
              end
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
            end
         
     | 
    
        data/test/helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'rubygems'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'bundler'
         
     | 
| 
      
 3 
     | 
    
         
            +
            begin
         
     | 
| 
      
 4 
     | 
    
         
            +
              Bundler.setup(:default, :development)
         
     | 
| 
      
 5 
     | 
    
         
            +
            rescue Bundler::BundlerError => e
         
     | 
| 
      
 6 
     | 
    
         
            +
              $stderr.puts e.message
         
     | 
| 
      
 7 
     | 
    
         
            +
              $stderr.puts "Run `bundle install` to install missing gems"
         
     | 
| 
      
 8 
     | 
    
         
            +
              exit e.status_code
         
     | 
| 
      
 9 
     | 
    
         
            +
            end
         
     | 
| 
      
 10 
     | 
    
         
            +
            require 'test/unit'
         
     | 
| 
      
 11 
     | 
    
         
            +
            require 'shoulda'
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
         
     | 
| 
      
 14 
     | 
    
         
            +
            $LOAD_PATH.unshift(File.dirname(__FILE__))
         
     | 
| 
      
 15 
     | 
    
         
            +
            require 'buzz'
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            class Test::Unit::TestCase
         
     | 
| 
      
 18 
     | 
    
         
            +
            end
         
     | 
    
        data/test/test_buzz.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,193 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: buzz
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.1
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 8 
     | 
    
         
            +
            - George McIntosh
         
     | 
| 
      
 9 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 10 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 11 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2013-04-19 00:00:00.000000000 Z
         
     | 
| 
      
 13 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 14 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 15 
     | 
    
         
            +
              name: webmock
         
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 17 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 18 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 19 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 21 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 22 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 23 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 25 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 26 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 27 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 29 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 30 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 31 
     | 
    
         
            +
              name: vcr
         
     | 
| 
      
 32 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 33 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 34 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 35 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 37 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 38 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 39 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 40 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 41 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 42 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 43 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 45 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 46 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 47 
     | 
    
         
            +
              name: sif
         
     | 
| 
      
 48 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 49 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 50 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 51 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 53 
     | 
    
         
            +
                    version: 0.0.2
         
     | 
| 
      
 54 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 55 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 56 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 57 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: 0.0.2
         
     | 
| 
      
 62 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 63 
     | 
    
         
            +
              name: thor
         
     | 
| 
      
 64 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 66 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 67 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 68 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 69 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 70 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 71 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 72 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 73 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 74 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 75 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 76 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 77 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 78 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 79 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 80 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 81 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 82 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 83 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 84 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 85 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 86 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 87 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 88 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 89 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 90 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 91 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 93 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 94 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 95 
     | 
    
         
            +
              name: extensions
         
     | 
| 
      
 96 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 97 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 98 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 99 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 100 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 101 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 102 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 103 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 104 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 105 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 106 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 107 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 108 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 109 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 110 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 111 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 112 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 113 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 114 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 115 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 116 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 117 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 118 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 119 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 120 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 121 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 122 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 123 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 125 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 126 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 127 
     | 
    
         
            +
              name: jeweler
         
     | 
| 
      
 128 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 129 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 130 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 131 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 132 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 133 
     | 
    
         
            +
                    version: 1.8.4
         
     | 
| 
      
 134 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 135 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 136 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 137 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 138 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 139 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 141 
     | 
    
         
            +
                    version: 1.8.4
         
     | 
| 
      
 142 
     | 
    
         
            +
            description: A growing suite of tools for doing handy admin tasks etc with Spacewalk
         
     | 
| 
      
 143 
     | 
    
         
            +
            email: george@georgemcintosh.com
         
     | 
| 
      
 144 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 145 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 146 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
      
 147 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 148 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 149 
     | 
    
         
            +
            files:
         
     | 
| 
      
 150 
     | 
    
         
            +
            - .document
         
     | 
| 
      
 151 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 152 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
      
 153 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 154 
     | 
    
         
            +
            - README.rdoc
         
     | 
| 
      
 155 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 156 
     | 
    
         
            +
            - VERSION
         
     | 
| 
      
 157 
     | 
    
         
            +
            - buzz
         
     | 
| 
      
 158 
     | 
    
         
            +
            - buzz.gemspec
         
     | 
| 
      
 159 
     | 
    
         
            +
            - conf/.buzz
         
     | 
| 
      
 160 
     | 
    
         
            +
            - lib/buzz.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - lib/channel.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - lib/system.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - test/helper.rb
         
     | 
| 
      
 164 
     | 
    
         
            +
            - test/test_buzz.rb
         
     | 
| 
      
 165 
     | 
    
         
            +
            homepage: http://github.com/georgecodes/buzz
         
     | 
| 
      
 166 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 167 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 168 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 169 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 170 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 171 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 172 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 173 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 174 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 175 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 176 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 177 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 178 
     | 
    
         
            +
                  segments:
         
     | 
| 
      
 179 
     | 
    
         
            +
                  - 0
         
     | 
| 
      
 180 
     | 
    
         
            +
                  hash: -586260781565685045
         
     | 
| 
      
 181 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 182 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 183 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 184 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 185 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 186 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 187 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 188 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 189 
     | 
    
         
            +
            rubygems_version: 1.8.24
         
     | 
| 
      
 190 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 191 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 192 
     | 
    
         
            +
            summary: A command-line interface for Spacewalk/RHN Satellites
         
     | 
| 
      
 193 
     | 
    
         
            +
            test_files: []
         
     |