|
1 |
| -# Line::Bot::API |
| 1 | +# LINE Messaging API SDK for Ruby |
2 | 2 |
|
3 | 3 | [](https://rubygems.org/gems/line-bot-api) [](https://travis-ci.org/line/line-bot-sdk-ruby)
|
4 | 4 |
|
5 | 5 |
|
6 |
| -Line::Bot::API - SDK of the LINE Messaging API for Ruby. |
| 6 | +## Introduction |
| 7 | +The LINE Messaging API SDK for Ruby makes it easy to develop bots using LINE Messaging API, and you can create a sample bot within minutes. |
7 | 8 |
|
8 |
| -## About the LINE Messaging API |
| 9 | +## Documentation |
9 | 10 |
|
10 |
| -See the official API reference documentation for more information. |
| 11 | +See the official API documentation for more information |
11 | 12 |
|
12 |
| -https://developers.line.me/en/docs/messaging-api/reference/ |
| 13 | +- English: https://developers.line.biz/en/docs/messaging-api/overview/ |
| 14 | +- Japanese: https://developers.line.biz/ja/docs/messaging-api/overview/ |
| 15 | + |
| 16 | +## Installation |
| 17 | + |
| 18 | +Add this line to your application's Gemfile: |
| 19 | + |
| 20 | +```ruby |
| 21 | +gem 'line-bot-api' |
| 22 | +``` |
| 23 | + |
| 24 | +And then execute: |
| 25 | + |
| 26 | + $ bundle |
| 27 | + |
| 28 | +Or install it yourself as: |
| 29 | + |
| 30 | + $ gem install line-bot-api |
13 | 31 |
|
14 | 32 | ## Synopsis
|
15 | 33 |
|
@@ -58,34 +76,36 @@ post '/callback' do
|
58 | 76 | end
|
59 | 77 | ```
|
60 | 78 |
|
61 |
| -## Installation |
| 79 | +## Help and media |
| 80 | +FAQ: https://developers.line.biz/en/faq/ |
62 | 81 |
|
63 |
| -Add this line to your application's Gemfile: |
| 82 | +Community Q&A: https://www.line-community.me/questions |
64 | 83 |
|
65 |
| -```ruby |
66 |
| -gem 'line-bot-api' |
67 |
| -``` |
| 84 | +News: https://developers.line.biz/en/news/ |
68 | 85 |
|
69 |
| -And then execute: |
| 86 | +Twitter: @LINE_DEV |
70 | 87 |
|
71 |
| - $ bundle |
| 88 | +## Versioning |
| 89 | +This project respects semantic versioning. |
72 | 90 |
|
73 |
| -Or install it yourself as: |
| 91 | +See http://semver.org/ |
74 | 92 |
|
75 |
| - $ gem install line-bot-api |
| 93 | +## Contributing |
| 94 | +Please check [CONTRIBUTING](contributing.md) before making a contribution. |
76 | 95 |
|
77 | 96 | ## License
|
78 |
| - |
79 |
| - Copyright (C) 2016 LINE Corporation. |
80 |
| - |
81 |
| - Licensed under the Apache License, Version 2.0 (the "License"); |
82 |
| - you may not use this file except in compliance with the License. |
83 |
| - You may obtain a copy of the License at |
84 |
| - |
85 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
86 |
| - |
87 |
| - Unless required by applicable law or agreed to in writing, software |
88 |
| - distributed under the License is distributed on an "AS IS" BASIS, |
89 |
| - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
90 |
| - See the License for the specific language governing permissions and |
91 |
| - limitations under the License. |
| 97 | +``` |
| 98 | +Copyright (C) 2016 LINE Corp. |
| 99 | + |
| 100 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 101 | +you may not use this file except in compliance with the License. |
| 102 | +You may obtain a copy of the License at |
| 103 | + |
| 104 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 105 | + |
| 106 | +Unless required by applicable law or agreed to in writing, software |
| 107 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 108 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 109 | +See the License for the specific language governing permissions and |
| 110 | +limitations under the License. |
| 111 | +``` |
0 commit comments