github.com/j8r/cride

A light Crystal IDE

53 stars
0 dependents
License: ISC

Nothing has been indexed for 0.0.1 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  cride:
    github: j8r/cride
    version: ~> 0.0.1

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.0.1. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

# Cride

[![Build Status](https://cloud.drone.io/api/badges/j8r/cride/status.svg)](https://cloud.drone.io/j8r/cride)
[![ISC](https://img.shields.io/badge/License-ISC-blue.svg?style=flat-square)](https://en.wikipedia.org/wiki/ISC_license)

A light Crystal IDE

![screenshot](https://i.imgur.com/UCSsnDz.png)

## Features

* Light, fast and easy to use
* Customizable
* Modular (different front-ends can share same resources)
* Colors
* Read from the stdin
* Advanced CTRL + Arrow keys traversing
* CTRL+D line duplication
* CTRL+K line emptying/deletion

## Command usage

You have to build Cride (see the **Development** section below).

Open a file:

`bin/cride README.md`

## Development

Build Cride:

`shards build`

## Build with Docker

To build a statically-linked `cride` binary:

```sh
docker run -it --rm -v $PWD:/app -w /app crystal:latest-alpine sh -c "\
shards build --static --release
chown 1000:1000 bin/cride"
```

The binary built is `bin/cride`.

## License

Copyright (c) 2018-2021 Julien Reichardt - ISC License