0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Library for the Ruckus Wireless SPoT API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 3.2

Runtime

 Project Readme

Ruckus Wireless SPoT API client

API Version support

This gem uses Ruby > 2.0, ActiveResource > 4.0 and is for the v1 API only.

Introduction

http://www.ruckuswireless.com/products/smart-wireless-services/spot

Installation

  1. Command line: gem install ruckus-spot
  2. Gemfile: gem 'ruckus-spot'

Configuration

require 'ruckus-spot'

RuckusSpot.configure do |r|
  r.api_key = 'my_api_key'
  r.site    = 'https://my.api.end.point.example.com'
end

Usage

Venue

  1. List

RuckusSpot::Venue.all

  1. Find by id

venue = RuckusSpot::Venue.find('venue_id')

Radio map

  1. List
  2. venue.radio_maps
  3. RuckusSpot::RadioMap.all(params:{venue_id: 'venue_id'})
  4. Find by name
  5. venue.radio_maps.find('map_name')
  6. RuckusSpot::RadioMap.find('map_name', params:{venue_id: 'venue_id'})

Location

  • List of last seen
    1. venue.locations
    2. RuckusSpot::Location.all(params:{venue_id: 'venue_id'})