slackdo 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5506335231c02001550addecf509393dd3179819
4
- data.tar.gz: 2a375c347978f10660eed09e8a982b2af16a1125
3
+ metadata.gz: 12b080b35b45b1272d182d03b24a7c203cd27a1e
4
+ data.tar.gz: ad488697f3f6bd554cc918e94d9a14ce52860442
5
5
  SHA512:
6
- metadata.gz: 7848f72ae63ff078e2669162e7721c1dbc4aa7372812ef3f231598043de12e4441544be2d6607fce0706493f3de104d6a9fb8c8182dafd04ac077face9780671
7
- data.tar.gz: ff1e8f3fbe807e5dda917ec7b96bf5b876a6875b7a88586d8ecf7fd8ddc9e67b899d0601b11506226f41c5594d51b2706adda51c4c67db2862f25c15b32e7b3c
6
+ metadata.gz: b83205bcaa8dd678a2b37cb1eb3e4954421a201d5185d6558f7c21a738a53113675203e406a5e6dc016becbfff17b18c6cbd9083ca76e83936f78a416715e191
7
+ data.tar.gz: 695b1898c35a06a11d0d4359b93870b13a9d1f7ee1177119eede154d8910d69f11eb53a69532780b93378a71c082e679f09c0db37aa60462eeb5cb3ba89181de
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slackdo (0.3.0)
4
+ slackdo (0.3.1)
5
5
  highline
6
6
  json
7
7
  ruby-trello
data/README.md CHANGED
@@ -1,9 +1,7 @@
1
1
  # Slackdo
2
2
  ![example](img/task-example.png)
3
3
 
4
- A lot of people use the slack conversation with themselves as a todo list. SlackDO is a simple CLI tool that allows you to send TODO items and Reminders to yourself on Slack through an incoming webhook.
5
-
6
- It simplifies the process of maintaining your TODO list from the CLI without having to leave the CLI while working.
4
+ SlackDO is a simple CLI tool that allows you to send TODO items and reminders to a channel on Slack or to yourself. It simplifies the process of maintaining your TODO list from the CLI without having to leave it.
7
5
 
8
6
  ## Prerequisites
9
7
  - Ruby
@@ -17,27 +15,10 @@ gem install slackdo
17
15
 
18
16
  In order to use slackdo you still have to add the rubygem's bin location to your $PATH.
19
17
 
20
- eg. for OSX:
21
-
22
- ```bash
23
- export PATH=$PATH:/usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/bin
24
- ```
25
-
26
- To get to know your general gem installation path use the following for your general rubygems information and look for the GEM PATHS variable:
27
-
28
18
  ```bash
29
- $ gem env
19
+ export PATH=$PATH:$(gem which slackdo | rev | cut -d'/' -f3- | rev)/bin
30
20
  ```
31
21
 
32
- Or just check the specific gem information to see the location where it's installed:
33
-
34
- ```bash
35
- $ gem which slackdo
36
- /usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/lib/slackdo.rb
37
- ```
38
-
39
- This indicates that your gem binary is located at `/usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/bin`.
40
-
41
22
  ## Usage
42
23
  ### Slack
43
24
  First thing you should do is configure your incoming webhook by doing the following:
@@ -59,30 +40,29 @@ slackdo reminder
59
40
  ```
60
41
 
61
42
  ### Trello
62
- To start using the Trello integration of SlackDO, which enables you to push your TODO items to a list on Trello use:
43
+ To start using the Trello integration of SlackDO, which enables you to push your TODO items to a list on Trello, use:
63
44
 
64
45
  ```
65
46
  slackdo configure trello
66
47
  ```
67
48
 
68
- Now that this has been configured SlackDO will send your items to Trello as well using the same command.
49
+ Now that this has been configured SlackDO will send your items to both Slack and Trello everytime you use the command:
69
50
 
70
51
  ```
71
52
  slackdo task
72
53
  ```
73
54
 
74
- ![example](img/cli-example.png)
75
55
  ![example](img/slack-task.png)
76
56
  ![example](img/trello-card.png)
77
57
 
78
- ## Development
58
+ ### Configuration
59
+ The config file is located at `~/.slackdo/config.json` if you like to change things manually.
79
60
 
61
+ ## Development
80
62
  Slackdo is still under development and might still be buggy. Feel free to contribute to the project.
81
63
 
82
64
  ## Contributing
83
-
84
65
  Bug reports and pull requests are welcome on GitHub at https://github.com/segersniels/slackdo.
85
66
 
86
67
  ## License
87
-
88
68
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/bin/slackdo CHANGED
@@ -8,7 +8,9 @@ config.configure_init
8
8
  case ARGV[0]
9
9
  when 'configure'
10
10
  config.configure_slack_webhook if ARGV[1] == 'slack'
11
- config.configure_trello_api if ARGV[1] == 'trello'
11
+ config.configure_trello_api if ARGV[1] == 'trello' && ARGV[2].nil?
12
+ config.disable_trello if ARGV[1] == 'trello' && ARGV[2] == 'disable'
13
+ config.enable_trello if ARGV[1] == 'trello' && ARGV[2] == 'enable'
12
14
  when 'task'
13
15
  slack = Slackdo::Task.new
14
16
  slack.add_task
@@ -1,3 +1,3 @@
1
1
  module Slackdo
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
data/lib/slackdo.rb CHANGED
@@ -22,6 +22,24 @@ module Slackdo
22
22
  end
23
23
  end
24
24
  end
25
+ def enable_trello
26
+ file = File.read("#{ENV['HOME']}/.slackdo/config.json")
27
+ hash = JSON.parse(file)
28
+ hash["allow_trello_pushing"] = "true"
29
+ File.open("#{ENV['HOME']}/.slackdo/config.json",'w') do |f|
30
+ f.write(hash.to_json)
31
+ end
32
+ puts 'Trello has been enabled...'
33
+ end
34
+ def disable_trello
35
+ file = File.read("#{ENV['HOME']}/.slackdo/config.json")
36
+ hash = JSON.parse(file)
37
+ hash["allow_trello_pushing"] = "false"
38
+ File.open("#{ENV['HOME']}/.slackdo/config.json",'w') do |f|
39
+ f.write(hash.to_json)
40
+ end
41
+ puts 'Trello has been disabled...'
42
+ end
25
43
  def configure_trello_api
26
44
  cli = HighLine.new
27
45
  file = File.read("#{ENV['HOME']}/.slackdo/config.json")
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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - segersniels