teratail-sdk-ruby 0.1.0 → 0.1.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: 0962e9367338022be3a444cea54aaae00cd5e9c2
4
- data.tar.gz: 7725e64d85bdfd6c74566c132f2a014c3658dd49
3
+ metadata.gz: 9126daa31cded7781a57c7af49e3445a45c169a0
4
+ data.tar.gz: e271b533c1d40e0c8dd8aee4115c15e1c92624e2
5
5
  SHA512:
6
- metadata.gz: b59faf843022558d0a8240051e292ef57f7fcaf7964b83944a68046d3ab190b01ce4558a852e0e33c2462c8290cb74fb0d3080d57410ff87e988685a720a5d05
7
- data.tar.gz: 9fd7de6ae0d9f96c20d3cd4dec76afc27c7af82752f13832dedf3c11cbd0d3b4bd2b5bb0d417286b40d84fff26ab25b57bef4264e4b81ca28370fa6bf7d8afaf
6
+ metadata.gz: 43f0db2c5a2ba55551c579fa40cac17eeb1eb0c59b7d495dff4bb6aa49905e64eff52d79012eca59939711b460080ade87c336f0ac7b80c88bbf7d51bd8c89c8
7
+ data.tar.gz: 62841e371e6a22a8d454d8ad70163da265e495e1c1263cb3dbc96fdc50eb5c24c7bb5b5e3d3b208638cc94a54261b00e601294016ec278a568c2712481f5351d
data/README.md CHANGED
@@ -1,2 +1,42 @@
1
1
  # teratail-sdk-ruby
2
- teratail-sdk-ruby
2
+
3
+ sdk which call apis of Programming Q&A Site [Teratail](https://teratail.com/)
4
+
5
+ You Can Develop an awesome web service which uses teratail's api more rapidly.
6
+
7
+ ## notice
8
+ This is unofficial sdk.
9
+
10
+ ## install
11
+
12
+ Write your Gemfile
13
+
14
+ ```
15
+ gem 'teratail-sdk-ruby'
16
+ ```
17
+
18
+ ## usage
19
+
20
+ ```Ruby
21
+ client = Teratail.new(access_token) #input your access token
22
+
23
+ # get questions
24
+ client.question.find_all
25
+
26
+ # with paging and array limit option
27
+ client.question.find_all(2,30) #you can get 2 page and 30 question array element
28
+
29
+ # get tags
30
+ client.tag.find_all
31
+ # get users
32
+ client.user.find_all
33
+
34
+ ```
35
+
36
+
37
+ # rule
38
+ This library's license is MIT.You can alter or reproduct this.
39
+ Please follow [teratail service api term](https://teratail.com/legal) when you use.
40
+
41
+ # official document
42
+ [Teratail API Document](http://docs.teratailv1.apiary.io/#introduction)
@@ -1,3 +1,3 @@
1
1
  module TeratailSdkRuby
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -1,3 +1,3 @@
1
1
  module TeratailSdkRuby
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teratail-sdk-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yohira0616