Project

tiltify

0.0
No release in over a year
A Ruby library for the Tiltify v3 API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.0
 Project Readme

Tiltify

This library is a work in progress

Tiltify is a Ruby library for intereacting with the Tiltify v3 API.

Installation

Add this line to your application's Gemfile:

gem "tiltify"

Usage

Set Client Details

Firstly, you'll need a Tiltify account in order to create an API Access Token. More Info

You can get your Access Token by going here (replacing YOURUSERNAME with your username) and creating an application.

https://dashboard.tiltify.com/YOURUSERNAME/my-account/connected-accounts/applications

If you're not planning on using OAuth, you can set the Redirect URLs as https://example.com. Once created, copy your Access Token and save this:

@client = Tiltify::Client.new(access_token: "")

The client then gives you access to each of the resources.

Resources

The gem maps as closely as we can to the Tiltify API so you can easily convert API examples to gem code.

Responses are created as objects like Tiltify::Campaign. Having types like Tiltify::Campaign is handy for understanding what type of object you're working with. They're built using OpenStruct so you can easily access data in a Ruby-ish way.

Campaigns

# Retrieves a single campaign
@client.campaigns.retrieve(campaign_id: "id")

# Retrieves the most recent donations for a campaign in descending order
@client.campaigns.donations(campaign_id: "id")

# Retrieves all rewards for a campaign
@client.campaigns.rewards(campaign_id: "id")

# Retrieves the polls and their associated options for a campaign
@client.campaigns.polls(campaign_id: "id")

# Retrieves the challenges for a campaign
@client.campaigns.challenges(campaign_id: "id")

# Retrieves the schedule for a campaign
@client.campaigns.schedule(campaign_id: "id")

Causes

# Retrieves a single cause
@client.causes.retrieve(cause_id: "id")

Users

# Returns details for the currently authenticated user
@client.users.me

# Retrieves a specific user by their ID or slug
@client.users.retrieve(user_id: "id")

# Retrieves a list of a users campaigns
@client.users.campaigns(user_id: "id")

# Retrieves a list of a teams a user belongs to
@client.users.teams(user_id: "id")

Teams

# Retrieves a specific team by their ID or slug
@client.teams.retrieve(team_id: "id")

# Retrieves a list of a teams campaigns
@client.teams.campaigns(team_id: "id")

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/deanpcmad/tiltify.

License

The gem is available as open source under the terms of the MIT License.