Skip to content

data-processing/bloop

 
 

Repository files navigation

logo

Bloop gives you fast edit/compile/test workflows for Scala.

GitHub tag Build Status Join the chat

Goals

To understand the goals of bloop, we strongly encourage you to read this Scala blog post.

Bloop is a command-line tool for fast edit/compile/test workflows. Its primary goal is to compile and test your project as fast as possible, offering a snappy developer experience. Bloop does not aim to replace your stock build tool, but rather complement it.

Disclaimer: Bloop is in beta, that means that you should not expect everything to make sense and you should be ready to see unexpected behaviours. We're working hard to quickly improve it, and we encourage you to update master on a daily basis if you start using the tool.

Installation

Please refer to the installation instructions.

Documentation

Documentation is available on our website.

Building Bloop locally

To publish bloop locally, you'll need to clone this repository and use sbt:

$ git clone --recursive https://github.com/scalacenter/bloop.git
$ cd bloop
$ sbt
> install
> frontend/version # copy this version number
$ cd nailgun
$ git rev-parse HEAD # copy this commit SHA
$ cd ..
# paste the version number and SHA obtained above in the following command:
$ bin/install.py --dest $HOME/.bloop --nailgun <nailgun-commit-sha> --version <version>

Tab-completion

Bloop supports tab-completion on ZSH. To install command completion on ZSH, copy the completions file to an existing completions directory, if it exists.

If not, you can create it, and update your .zshrc script as follows:

$ mkdir -p ~/.zsh/completion
$ cp etc/_bloop ~/.zsh/completion/
$ echo 'fpath=(~/.zsh/completion $fpath)' >> ~/.zshrc
$ echo 'autoload -Uz compinit ; compinit' >> ~/.zshrc

Closing and reopening your shell should make bloop tab-completions available.

About

A hot bloop for your productivity

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 95.4%
  • Shell 1.8%
  • Java 1.5%
  • Python 1.3%