slackdo 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b3bf3dc9d2e78ba03e75ea8a1bb8e0f1f50b859e
4
- data.tar.gz: 3c30f6f32cd821a9aa931ff7b2c74b55a1ad2776
3
+ metadata.gz: 8cea02cf5013acad1e894f8eeee0793112a3113e
4
+ data.tar.gz: 90704f9e34e767c20278ef1cc2f5158850f8ecdf
5
5
  SHA512:
6
- metadata.gz: fbe167ade57ec60275b628a5a812e397dbd724e3e47c1380632288d493068c8b4f231667c87f2180f6d97bf39a866c82f12a351e61b488649e000cba5a26f47c
7
- data.tar.gz: 2658a83a948b482526ec031c637f4087f1f87510685351b804569854cd526189fae4bef268790070b0b8cc9d2784e4f07c1c04eb795898a05a0bbbc147832421
6
+ metadata.gz: 02ed6ddaa2ad2aa2acab64a94fb2f21e0395d4c6e5593713902cc213be25835906b7689fc3e690a39c8a369b73b8051d6ee7361113014b8fbc7bb9db2215b0f5
7
+ data.tar.gz: f28ba8c02c316b75d66fbf881bc4ebe8d45fb7e2d5e8a12170a77bcbd8bc10d26d764821a974d7d83f7084b32395e3e079bf7029673f76bcb0c96edb10dba796
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slackdo (0.2.1)
4
+ slackdo (0.2.2)
5
5
  highline
6
6
  slack-notifier
7
7
 
data/README.md CHANGED
@@ -14,7 +14,7 @@ In order to use slackdo you still have to add the rubygem's bin location to your
14
14
  eg. for OSX:
15
15
 
16
16
  ```bash
17
- export PATH=$PATH:/usr/local/lib/ruby/gems/2.4.0/gems/slackdo-0.2.0/bin
17
+ export PATH=$PATH:/usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/bin
18
18
  ```
19
19
 
20
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:
@@ -27,10 +27,10 @@ Or just check the specific gem information to see the location where it's instal
27
27
 
28
28
  ```bash
29
29
  $ gem which slackdo
30
- /usr/local/lib/ruby/gems/2.4.0/gems/slackdo-0.2.0/lib/slackdo.rb
30
+ /usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/lib/slackdo.rb
31
31
  ```
32
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`.
33
+ This indicates that your gem binary is located at `/usr/local/lib/ruby/gems/<ruby-version>/gems/slackdo-<gem-version>/bin`.
34
34
 
35
35
  ## Usage
36
36
 
@@ -1,3 +1,3 @@
1
1
  module Slackdo
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
data/lib/slackdo.rb CHANGED
@@ -41,7 +41,7 @@ module Slackdo
41
41
  notifier = Slack::Notifier.new `cat ~/.slackdo/webhook`.strip
42
42
  cli = HighLine.new
43
43
  message = cli.ask 'Type your reminder:'
44
- notifier.post text: " [REMINDER] #{message}"
44
+ notifier.post text: " _#{message}_"
45
45
  end
46
46
  end
47
47
  end
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.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - segersniels