README.md in arli-0.6.2 vs README.md in arli-0.7.0

- old
+ new

@@ -1,10 +1,12 @@ [![Gem Version](https://badge.fury.io/rb/arli.svg)](https://badge.fury.io/rb/arli) [![Build Status](https://travis-ci.org/kigster/arli.svg?branch=master)](https://travis-ci.org/kigster/arli) [![Maintainability](https://api.codeclimate.com/v1/badges/0812671b4bec27ba89b9/maintainability)](https://codeclimate.com/github/kigster/arli/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/0812671b4bec27ba89b9/test_coverage)](https://codeclimate.com/github/kigster/arli/test_coverage) +**NOTE: This software is currently in BETA. Bugs are possible, and reporting them is encouraged.** + # Arli Arli is an awesomely simple and very easy to use Arduino Library Installer. It allows your Arduino projects to be portable by including a small text file called `Arlifile` that defines your project's Arduino library dependencies. Using either this file, or command line flags, Arli is able to search for libraries, install them locally to a custom location, and do it all consistently and reliably. That way you can share projects with others and they will be able to automatically download and install the dependent libraries instead of having to do that manually. The project is inspired by [Bundler](http://bundler.io/). @@ -118,10 +120,11 @@ ```yaml # vi:syntax=yaml --- dependencies: - name: "Adafruit GFX Library" + version: '1.2.0' - name: "DS1307RTC" - name: "Adafruit LED Backpack Library" - name: "Adafruit Unified Sensor" - name: "DHT sensor library" - name: "OneButton" @@ -199,10 +202,10 @@ The search argument can also be a ruby-syntaxed expression, that (if you know ruby) is actually `eval`-ed into the method parameters. Here are a few examples: You can also use regular expressions, and set maximum number of results printed by the `-m MAX` flag. ```bash -❯ arli search 'name: /adafruit/i' +❯ arli search 'name: /adafruit/i' -m 0 Adafruit ADS1X15 (1.0.0), by Adafruit Adafruit ADXL345 (1.0.0), by Adafruit Adafruit AM2315 (1.0.0), by Adafruit Adafruit AM2315 (1.0.1), by Adafruit .....