Sha256: a12b93fdf3ee36c3313aff3964aff9f9559a346bc458ccd06e284e99ff437938

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

# Deviceatlasapi

This gem allows you to access the DeviceAtlas API using a RubyGem. You need a valid DeviceAtlas API key available here - http://deviceatlas.com

## Installation

Add this line to your application's Gemfile:

    gem 'deviceatlasapi'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install deviceatlasapi

## Usage

TODO: Write usage instructions here

    You need a valid Device Atlas API Key available here

    http://deviceatlas.com

    Set the property 'DEVICE_ATLAS_LICENCE_KEY' in your environment variable

###Controller Based

We have only enabled a controller based flow at the moment - as this is the simplest use case required

Add the following line in the file "app/controllers/application.rb"

    ApplicationController < ActionController::Base
        include DeviceAtlasApi::ControllerHelpers

        def index
            @device_info = get_device_info
        end
    end


## 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

5 entries across 5 versions & 1 rubygems

Version Path
deviceatlasapi-0.0.5 README.md
deviceatlasapi-0.0.4 README.md
deviceatlasapi-0.0.3 README.md
deviceatlasapi-0.0.2 README.md
deviceatlasapi-0.0.1 README.md