slack-ruby 1.0.1 → 1.1.0

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
  SHA1:
3
- metadata.gz: 4e2d2c794344e0225257317b6520e25ec5b3027d
4
- data.tar.gz: 4d63a311f0f5d246f08e48f2ebe7de55fcc86ef3
3
+ metadata.gz: e68fcd16be5769b5eae186f1cdf3e0dfba4cb71f
4
+ data.tar.gz: d1236f5db46fd7d9c899757d52adc3baaae540a3
5
5
  SHA512:
6
- metadata.gz: 656caa9c0032003915f002e9c99db9628a4bd8bfb923206a28b473d717d9a82696395248a780da1c468f41bef7c9f15a4c917cbfa035f5ebe4cf72444d112590
7
- data.tar.gz: d2738249859b0bb30dea6a4658e29bdab89bae01667bfe9eea8236b75657fe89a55e72f48bbf7bed8e14c481660a95f82726fa61a2d61fd4ce74c0cce2573321
6
+ metadata.gz: 640f155a2531637845966161bc71ff6f0d5c9f3c9bd4ebb2ebf841c8e472e481290e6214dcbfce4437cf8ce9f6d4878533d52deec647425b4d9e24d026043abe
7
+ data.tar.gz: 69d24276197c67f7d76f2729321632e3d6e17646bf362996825fb24d3dad012d78abff187cb4014fb27beac52e4949ec4bd9650b18fa2a51b29d39cbed4480ae
data/README.md CHANGED
@@ -28,13 +28,17 @@ require "slack"
28
28
  # create RPC client object with OAuth token
29
29
  client = Slack::RPC::Client.new("xxxx-xxxxxxxxx-xxxx")
30
30
 
31
+ # or you can set OAuth token after initialization
32
+ client = Slack::RPC::Client.new()
33
+ client.token = "yyyy-yyyyyyyyy-yyyy"
34
+
31
35
  # execute RPC command and retrieve response
32
36
  client.channels.archive(:channel => "C1234567890") do |response|
33
37
  # your own code
34
38
  end
35
39
 
36
40
  # or you can get response as returned object
37
- response = client.channels.unarchive(:channel => "C1234567890")
41
+ response = client.channels.archive(:channel => "C1234567890")
38
42
  # your own code
