Project

atdis

0.0
Low commit activity in last 3 years
No release in over a year
A ruby interface to the application tracking data interchange specification (ATDIS) API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

Atdis

Build Status Coverage Status Code Climate Gem Version

A ruby interface to the application tracking data interchange specification (ATDIS) API

This has been developed against ATDIS version 1.0.2.

Source code is available on GitHub at https://github.com/openaustralia/atdis

Installation

Add this line to your application's Gemfile:

gem 'atdis'

And then execute:

$ bundle

Or install it yourself as:

$ gem install atdis

Usage

Basic usage

require 'atdis'
f = ATDIS::Feed.new("http://www.planningalerts.org.au/atdis/feed/1/atdis/1.0")

# Get the first application in the first page of results for all the applications
page = f.applications
app = page.response.first

puts "#{app.dat_id}: #{app.description} at #{app.location.address}"

DA2013-0381: New pool plus deck at 123 Fourfivesix Street Neutral Bay NSW 2089

Paging

page.next_page

and

page.previous_page

Validation

page.valid?

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