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: 2a33ecddff13b57853153d03f4b95005802beb85
4
- data.tar.gz: c10fdcfd37dd0dbea1fafc2fd0b5118704f1b181
3
+ metadata.gz: 403b770d2958870f7a9700bbcb431f7898b1893a
4
+ data.tar.gz: 6b84172f347fe11d398745341f813910d405ec65
5
5
  SHA512:
6
- metadata.gz: 59389684cec5aab39cc5d8218f44aa625eb44fc2a3f3b71a115c53c68e929f2ef6b52fcc257b8e8641ed511ea2df2a4e00577a7a6184c0103b5b0241098f0808
7
- data.tar.gz: c55602afa762b2096e96a6b6fec4c588df14c48cb1f0e230277b70845b1ae1ca379b93d944aa9b7dbc26eafe90410953fc4c4ba9a8228a5dc2b0d2ccf7fb4243
6
+ metadata.gz: c461d6c53ca4cba1396649b71b0e65460d30b8d2a8c532556686b646cac9db419e1de36fe5dab98e2599e2c5d031e935609a7230f7f2dfafe99ab271e273f365
7
+ data.tar.gz: bd6434d8286a98fc1a11ac3087ee4b5ada2f83b7084b32bc42672adad1e8870df961223b361a211609cfed9ccb9e8540f0fa0dda449a2ea19f7c96e2984bf004
data/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](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
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
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
@@ -14,8 +14,7 @@ module Fastlane
14
14
  cmd << "\"text\" : \"#{text}\", "
15
15
  cmd << '"markdown" : true'
16
16
  cmd << '}\''
17
- cmd.join(' ')
18
- sh cmd
17
+ sh cmd.join(' ')
19
18
  end
20
19
 
21
20
  def self.description
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Bearychat
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
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.1.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-10-23 00:00:00.000000000 Z
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.12
143
+ rubygems_version: 2.6.8
144
144
  signing_key:
145
145
  specification_version: 4
146
146
  summary: send messages to a bearychat channal