39
43
  ```
40
44
 
@@ -13,23 +13,39 @@ module Slack
13
13
  # Creates a new instance of `Slack::RPC::Client` class
14
14
  #
15
15
  def initialize(token = nil)
16
- conn = Connection.new(token)
17
- define_command(conn, "api", %w{test})
18
- define_command(conn, "auth", %w{test})
19
- define_command(conn, "channels", %w{archive create history info invite join kick leave list mark rename setPurpose setTopic unarchive})
20
- define_command(conn, "chat", %w{delete postMessage update})
21
- define_command(conn, "emoji", %w{list})
22
- define_command(conn, "files", %w{info list upload})
23
- define_command(conn, "groups", %w{archive close create createChild history invite kick leave list mark open rename setPurpose setTopic unarchive})
24
- define_command(conn, "im", %w{close history list mark open})
25
- define_command(conn, "oauth", %w{access})
26
- define_command(conn, "rtm", %w{start})
27
- define_command(conn, "search", %w{all files messages})
28
- define_command(conn, "stars", %w{list})
29
- define_command(conn, "users", %w{getPresence info list setActive setPresence})
16
+ @conn = Connection.new(token)
17
+ define_command(@conn, "api", %w{test})
18
+ define_command(@conn, "auth", %w{test})
19
+ define_command(@conn, "channels", %w{archive create history info invite join kick leave list mark rename setPurpose setTopic unarchive})
20
+ define_command(@conn, "chat", %w{delete postMessage update})
21
+ define_command(@conn, "emoji", %w{list})
22
+ define_command(@conn, "files", %w{info list upload})
23
+ define_command(@conn, "groups", %w{archive close create createChild history invite kick leave list mark open rename setPurpose setTopic unarchive})
24
+ define_command(@conn, "im", %w{close history list mark open})
25
+ define_command(@conn, "oauth", %w{access})
26
+ define_command(@conn, "rtm", %w{start})
27
+ define_command(@conn, "search", %w{all files messages})
28
+ define_command(@conn, "stars", %w{list})
29
+ define_command(@conn, "users", %w{getPresence info list setActive setPresence})
30
30
  end
31
31
 
32
- # ### Slack::RPC::Client::define_command(conn, name, sub_commands)
32
+ # ### Slack::RPC::Client.token()
33
+ # get current token
34
+ #
35
+ def token
36
+ @conn.token
37
+ end
38
+
39
+ # ### Slack::RPC::Client.token=(token)
40
+ # set new token
41
+ #
42
+ def token=(token)
43
+ @conn.token = token
44
+ end
45
+
46
+ private
47
+
48
+ # ### Slack::RPC::Client.define_command(conn, name, sub_commands)
33
49
  # Create `Slack::RPC::Command` object and store it as instance variable and expose it
34
50
  #
35
51
  def define_command(conn, name, sub_commands)
@@ -10,6 +10,8 @@ module Slack
10
10
  #
11
11
  class Connection
12
12
 
13
+ attr_accessor :token
14
+
13
15
  # ### Slack::RPC::Connection.BASE_URL
14
16
  # A base url to invoke Slack RPC-Style command
15
17
  #
@@ -44,6 +46,8 @@ module Slack
44
46
  end
45
47
  end
46
48
 
49
+ private
50
+
47
51
  # ### Slack::RPC::Connection.connection
48
52
  # retrieve Faraday Connection object
49
53
  #
data/lib/slack/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Slack
2
- VERSION = "1.0.1"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -2,8 +2,12 @@ require "spec_helper"
2
2
 
3
3
  describe Slack::RPC::Client do
4
4
 
5
+ before do
6
+ @base_url = "https://slack.com/api/api.test"
7
+ end
8
+
5
9
  it "should have requested with Accept header" do
6
- stub = stub_request(:get, "https://slack.com/api/api.test")
10
+ stub = stub_request(:get, @base_url)
7
11
  client = Slack::RPC::Client.new()
8
12
  client.api.test()
9
13
  expect(stub.
@@ -11,7 +15,7 @@ describe Slack::RPC::Client do
11
15
  end
12
16
 
13
17
  it "should have requested with User-Agent header" do
14
- stub = stub_request(:get, "https://slack.com/api/api.test")
18
+ stub = stub_request(:get, @base_url)
15
19
  client = Slack::RPC::Client.new()
16
20
  client.api.test()
17
21
  expect(stub.
@@ -19,15 +23,32 @@ describe Slack::RPC::Client do
19
23
  end
20
24
 
21
25
  it "should have requested with URL-encoded query parameter" do
22
- stub = stub_request(:get, "https://slack.com/api/api.test?foo=this+is+test")
26
+ stub = stub_request(:get, @base_url).with(:query => {"foo" => "this is test & spec"})
23
27
  client = Slack::RPC::Client.new()
24
- client.api.test(:foo => "this is test")
28
+ client.api.test(:foo => "this is test & spec")
25
29
  expect(stub).to have_been_made
26
30
  end
27
31
 
32
+ it "can set token at initialization" do
33
+ client = Slack::RPC::Client.new("0123456789")
34
+ expect(client.token).to eq("0123456789")
35
+ end
36
+
37
+ it "can set token after initialization" do
38
+ client = Slack::RPC::Client.new()
39
+ expect(client.token).to eq(nil)
40
+ client.token = "0123456789"
41
+ expect(client.token).to eq("0123456789")
42
+ end
43
+
44
+ it "can get token" do
45
+ client = Slack::RPC::Client.new("0123456789")
46
+ expect(client.token).to eq("0123456789")
47
+ end
48
+
28
49
  context "with token" do
29
50
  it "should have requested with token" do
30
- stub = stub_request(:get, "https://slack.com/api/api.test?token=0123456789")
51
+ stub = stub_request(:get, @base_url).with(:query => {"token" => "0123456789"})
31
52
  client = Slack::RPC::Client.new("0123456789")
32
53
  client.api.test()
33
54
  expect(stub).to have_been_made
@@ -36,7 +57,7 @@ describe Slack::RPC::Client do
36
57
 
37
58
  context "without token" do
38
59
  it "should have requested without token" do
39
- stub = stub_request(:get, "https://slack.com/api/api.test")
60
+ stub = stub_request(:get, @base_url)
40
61
  client = Slack::RPC::Client.new()
41
62
  client.api.test()
42
63
  expect(stub).to have_been_made
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - morou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-24 00:00:00.000000000 Z
11
+ date: 2014-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday