Skip to content

maxstoller/gumroad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gumroad

Gumroad is a Ruby wrapper for the Gumroad API.

Authentication

client = Gumroad.new(username, password)

If you feel the need to, you can revoke the session.

client.destroy

Links

links = client.links.all
link = client.links.find(id)

You now have a Gumroad::Link object. You can call methods such as link.name and link.url.

You can then modify the link's attributes and call save to update it.

link.price = '100'
link.save

It's pretty easy to create a link.

client.links.create(name: '@maxstoller', url: 'http://twitter.com/maxstoller', description: 'A link to @maxstoller.', price: '100')

Contributing

Pull requests are welcomed.

About

A Ruby wrapper for the Gumroad API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages