This is a little Gem used to translate Apple iOS device types (like "iPhone6,1") to proper device names that you can use.
Add this line to your application's Gemfile:
gem 'ios-devices'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ios-devices
Just use the Ios::Devices.search
method with the Apple string and you should get a
Ios::Devices::Model
object. This object has an extra
attribute for things like internet
connection, revision model, etc.
device = Ios::Devices.search('iPhone6,1')
=> #<Ios::Devices::Model:0x007fa55ba1a948 @extra=nil, @name="iPhone 5s", @device_type="iPhone6,1">
device.name
=> "iPhone 5s"
device = Ios::Devices.search('iPad2,2')
=> #<Ios::Devices::Model:0x007fa55b957308 @extra="GSM", @name="iPad 2", @device_type="iPad2,2">
device.name
=> "iPad 2"
device.extra
=> "GSM"
- Fork it (https://github.com/rikas/iosdevices/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request