├── .foodcritic ├── .gitignore ├── .kitchen.yml ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── attributes ├── default.rb └── maven_rescue.rb ├── files └── default │ ├── android-accept-licenses │ └── android-wait-for-emulator ├── metadata.rb ├── recipes ├── default.rb └── maven_rescue.rb └── templates └── default ├── android-sdk.sh.erb └── android-update-sdk.erb /.foodcritic: -------------------------------------------------------------------------------- 1 | ~FC053 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/Vagrantfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/maven_rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/attributes/maven_rescue.rb -------------------------------------------------------------------------------- /files/default/android-accept-licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/files/default/android-accept-licenses -------------------------------------------------------------------------------- /files/default/android-wait-for-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/files/default/android-wait-for-emulator -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/maven_rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/recipes/maven_rescue.rb -------------------------------------------------------------------------------- /templates/default/android-sdk.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/templates/default/android-sdk.sh.erb -------------------------------------------------------------------------------- /templates/default/android-update-sdk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildegoma/chef-android-sdk/HEAD/templates/default/android-update-sdk.erb --------------------------------------------------------------------------------