├── .coveralls.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── ansible_tools.gemspec ├── bin └── ansible-tools ├── lib ├── ansible_tools.rb └── ansible_tools │ └── version.rb └── spec ├── commands_spec.rb ├── lists ├── init_false.yml ├── init_role_false.yml ├── init_role_true.yml ├── init_simple_false.yml ├── init_simple_true.yml └── init_true.yml └── spec_helper.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | repo_token: Dus6yjl3TGYJvy2BWKuDl5CWDbv5LTqQk 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /ansible_tools.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/ansible_tools.gemspec -------------------------------------------------------------------------------- /bin/ansible-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/bin/ansible-tools -------------------------------------------------------------------------------- /lib/ansible_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/lib/ansible_tools.rb -------------------------------------------------------------------------------- /lib/ansible_tools/version.rb: -------------------------------------------------------------------------------- 1 | module AnsibleTools 2 | VERSION = "0.0.4.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/commands_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/commands_spec.rb -------------------------------------------------------------------------------- /spec/lists/init_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_false.yml -------------------------------------------------------------------------------- /spec/lists/init_role_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_role_false.yml -------------------------------------------------------------------------------- /spec/lists/init_role_true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_role_true.yml -------------------------------------------------------------------------------- /spec/lists/init_simple_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_simple_false.yml -------------------------------------------------------------------------------- /spec/lists/init_simple_true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_simple_true.yml -------------------------------------------------------------------------------- /spec/lists/init_true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/lists/init_true.yml -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volanja/ansible_tools/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------