Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clenver

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clenver

  • 0.1.15
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

clenver

Gem Version Build Status Code Climate Coverage Status

clenver (Command Line home ENVironment mangER) is a Ruby gem that bootstrap and manage your shell environment.

Introduction

clenver aims to shorten time of configuring your brand new Linux account to fully featured development envionment of your choice by using:

  • VCS (version control system) repositories
  • directory creation
  • symlinking

It also aims to reliably manage your exising environment by:

  • easy switching between project workspaces
  • report on the status of used repositories (like oh-my-zsh, spf13-vim, ...)

Installation

Simply type in you shell:

gem install clenver

Getting Started

Bootstrap

clenver is able to bootstrap your brand new Linux account according to rules provided through YAML file. For xample create dummy.yml with below content:

https://github.com/pietrushnic/dummy.git:
  links:
    foobar.txt:
    - foobar_link
    foobar:
    - foobar_dir_link
  run:
    - echo "success!!!"
  remotes:
    upstream:
    - https://github.com/pietrushnic/dummy.git

After that running

clenver init dummy.yaml

gives you below tree:

dummy
├── dummy
│   ├── foobar
│   ├── foobar.txt
│   └── README.md
├── foobar_dir_link -> $PWD/dummy/dummy/foobar
└── foobar_link -> $PWD/dummy/dummy/foobar.txt

And of course will display success!!! message. Carefully crafted YAML file can bootstrap you clean user account into fully configured user account.

Examples

Contribution

FAQs

Package last updated on 20 Nov 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc