├── .github └── dependabot.yml ├── .gitignore ├── .rubocop.yml ├── Gemfile ├── LICENSE-2.0.txt ├── Rakefile ├── Thorfile ├── appium_console.gemspec ├── bin └── arc ├── img ├── avd_settings.png └── packages.png ├── lib ├── appium_console.rb ├── appium_console │ └── version.rb ├── cli.rb └── start.rb ├── readme.md ├── release_notes.md └── test └── simple.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/Rakefile -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/Thorfile -------------------------------------------------------------------------------- /appium_console.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/appium_console.gemspec -------------------------------------------------------------------------------- /bin/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/bin/arc -------------------------------------------------------------------------------- /img/avd_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/img/avd_settings.png -------------------------------------------------------------------------------- /img/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/img/packages.png -------------------------------------------------------------------------------- /lib/appium_console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/lib/appium_console.rb -------------------------------------------------------------------------------- /lib/appium_console/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/lib/appium_console/version.rb -------------------------------------------------------------------------------- /lib/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/lib/cli.rb -------------------------------------------------------------------------------- /lib/start.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/lib/start.rb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/readme.md -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/release_notes.md -------------------------------------------------------------------------------- /test/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ruby_console/HEAD/test/simple.rb --------------------------------------------------------------------------------