I've never used rbenv, but now I need to know something about it and Google failed me.
When I'm using rvm and I want to create a private bundle for an application (say myapp), with Ruby 2.3.1, for instance, I just issue the command
rvm use ruby-2.3.1@myapp --ruby-version --create
This will create two files in the application root directory: .ruby-version and .ruby-gemset, as well as create the directory for the gems under /home/username/.rvm/.
What I would like to know is: How may I achieve the same with rbenv?