Sha256: 780979b6607f16fc4b7100c0445bba2e9473f3bc4914b751072db5e05e601f6a

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

#grepg
###The ruby client for greppage

`grepg` (pronounced Grep G) is a ruby client for [GrepPage](https://www.greppage.com).  It is packaged as a gem.

###Install
To install `grepg` run ```gem install grepg```

###Examples
```
Usage:
grepg user_name topic_name [-s search_term]
```

Get all items/microdoc for a topic on any collection.

```
$ grepg kdavis git
User: kdavis, Topic: git
push tags to remote / Github
git push --tags

remove delete tag
git tag -d v0.0.8

list branches that have not been merged
git branch --no-merged

list branches merged into master
git branch --merged master
...

```

Search for a specific string

```
$ grepg kdavis git -s stash
User: kdavis, Topic: git, Search-Term: stash
TO apply your changes
git stash --apply

To list the stash
git stash list

Git stash
git stash
```

##Development
To run tests run ```bundle exec rake spec```. To install the gem locally, first build it using ```bundle exec rake build```. Then install the gem ```gem install pkg/grepg-0.0.1.gem```

##License
grepg is under the [MIT License](http://www.opensource.org/licenses/MIT).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
grepg-0.0.3 README.md
grepg-0.0.2 README.md