fastlane-plugin-bearychat 0.1.0 → 0.2.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 403b770d2958870f7a9700bbcb431f7898b1893a
|
4
|
+
data.tar.gz: 6b84172f347fe11d398745341f813910d405ec65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c461d6c53ca4cba1396649b71b0e65460d30b8d2a8c532556686b646cac9db419e1de36fe5dab98e2599e2c5d031e935609a7230f7f2dfafe99ab271e273f365
|
7
|
+
data.tar.gz: bd6434d8286a98fc1a11ac3087ee4b5ada2f83b7084b32bc42672adad1e8870df961223b361a211609cfed9ccb9e8540f0fa0dda449a2ea19f7c96e2984bf004
|
data/README.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-bearychat)
|
4
4
|
|
5
|
+
|
6
|
+
## Features
|
7
|
+
- [x] send text message to bearychat
|
8
|
+
- [ ] send attachment
|
9
|
+
|
5
10
|
## Getting Started
|
6
11
|
|
7
12
|
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-bearychat`, add it to your project by running:
|
@@ -14,22 +19,16 @@ fastlane add_plugin bearychat
|
|
14
19
|
|
15
20
|
send messages to a bearychat channal
|
16
21
|
|
17
|
-
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
-
|
19
22
|
## Example
|
20
23
|
|
21
24
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
25
|
|
23
|
-
|
26
|
+
```ruby
|
27
|
+
bearychat(webhook_url: 'your bearychat webhook url', text: 'hello world')
|
28
|
+
```
|
24
29
|
|
25
30
|
## Run tests for this plugin
|
26
31
|
|
27
|
-
To run both the tests, and code style validation, run
|
28
|
-
|
29
|
-
```
|
30
|
-
rake
|
31
|
-
```
|
32
|
-
|
33
32
|
To automatically fix many of the styling issues, use
|
34
33
|
```
|
35
34
|
rubocop -a
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-bearychat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dvlprliu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
140
|
version: '0'
|
141
141
|
requirements: []
|
142
142
|
rubyforge_project:
|
143
|
-
rubygems_version: 2.6.
|
143
|
+
rubygems_version: 2.6.8
|
144
144
|
signing_key:
|
145
145
|
specification_version: 4
|
146
146
|
summary: send messages to a bearychat channal
|