whatup 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -3
- data/docs/installing_ruby.md +6 -8
- data/lib/whatup/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edc66755eaf87be82fc25a0dfa081027979202d7af308f4a84ffb55d7d534bf2
|
4
|
+
data.tar.gz: cbe533848af25657b5989d43168809b5ef5a8e6aa58de06a98a4cbdb3a9c81a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6962ddc17ee091df4405504ee4cbb89941bbd80d7ca6f0c2efa5e8659bb68d44bc38539f7a0fb292c16f33a6f9f6dddfa4518b1eee6e5fa5623b17f4b14c39e8
|
7
|
+
data.tar.gz: 1b5ed8f44195dccf6a4edd6b90251826e0e7ecc546d2d8c74560946829d9534f6f023cb43e071d9733f691c859adfe086df6b81957603a041513d3b6aa7b02eb
|
data/README.md
CHANGED
@@ -4,16 +4,18 @@ whatup is a simple server-based instant messaging application
|
|
4
4
|
|
5
5
|
**Note**: this is very much a work-in-progress, and will be until version `1.0.0`
|
6
6
|
|
7
|
+
Check it out on [rubygems.org](https://rubygems.org/gems/whatup).
|
8
|
+
|
7
9
|
## Installation
|
8
10
|
|
9
|
-
Assuming you have Ruby
|
11
|
+
Assuming you have Ruby 2.4 or greater installed,
|
10
12
|
|
11
13
|
```
|
12
14
|
$ gem install whatup
|
13
15
|
```
|
14
16
|
|
15
|
-
If you don't have Ruby
|
16
|
-
|
17
|
+
If you don't have Ruby installed, see [here](docs/installing_ruby.md) for some
|
18
|
+
brief instructions.
|
17
19
|
|
18
20
|
## Usage
|
19
21
|
|
data/docs/installing_ruby.md
CHANGED
@@ -4,20 +4,18 @@ There are a variety of ways to download Ruby, see
|
|
4
4
|
[their download](https://www.ruby-lang.org/en/downloads/) page for some
|
5
5
|
suggestions.
|
6
6
|
|
7
|
-
**Note**:
|
8
|
-
|
9
|
-
We're using the newest, fanciest Ruby (`2.6.1`), so be sure to install it.
|
10
|
-
|
11
|
-
Many OS package managers don't have it yet, though, so you're encouraged to
|
12
|
-
use [rbenv](https://github.com/rbenv/rbenv), a Ruby version manager.
|
13
|
-
|
14
|
-
|
15
7
|
[TL;DR - use rbenv](https://github.com/rbenv/rbenv-installer#rbenv-installer).
|
16
8
|
|
17
9
|
If you're using rbenv (or followed the above link)
|
18
10
|
|
19
11
|
To install Ruby
|
20
12
|
|
13
|
+
```
|
14
|
+
$ rbenv install <some_version>
|
15
|
+
```
|
16
|
+
|
17
|
+
For example, our development is on the newest stable Ruby
|
18
|
+
|
21
19
|
```
|
22
20
|
$ rbenv install 2.6.1
|
23
21
|
```
|
data/lib/whatup/version.rb
CHANGED