Sha256: 0c14386d2d8a828b023b29bc1a1260a0982b40148ceb1dad072b866eb4972a9d

Contents?: true

Size: 1.13 KB

Versions: 2

Compression:

Stored size: 1.13 KB

Contents

# Apple Models [![Build Status](https://travis-ci.org/tboyko/apple_models.png?branch=master)](http://travis-ci.org/tboyko/apple_models) [![Code Climate](https://codeclimate.com/github/tboyko/apple_models.png)](https://codeclimate.com/github/tboyko/apple_models)

Retrieve the model and version of an Apple product based on the model id. __Note:__ the model id is also referred to as the product code and the product id.

__Special Note:__ At this time, only iOS product lookups are available. Feel free to fork and expand the catalog!

## Installation

Add this line to your application's Gemfile:

    gem 'apple_models'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install apple_models

## Usage

```ruby
device = AppleModels.find('iPad2,7') 

device.identifier    # "iPad2,7"
device.model         # "iPad"
device.version       # "Mini (Global)"
device.friendly_name # "iPad Mini (Global)"
```

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
apple_models-2.0.1 README.md
apple_models-2.0.0 README.md