README.md in gametel-0.1 vs README.md in gametel-0.2

- old
+ new

@@ -20,11 +20,11 @@ ## Usage ### Defining your screen object ````ruby -class LoginScreen +class LoginPage include Gametel end ```` When you include this module methods are added to your class allowing you to declare the items on the screen. @@ -47,9 +47,22 @@ screen.password = 'secret' screen.login end ```` +## Supported Drivers + +### Calabash Android + +Sample `features/support/env.rb` file. + +````ruby +require 'calabash-android/cucumber' +require 'gametel' +require 'gametel/navigation' + +World(Gametel::Navigation) +```` ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)