mattermost-api4-ruby 0.0.9 → 0.0.10

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
  SHA256:
3
- metadata.gz: d97995dcba471128cfc66bbf780838e6719ddc162f257ff440e402d6aed4df65
4
- data.tar.gz: 6e885c142ccf11596cd1eb4a134c61f7651ebecede65b4b83896e924df2cd87c
3
+ metadata.gz: a9c4f02e6c79b91d9ba7122872362f5e636d52db5c3ecad48769414a0a20a872
4
+ data.tar.gz: '062951e7eeedb611b7a83616636c8fede5acbd1de2275b5b87a367a920d365a7'
5
5
  SHA512:
6
- metadata.gz: 7b94d19e5af862a08f6142a2526f6aea61a06840bfd4228f924112f5098a5d9d3a6f9edcc1d054ced7854efb2ec442508c4b3270ef16e5d20a8408d58aecf677
7
- data.tar.gz: 01a7a1946bcf2cad86887f2aa9195e2944cc6e9d12cb5d9289e934a63d7479b24116e0272d6d9d9c71fb8266b9b5f5835e81cbb3ee8f0e9ac05e25b8fceb46b4
6
+ metadata.gz: 0f9e30ceedc5fea0c0832cc0c8a58bd5022d91b1a764c33b25a388bfbbf6b0b8998848061ef8ce8bec592e47ce0033b5aad8ac649bf18b8976f5c36dd581bd5c
7
+ data.tar.gz: 110be3d88864529fca91705d0dd5231e4ebad81d9a2ff568b1b7c625e28b3682f18b667858fcfb00704322ec04033439c6b43c171e42d699e742b89f5ef0aa84
@@ -1,7 +1,18 @@
1
1
  # Change Log
2
2
 
3
- ## [0.0.9](https://github.com/maruTA-bis5/mattermost-api4-ruby/tree/0.0.9) (2018-10-18)
4
- [Full Changelog](https://github.com/maruTA-bis5/mattermost-api4-ruby/compare/v0.0.8...0.0.9)
3
+ ## [v0.0.10](https://github.com/maruTA-bis5/mattermost-api4-ruby/tree/v0.0.10) (2019-01-26)
4
+ [Full Changelog](https://github.com/maruTA-bis5/mattermost-api4-ruby/compare/v0.0.9...v0.0.10)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - Fix typo in create channel method [\#21](https://github.com/maruTA-bis5/mattermost-api4-ruby/pull/21) ([yulkadev](https://github.com/yulkadev))
9
+
10
+ **Merged pull requests:**
11
+
12
+ - link to gist example for API usage. [\#18](https://github.com/maruTA-bis5/mattermost-api4-ruby/pull/18) ([mqu](https://github.com/mqu))
13
+
14
+ ## [v0.0.9](https://github.com/maruTA-bis5/mattermost-api4-ruby/tree/v0.0.9) (2018-10-17)
15
+ [Full Changelog](https://github.com/maruTA-bis5/mattermost-api4-ruby/compare/v0.0.8...v0.0.9)
5
16
 
6
17
  **Implemented enhancements:**
7
18
 
data/README.md CHANGED
@@ -22,6 +22,8 @@ Or install it yourself as:
22
22
 
23
23
  TODO: Write usage instructions here
24
24
 
25
+ an example using ruby mattermost api : https://gist.github.com/mqu/7a918ed76a4af5e698fdb5da71553187
26
+
25
27
  ## Development
26
28
 
27
29
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -4,7 +4,7 @@ module Mattermost
4
4
  module Endpoint
5
5
  module Channels
6
6
  def create_channel(channel = {})
7
- post("/channels", :body => channels.to_json)
7
+ post("/channels", :body => channel.to_json)
8
8
  end
9
9
 
10
10
  def create_direct_channel(user_id_1, user_id_2)
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "mattermost-api4-ruby"
5
- spec.version = "0.0.9"
5
+ spec.version = "0.0.10"
6
6
  spec.authors = ["Takayuki Maruyama"]
7
7
  spec.email = ["bis5.wsys@gmail.com"]
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mattermost-api4-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takayuki Maruyama
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-17 00:00:00.000000000 Z
11
+ date: 2019-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler