Sha256: 7b9c6ea36f00460f5e453e3106494ab3d07673ecd474b03ef50ea22587255e69
Contents?: true
Size: 1.85 KB
Versions: 3
Compression:
Stored size: 1.85 KB
Contents
# -*- encoding: utf-8 -*- require File.join(File.dirname(__FILE__), "lib/brightbox-cli/version") Gem::Specification.new do |s| s.name = "brightbox-cli" s.version = Brightbox::VERSION s.platform = Gem::Platform::RUBY s.authors = ["John Leach"] s.email = ["john@brightbox.co.uk"] s.homepage = "http://docs.brightbox.com/cli" s.summary = %q{The Brightbox cloud management system} s.description = %q{Scripts to interact with the Brightbox cloud API} s.license = "MIT" s.rubyforge_project = "brightbox-cli" s.files = `git ls-files`.split("\n") + `find lib/brightbox-cli/vendor`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_dependency "gli", "~> 2.8" s.add_dependency "fog", "~> 1.15.0" s.add_dependency "nokogiri", "~> 1.5.0" # 1.5.x last versions with 1.8.7 support s.add_dependency "excon" s.add_dependency "json" s.add_dependency('hirb','~> 0.6') s.add_dependency('highline', '~> 1.6') s.add_development_dependency('rake') s.add_development_dependency('vcr', '~> 2.5') s.add_development_dependency('rspec', '~> 2.14') s.add_development_dependency('mocha') s.post_install_message = <<-EOS The CLI command is now `brightbox` with subcommands for the resources. Such as `brightbox config` or `brightbox servers`. `brightbox --help` lists all the commands. The old hypenated versions of the commands (e.g. `brightbox-servers`) are deprecated and may be removed in the future. If you have been using the old "brightbox" gem please ensure you have the latest version to be able to use the `brightbox-capify` command. To enable Bash auto-completion you can do the following: complete -C _brightbox-bash-completer -o filenames brightbox EOS end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
brightbox-cli-1.0.0 | brightbox-cli.gemspec |
brightbox-cli-1.0.0.rc2 | brightbox-cli.gemspec |
brightbox-cli-1.0.0.rc1 | brightbox-cli.gemspec |