An open API service indexing awesome lists of open source software.

https://github.com/amcaplan/check_everything

Check your favorite websites with one Bash command!
https://github.com/amcaplan/check_everything

Last synced: 12 months ago
JSON representation

Check your favorite websites with one Bash command!

Awesome Lists containing this project

README

          

# check_everything

## Open frequently accessed websites from your command line, in one go!
####(Also includes the ability to find documentation for the Ruby core classes)

### Install

Type `gem install check_everything` into the command line.

### Run

Type `check_everything` into the command line to pull up the default URLs.
Type `check_everything` followed by one or more categories to open specific
groups of sites.

You can add the following tags (listed in order of precedence; only the first
will be evaluated):

| Tag | Result |
|-----|-----|
| \-h, \-\-help | display the help message |
| \-l, \-\-links | view/edit links and categories |
| \-r, \-\-ruby | install Ruby Documentation functionality |
| \-c, \-\-categories | view the currently defined categories |
| \-a, \-\-all | open all websites |
| <category> | open a specific site group |
| <Ruby class> | open Ruby documentation (if feature is installed) |

NOTE: in versions 0.3.2 and higher, you can check Ruby documentation in one of three ways:

----
1. `check_everything array` (for the [class](http://www.ruby-doc.org/core-2.1.0/Array.html))
2. `check_everything array#slice` (for the
[instance method](http://www.ruby-doc.org/core-2.1.0/Array.html#method-i-slice))
3. `check_everything array::new` (for the [class method](http://www.ruby-doc.org/core-2.1.0/Array.html#method-c-new))

----

### Configure

On your first run, you will be asked to do 2 things:

1. Choose whether to install Ruby Documentation lookup functionality. This will
give you command-line access to the online Ruby Documentation for the Core classes
for your currently running version of Ruby. For example, to see documentation for
array, type `check_everything array`.

2. Input your URLs and customize your categories! Check out the instructions in
the configuration file.

### Update Your Bash Profile (optional)

You can update your Bash profile (~/.bash_profile) with:
```alias check="check_everything"```
to just type `check` instead of `check_everything` and make things even simpler!

### Enjoy!

If you have any comments or want to suggest improvements, please feel free to fork
and submit a pull request.

The latest version: [![Gem Version](https://badge.fury.io/rb/check_everything.png)](http://badge.fury.io/rb/check_everything)