├── README.md ├── Vagrantfile ├── consul-client-0.1.2.gem ├── consul-client.gemspec ├── example ├── dropwizard_logger.rb ├── http_service.rb ├── orchestrated │ ├── README.md │ ├── coordinator.rb │ └── restarter.rb ├── puts_service.rb └── traffic_shift │ ├── README.md │ ├── client.rb │ ├── server.rb │ └── updater.rb └── lib └── consul ├── client.rb └── client ├── http.rb ├── local_service.rb └── service.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/Vagrantfile -------------------------------------------------------------------------------- /consul-client-0.1.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/consul-client-0.1.2.gem -------------------------------------------------------------------------------- /consul-client.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/consul-client.gemspec -------------------------------------------------------------------------------- /example/dropwizard_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/dropwizard_logger.rb -------------------------------------------------------------------------------- /example/http_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/http_service.rb -------------------------------------------------------------------------------- /example/orchestrated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/orchestrated/README.md -------------------------------------------------------------------------------- /example/orchestrated/coordinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/orchestrated/coordinator.rb -------------------------------------------------------------------------------- /example/orchestrated/restarter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/orchestrated/restarter.rb -------------------------------------------------------------------------------- /example/puts_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/puts_service.rb -------------------------------------------------------------------------------- /example/traffic_shift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/traffic_shift/README.md -------------------------------------------------------------------------------- /example/traffic_shift/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/traffic_shift/client.rb -------------------------------------------------------------------------------- /example/traffic_shift/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/traffic_shift/server.rb -------------------------------------------------------------------------------- /example/traffic_shift/updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/example/traffic_shift/updater.rb -------------------------------------------------------------------------------- /lib/consul/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/lib/consul/client.rb -------------------------------------------------------------------------------- /lib/consul/client/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/lib/consul/client/http.rb -------------------------------------------------------------------------------- /lib/consul/client/local_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/lib/consul/client/local_service.rb -------------------------------------------------------------------------------- /lib/consul/client/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/consul-client/HEAD/lib/consul/client/service.rb --------------------------------------------------------------------------------