├── .gitignore ├── .rspec ├── .rvmrc ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── nakal.rb └── nakal │ ├── android │ ├── adb.rb │ └── screen.rb │ ├── base_screen.rb │ ├── cucumber.rb │ ├── dsl.rb │ ├── ios │ └── screen.rb │ └── version.rb ├── nakal.gemspec └── spec ├── nakal └── android │ └── screen_spec.rb ├── resources ├── .DS_Store ├── fuzz.png ├── fuzz_current.png ├── home_screen.png └── home_screen_current.png └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm_install_on_use_flag=1 2 | rvm --create use ruby-2.1.1@nakal 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/nakal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal.rb -------------------------------------------------------------------------------- /lib/nakal/android/adb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/android/adb.rb -------------------------------------------------------------------------------- /lib/nakal/android/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/android/screen.rb -------------------------------------------------------------------------------- /lib/nakal/base_screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/base_screen.rb -------------------------------------------------------------------------------- /lib/nakal/cucumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/cucumber.rb -------------------------------------------------------------------------------- /lib/nakal/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/dsl.rb -------------------------------------------------------------------------------- /lib/nakal/ios/screen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/lib/nakal/ios/screen.rb -------------------------------------------------------------------------------- /lib/nakal/version.rb: -------------------------------------------------------------------------------- 1 | module Nakal 2 | VERSION = "1.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /nakal.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/nakal.gemspec -------------------------------------------------------------------------------- /spec/nakal/android/screen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/nakal/android/screen_spec.rb -------------------------------------------------------------------------------- /spec/resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/resources/.DS_Store -------------------------------------------------------------------------------- /spec/resources/fuzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/resources/fuzz.png -------------------------------------------------------------------------------- /spec/resources/fuzz_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/resources/fuzz_current.png -------------------------------------------------------------------------------- /spec/resources/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/resources/home_screen.png -------------------------------------------------------------------------------- /spec/resources/home_screen_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/resources/home_screen_current.png -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajdeepv/nakal/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------