benoitc / couchbeam

Apache CouchDB client in Erlang
Other
242 stars 113 forks source link

couchbeam:start/0 is gone, docs now incorrect, how to start? #135

Closed nlfiedler closed 8 years ago

nlfiedler commented 8 years ago

Now that the couchbeam module lost the start/0 and stop/0 (and version/0) functions, how are we to start the couchbeam application? Sure, I could copy the code from before the change in November, but that seems less than ideal. Not to mention the docs and README examples are now wrong. Seems it was better to have these functions, if for no other reason than convenience.

benoitc commented 8 years ago

using latest erlang (since 17) : application:ensure_all_started(couchbeam) will. Or let the release do it. We can of course add this functions back if you want to.

nlfiedler commented 8 years ago

Indeed you are correct, I cannot see why I didn't realize the answer sooner. Thanks