0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for the LearnSprout API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

Runtime

>= 0.7.6
 Project Readme

LearnSprout Ruby Gem

A Ruby wrapper for the LearnSprout API

Getting Started

$ gem install learnsprout

Some sample usage:

# You can replace this sample API key with your own
apikey = "fcb8534c-e4ee-4e02-8b22-9328db1dac18"
Client.new(apikey)

# Get orgs
orgs = Client.orgs

# Get a page of schools for an org
page = orgs.first.schools
schools = page.items

# Get the next page of items
page = page.next