gtalk 0.0.3 → 0.0.4
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.
- data/{README.rdoc → README.md} +18 -11
- metadata +5 -5
data/{README.rdoc → README.md}
RENAMED
|
@@ -1,23 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
# Gtalk
|
|
2
|
+
A ruby gem to send xmpp messages with a gtalk account
|
|
2
3
|
|
|
3
|
-
installation
|
|
4
|
-
|
|
4
|
+
### installation
|
|
5
|
+
```bash
|
|
5
6
|
sudo gem install gtalk
|
|
7
|
+
```
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
### setup
|
|
10
|
+
```bash
|
|
10
11
|
vim ~/.bashrc
|
|
12
|
+
```
|
|
13
|
+
```bash
|
|
11
14
|
export GTALK_ME="me@gmail.com"
|
|
12
15
|
export GTALK_US="me@gmail.com,him@gmail.com"
|
|
13
16
|
export GTALK_HEADER="["`hostname`"] "
|
|
14
17
|
export GTALK_LOGIN="me"
|
|
15
18
|
export GTALK_PASSWORD="pwd"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
```
|
|
20
|
+
```bash
|
|
21
|
+
exec bash
|
|
22
|
+
```
|
|
23
|
+
### usage
|
|
24
|
+
```bash
|
|
21
25
|
pry
|
|
26
|
+
```
|
|
27
|
+
```ruby
|
|
22
28
|
require 'gtalk'
|
|
23
29
|
gtalk "test"
|
|
30
|
+
```
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gtalk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -27,15 +27,15 @@ dependencies:
|
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
|
-
description:
|
|
30
|
+
description: A ruby gem to send xmpp messages with a gtalk account
|
|
31
31
|
email: tobeportable@gmail.com
|
|
32
32
|
executables: []
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files:
|
|
35
|
-
- README.
|
|
35
|
+
- README.md
|
|
36
36
|
files:
|
|
37
37
|
- lib/gtalk.rb
|
|
38
|
-
- README.
|
|
38
|
+
- README.md
|
|
39
39
|
homepage: ''
|
|
40
40
|
licenses: []
|
|
41
41
|
post_install_message:
|
|
@@ -59,6 +59,6 @@ rubyforge_project:
|
|
|
59
59
|
rubygems_version: 1.8.24
|
|
60
60
|
signing_key:
|
|
61
61
|
specification_version: 3
|
|
62
|
-
summary:
|
|
62
|
+
summary: gtalk('alert' website offline)
|
|
63
63
|
test_files: []
|
|
64
64
|
has_rdoc:
|