├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── device_api-ios.gemspec ├── lib └── device_api │ ├── ios.rb │ └── ios │ ├── device.rb │ ├── idevice.rb │ ├── idevicedebug.rb │ ├── idevicediagnostics.rb │ ├── ideviceinstaller.rb │ ├── idevicename.rb │ ├── ideviceprovision.rb │ ├── idevicescreenshot.rb │ └── ipaddress.rb └── spec ├── README.md └── lib └── device_api ├── ios ├── device_spec.rb ├── idevice_spec.rb ├── ideviceinstaller_spec.rb └── ipaddress_spec.rb └── ios_spec.rb /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | 5 | script: bundle exec rspec 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/README.md -------------------------------------------------------------------------------- /device_api-ios.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/device_api-ios.gemspec -------------------------------------------------------------------------------- /lib/device_api/ios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios.rb -------------------------------------------------------------------------------- /lib/device_api/ios/device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/device.rb -------------------------------------------------------------------------------- /lib/device_api/ios/idevice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/idevice.rb -------------------------------------------------------------------------------- /lib/device_api/ios/idevicedebug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/idevicedebug.rb -------------------------------------------------------------------------------- /lib/device_api/ios/idevicediagnostics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/idevicediagnostics.rb -------------------------------------------------------------------------------- /lib/device_api/ios/ideviceinstaller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/ideviceinstaller.rb -------------------------------------------------------------------------------- /lib/device_api/ios/idevicename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/idevicename.rb -------------------------------------------------------------------------------- /lib/device_api/ios/ideviceprovision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/ideviceprovision.rb -------------------------------------------------------------------------------- /lib/device_api/ios/idevicescreenshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/idevicescreenshot.rb -------------------------------------------------------------------------------- /lib/device_api/ios/ipaddress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/lib/device_api/ios/ipaddress.rb -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/README.md -------------------------------------------------------------------------------- /spec/lib/device_api/ios/device_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/lib/device_api/ios/device_spec.rb -------------------------------------------------------------------------------- /spec/lib/device_api/ios/idevice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/lib/device_api/ios/idevice_spec.rb -------------------------------------------------------------------------------- /spec/lib/device_api/ios/ideviceinstaller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/lib/device_api/ios/ideviceinstaller_spec.rb -------------------------------------------------------------------------------- /spec/lib/device_api/ios/ipaddress_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/lib/device_api/ios/ipaddress_spec.rb -------------------------------------------------------------------------------- /spec/lib/device_api/ios_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbc/device_api-ios/HEAD/spec/lib/device_api/ios_spec.rb --------------------------------------------------------------------------------