I am trying to use the MindBody Gem but when I attempt to run: $ gem install mindbody-api
I see the error:
$ gem install mindbody-api
ERROR: Could not find a valid gem 'mindbody-api' (>= 0) in any repository
I've been able to get it working in my gemfile by including the path of the GitHub page: gem 'mindbody-api', :git => 'git://github.com/wingrunr21/mindbody-api.git'
and I am successful when I run bundle install
but I've noticed that my version is missing a function that is present in the GitHub Repo, specifically:
MindBody::Services::SaleService.checkout_shopping_cart(search_creds)
NoMethodError: undefined method `checkout_shopping_cart' for MindBody::Services::SaleService:Class
despite the function being listed on the GitHub repo SaleService page. Any idea what I should try next?