├── .gitignore ├── .rubocop.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── haproxyctl ├── haproxyctl ├── haproxyctl.gemspec ├── install-haproxy └── haproxy_src_install.sh ├── lib ├── haproxyctl.rb └── haproxyctl │ ├── environment.rb │ └── version.rb ├── rhapr ├── .gitignore ├── .rspec ├── Gemfile ├── Rakefile ├── lib │ ├── rhapr.rb │ └── rhapr │ │ ├── environment.rb │ │ ├── interface.rb │ │ └── version.rb ├── rhapr.gemspec └── spec │ ├── config_fixtures │ ├── basic_haproxy.cfg │ ├── crappy_haproxy.cfg │ └── pid_test_haproxy.cfg │ ├── quality_spec.rb │ ├── rhapr │ ├── environment_spec.rb │ └── interface_spec.rb │ ├── spec_helper.rb │ └── support │ ├── config_fixtures.rb │ └── custom_matchers.rb └── rubocop-todo.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: rubocop-todo.yml 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | require "bundler/gem_tasks" 3 | -------------------------------------------------------------------------------- /bin/haproxyctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/bin/haproxyctl -------------------------------------------------------------------------------- /haproxyctl: -------------------------------------------------------------------------------- 1 | bin/haproxyctl -------------------------------------------------------------------------------- /haproxyctl.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/haproxyctl.gemspec -------------------------------------------------------------------------------- /install-haproxy/haproxy_src_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/install-haproxy/haproxy_src_install.sh -------------------------------------------------------------------------------- /lib/haproxyctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/lib/haproxyctl.rb -------------------------------------------------------------------------------- /lib/haproxyctl/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/lib/haproxyctl/environment.rb -------------------------------------------------------------------------------- /lib/haproxyctl/version.rb: -------------------------------------------------------------------------------- 1 | module HAProxyCTL 2 | VERSION = '1.4.3' 3 | end 4 | -------------------------------------------------------------------------------- /rhapr/.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /rhapr/.rspec: -------------------------------------------------------------------------------- 1 | -cfs 2 | -------------------------------------------------------------------------------- /rhapr/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/Gemfile -------------------------------------------------------------------------------- /rhapr/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/Rakefile -------------------------------------------------------------------------------- /rhapr/lib/rhapr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/lib/rhapr.rb -------------------------------------------------------------------------------- /rhapr/lib/rhapr/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/lib/rhapr/environment.rb -------------------------------------------------------------------------------- /rhapr/lib/rhapr/interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/lib/rhapr/interface.rb -------------------------------------------------------------------------------- /rhapr/lib/rhapr/version.rb: -------------------------------------------------------------------------------- 1 | module Rhapr 2 | VERSION = '0.0.1' 3 | end 4 | -------------------------------------------------------------------------------- /rhapr/rhapr.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/rhapr.gemspec -------------------------------------------------------------------------------- /rhapr/spec/config_fixtures/basic_haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/config_fixtures/basic_haproxy.cfg -------------------------------------------------------------------------------- /rhapr/spec/config_fixtures/crappy_haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/config_fixtures/crappy_haproxy.cfg -------------------------------------------------------------------------------- /rhapr/spec/config_fixtures/pid_test_haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/config_fixtures/pid_test_haproxy.cfg -------------------------------------------------------------------------------- /rhapr/spec/quality_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/quality_spec.rb -------------------------------------------------------------------------------- /rhapr/spec/rhapr/environment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/rhapr/environment_spec.rb -------------------------------------------------------------------------------- /rhapr/spec/rhapr/interface_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/rhapr/interface_spec.rb -------------------------------------------------------------------------------- /rhapr/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/spec_helper.rb -------------------------------------------------------------------------------- /rhapr/spec/support/config_fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/support/config_fixtures.rb -------------------------------------------------------------------------------- /rhapr/spec/support/custom_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rhapr/spec/support/custom_matchers.rb -------------------------------------------------------------------------------- /rubocop-todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flores/haproxyctl/HEAD/rubocop-todo.yml --------------------------------------------------------------------------------