messenger 0.7.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43b99873719b3d45b62713bed93b693e31643d6a
4
- data.tar.gz: 2acb952179ba9d928f9849c2908e1e3511943d2e
3
+ metadata.gz: aa7a85c2be5d84ab89714304b3b37e255dac68e5
4
+ data.tar.gz: 1ec77ac3fdf9d7b1654fd63349c2c61328ae594c
5
5
  SHA512:
6
- metadata.gz: 997bc584e29a1ace9b819a085b24745919d87539e3e0d3f944575883ac3d20e62071c6fe1f4f349b0131c3124319460530f4d136baa9822c1d0099e0d2cd3607
7
- data.tar.gz: 758920cdfaddcac2265d8a7bcebc0b0216245e9cfec043e8139e47164d1c13c7f56983c8f60fe5673d7823e84a0084bcb798676e496d242ac944641d96268f31
6
+ metadata.gz: 91e0787218cbf03500da558a4d18109a779268a29ffed64562e9bc13beae7f5e2a89bf1e1f4bb419d27621a72b37283905ab9e2179c70a61cef6663e0b1ee3e3
7
+ data.tar.gz: e0f21e27ef5b43bd6dcf87423be2ff2f7d4d78349b9c905c95fcd7711aa1e2949e552ba008eec314c25a9f1de48f37ee5507c0c90810913e2cc31c3b66b4eac1
@@ -1,4 +1,4 @@
1
- Messenger
1
+ Messenger [![Build Status](https://travis-ci.org/zencoder/messenger.svg?branch=production)](https://travis-ci.org/zencoder/messenger)
2
2
  =========
3
3
 
4
4
  Messenger makes it easy to send messages using a variety of services (e.g. email, web, campfire, jabber). It is designed to be used via the command-line or invoked directly with in a Ruby application. One of the guiding principles behind the library is to specify as much as possible through a single URL.
@@ -36,9 +36,9 @@ module Messenger
36
36
  case url
37
37
  when /\Ahttp/ then :http
38
38
  when /\Acampfire/ then :campfire
39
+ when /\Aslack/ then :slack
39
40
  when /\Ajabber/ then :jabber
40
41
  when /\Amailto|@+/ then :email
41
- when /\Aslack/ then :slack
42
42
  end
43
43
  end
44
44
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: messenger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Arbini