Sha256: ffd87465c2e0ef34f008c3e00bcff95108c0f713d68af6bab6b8655546744220
Contents?: true
Size: 1.08 KB
Versions: 13
Compression:
Stored size: 1.08 KB
Contents
require "thor" require "aws_pocketknife" module AwsPocketknife module Cli class Main < Thor desc "ec2 SUBCOMMAND ...ARGS", "ec2 command lines" subcommand "ec2", AwsPocketknife::Cli::Ec2 desc "ami SUBCOMMAND ...ARGS", "ami command lines" subcommand "ami", AwsPocketknife::Cli::Ami desc "eb SUBCOMMAND ...ARGS", "elastic beanstalk command lines" subcommand "eb", AwsPocketknife::Cli::Eb desc "route53 SUBCOMMAND ...ARGS", "route53 command lines" subcommand "route53", AwsPocketknife::Cli::Route53 desc "iam SUBCOMMAND ...ARGS", "iam command lines" subcommand "iam", AwsPocketknife::Cli::Iam desc "rds SUBCOMMAND ...ARGS", "rds command lines" subcommand "rds", AwsPocketknife::Cli::Rds desc "asg SUBCOMMAND ...ARGS", "asg command lines" subcommand "asg", AwsPocketknife::Cli::Asg desc "elb SUBCOMMAND ...ARGS", "elb command lines" subcommand "elb", AwsPocketknife::Cli::Elb desc "ecs SUBCOMMAND ...ARGS", "ecs command lines" subcommand "ecs", AwsPocketknife::Cli::Ecs end end end
Version data entries
13 entries across 13 versions & 1 rubygems