Sha256: feb285cbdee29d7c6f348638c182bab11123056bc5af0652e26e0fe230fc1fd7

Contents?: true

Size: 808 Bytes

Versions: 6

Compression:

Stored size: 808 Bytes

Contents

= Landslider

Ruby interface to Landslide's SOAP based API

== Pre-requisites

An account with Landslide that has the API enabled. (www.landslide.com)

== Resources

=== Dependencies

This gem requires the following gems:
	handsoap (1.1.8)

== Install

	landslider requires the handsoap gem

	gem install handsoap landslider

== Usage

	Configuration:

	# constants to be set by rails environment config files
	LS_INSTANCE_NAME = 'jaytest'
	LS_API_USERNAME = 'XXXXXXXX@landslide.com'
	LS_API_PASSWORD = 'XXXXXXXX'
	LS_API_KEY =  Digest::MD5.hexdigest(LS_API_PASSWORD + LS_INSTANCE_NAME)
	LS_API_NAMESPACE = "http://www.landslide.com/webservices/SoapService"
	LS_API_ENDPOINT = {
	  :uri => "https://#{LS_INSTANCE_NAME}.api.landslide.com/webservices/SoapService",
	  :version => 2
	}
	
	
	
	more here later..

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
landslider-0.2.4 README.rdoc
landslider-0.2.3 README.rdoc
landslider-0.2.2 README.rdoc
landslider-0.2.1 README.rdoc
landslider-0.2.0 README.rdoc
landslider-0.1.0 README.rdoc