keolo / mixpanel_client

Ruby interface to the Mixpanel Data API
MIT License
148 stars 72 forks source link

Make request options optional #46

Closed seodma closed 8 years ago

seodma commented 8 years ago

Method: list This method takes no parameters. But request method require options arg, so i need to pass an empty hash @mixpanel_client.request('funnels/list', {} ) Probably if we have method which takes no parameters, options should be optional @mixpanel_client.request('funnels/list' )

keolo commented 8 years ago

Seems like a fine idea. Thanks.