├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── circle.yml ├── fleet-api.gemspec ├── lib ├── fleet.rb └── fleet │ ├── client.rb │ ├── client │ ├── machines.rb │ ├── state.rb │ └── unit.rb │ ├── configuration.rb │ ├── connection.rb │ ├── error.rb │ ├── request.rb │ ├── service_definition.rb │ └── version.rb └── spec ├── fleet ├── client │ ├── machines_spec.rb │ ├── state_spec.rb │ └── unit_spec.rb ├── client_spec.rb ├── configuration_spec.rb ├── connection_spec.rb ├── error_spec.rb ├── request_spec.rb └── service_definition_spec.rb ├── fleet_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | pkg/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/Rakefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/circle.yml -------------------------------------------------------------------------------- /fleet-api.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/fleet-api.gemspec -------------------------------------------------------------------------------- /lib/fleet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet.rb -------------------------------------------------------------------------------- /lib/fleet/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/client.rb -------------------------------------------------------------------------------- /lib/fleet/client/machines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/client/machines.rb -------------------------------------------------------------------------------- /lib/fleet/client/state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/client/state.rb -------------------------------------------------------------------------------- /lib/fleet/client/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/client/unit.rb -------------------------------------------------------------------------------- /lib/fleet/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/configuration.rb -------------------------------------------------------------------------------- /lib/fleet/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/connection.rb -------------------------------------------------------------------------------- /lib/fleet/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/error.rb -------------------------------------------------------------------------------- /lib/fleet/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/request.rb -------------------------------------------------------------------------------- /lib/fleet/service_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/service_definition.rb -------------------------------------------------------------------------------- /lib/fleet/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/lib/fleet/version.rb -------------------------------------------------------------------------------- /spec/fleet/client/machines_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/client/machines_spec.rb -------------------------------------------------------------------------------- /spec/fleet/client/state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/client/state_spec.rb -------------------------------------------------------------------------------- /spec/fleet/client/unit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/client/unit_spec.rb -------------------------------------------------------------------------------- /spec/fleet/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/client_spec.rb -------------------------------------------------------------------------------- /spec/fleet/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/configuration_spec.rb -------------------------------------------------------------------------------- /spec/fleet/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/connection_spec.rb -------------------------------------------------------------------------------- /spec/fleet/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/error_spec.rb -------------------------------------------------------------------------------- /spec/fleet/request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/request_spec.rb -------------------------------------------------------------------------------- /spec/fleet/service_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet/service_definition_spec.rb -------------------------------------------------------------------------------- /spec/fleet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/fleet_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/fleet-api/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------