# HorizonClient Client to use with Horizon REST xml API. ## Usage ```ruby client = HorizonClient.new # incoming xml: # # # # Jack # Jill # # # # # # # # # returns and expects HorizonClient::Resource object resource = client.get('path') return_resource = client.post('path', resource) # get entity: entity = resource.entity # get and set object values entity['name'] # => 'Jack' entity['name'] = 'Jane' entity['foo/bar'] # => 'Jill' entity['foo/baz'] = 'Joe' # => JillJoe # get or set collection with specified name inside entity col = entity.get_collection('col') row = col.build # => # # result: # # ... # # # # # get first level collection. collection = resource.collection entity_array = collection.rows # => [ # ] entity_array.each do |entity| entity['foo'] = 'test' end ``` ### Necessary environment variables * **HORIZON_REST_URL** e.x. http://user:pass@ip:port/rest. Note the "/rest" part ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.