slackdo 0.2.0 → 0.2.1
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/.DS_Store +0 -0
- data/Gemfile.lock +1 -1
- data/README.md +43 -4
- data/img/task-example.png +0 -0
- data/lib/slackdo/version.rb +1 -1
- data/lib/slackdo.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3bf3dc9d2e78ba03e75ea8a1bb8e0f1f50b859e
|
4
|
+
data.tar.gz: 3c30f6f32cd821a9aa931ff7b2c74b55a1ad2776
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbe167ade57ec60275b628a5a812e397dbd724e3e47c1380632288d493068c8b4f231667c87f2180f6d97bf39a866c82f12a351e61b488649e000cba5a26f47c
|
7
|
+
data.tar.gz: 2658a83a948b482526ec031c637f4087f1f87510685351b804569854cd526189fae4bef268790070b0b8cc9d2784e4f07c1c04eb795898a05a0bbbc147832421
|
data/.DS_Store
ADDED
Binary file
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,21 +1,60 @@
|
|
1
1
|
# Slackdo
|
2
|
+

|
3
|
+
|
2
4
|
SlackDO is a simple CLI tool that allows you to send TODO items and Reminders to yourself on Slack through an incoming webhook.
|
3
5
|
|
4
6
|
## Installation
|
5
7
|
|
6
|
-
```
|
8
|
+
```
|
7
9
|
gem install slackdo
|
8
10
|
```
|
9
11
|
|
12
|
+
In order to use slackdo you still have to add the rubygem's bin location to your $PATH.
|
13
|
+
|
14
|
+
eg. for OSX:
|
15
|
+
|
16
|
+
```bash
|
17
|
+
export PATH=$PATH:/usr/local/lib/ruby/gems/2.4.0/gems/slackdo-0.2.0/bin
|
18
|
+
```
|
19
|
+
|
20
|
+
To get to know your general gem installation path use the following for your general rubygems information and look for the GEM PATHS variable:
|
21
|
+
|
22
|
+
```bash
|
23
|
+
$ gem env
|
24
|
+
```
|
25
|
+
|
26
|
+
Or just check the specific gem information to see the location where it's installed:
|
27
|
+
|
28
|
+
```bash
|
29
|
+
$ gem which slackdo
|
30
|
+
/usr/local/lib/ruby/gems/2.4.0/gems/slackdo-0.2.0/lib/slackdo.rb
|
31
|
+
```
|
32
|
+
|
33
|
+
This indicates that your gem binary is located at `/usr/local/lib/ruby/gems/2.4.0/gems/slackdo-0.2.0/bin`.
|
34
|
+
|
10
35
|
## Usage
|
11
36
|
|
12
|
-
First thing you should do is configure your incoming webhook by doing
|
37
|
+
First thing you should do is configure your incoming webhook by doing the following:
|
38
|
+
|
39
|
+
```
|
40
|
+
slackdo webhook
|
41
|
+
```
|
42
|
+
|
43
|
+
After that you're all set to go.
|
44
|
+
Add a new TODO item by using
|
13
45
|
|
14
|
-
|
46
|
+
```ruby
|
47
|
+
slackdo task
|
48
|
+
```
|
49
|
+
or add a reminder with
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
slackdo reminder
|
53
|
+
```
|
15
54
|
|
16
55
|
## Development
|
17
56
|
|
18
|
-
Slackdo is still under development and might still be buggy. Feel free to
|
57
|
+
Slackdo is still under development and might still be buggy. Feel free to contribute to the project.
|
19
58
|
|
20
59
|
## Contributing
|
21
60
|
|
Binary file
|
data/lib/slackdo/version.rb
CHANGED
data/lib/slackdo.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slackdo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- segersniels
|
@@ -88,6 +88,7 @@ executables: []
|
|
88
88
|
extensions: []
|
89
89
|
extra_rdoc_files: []
|
90
90
|
files:
|
91
|
+
- ".DS_Store"
|
91
92
|
- ".gitignore"
|
92
93
|
- ".rspec"
|
93
94
|
- ".travis.yml"
|
@@ -99,6 +100,7 @@ files:
|
|
99
100
|
- bin/console
|
100
101
|
- bin/setup
|
101
102
|
- bin/slackdo
|
103
|
+
- img/task-example.png
|
102
104
|
- lib/slackdo.rb
|
103
105
|
- lib/slackdo/version.rb
|
104
106
|
- slackdo.gemspec
|