Vaporizer is a lightweight ruby wrapper of Leafly API.
Add this line to your application's Gemfile:
gem 'vaporizer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install vaporizer
Some things to know before using this gem:
- This is my first gem, please be tolerant
- Leafly API is kind of inconsistent and do not respect rules of JSON API standard, that's not my fault
- Changes in Leafly API could break this gem, if it happens, do not hesitate to open an issue and I will fix it as fast as possible
- Vaporizer returns pure parsed JSON and do not wrap results with objects
- If you need more functionalities, do not hesitate to contact me and we will discuss it
require 'vaporizer'
Vaporizer.configure do |config|
config.app_id = "YOUR_APP_ID"
config.app_key = "YOUR_APP_KEY"
config.timeout = 3 # timeout for the requests, optional, in seconds
end
These examples are a bit minimalist but you can of course pass more arguments to the methods
search
Vaporizer::Strain.search(search: 'dream', page: 0, take: 10)
more complex search
Vaporizer::Strain.search(
filters: {
flavors: ['blueberry'],
conditions: ['anxiety']
},
search: '',
page: 0, take: 10
)
details
Vaporizer::Strain.details('la-confidential') # argument is a slug of strain's name
reviews
Vaporizer::Strain.reviews('la-confidential', { page: 0, take: 3 })
review details
Vaporizer::Strain.review_details('la-confidential', 2836) # 2nd argument is the review id
photos
Vaporizer::Strain.photos('la-confidential', { page: 0, take: 4 })
availabilities
Vaporizer::Strain.availabilities('la-confidential', { lat: 33.5, lon: -117.6 })
search
Vaporizer::Location.search(latitude: 47.606, longitude: -122.333, page: 0, take: 5)
details
Vaporizer::Location.details('papa-ganja')
menu
Vaporizer::Location.menu('papa-ganja')
reviews
Vaporizer::Location.reviews('papa-ganja', { take: 3, skip: 0})
specials
Vaporizer::Location.specials('papa-ganja')
To have the list of all params and filters available of the Leafly API, please refer to the official documentation
- Fork it ( https://github.com/[my-github-username]/vaporizer/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request