|
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 | +```ruby |
| 27 | +bundle |
| 28 | +``` |
| 29 | + |
| 30 | +Or install it yourself as: |
| 31 | + |
| 32 | +```sh |
| 33 | +gem install line-bot-api |
| 34 | +``` |
13 | 35 |
|
14 | 36 | ## Synopsis
|
15 | 37 |
|
@@ -58,34 +80,36 @@ post '/callback' do
|
58 | 80 | end
|
59 | 81 | ```
|
60 | 82 |
|
61 |
| -## Installation |
| 83 | +## Help and media |
| 84 | +FAQ: https://developers.line.biz/en/faq/ |
62 | 85 |
|
63 |
| -Add this line to your application's Gemfile: |
| 86 | +Community Q&A: https://www.line-community.me/questions |
64 | 87 |
|
65 |
| -```ruby |
66 |
| -gem 'line-bot-api' |
67 |
| -``` |
| 88 | +News: https://developers.line.biz/en/news/ |
68 | 89 |
|
69 |
| -And then execute: |
| 90 | +Twitter: @LINE_DEV |
70 | 91 |
|
71 |
| - $ bundle |
| 92 | +## Versioning |
| 93 | +This project respects semantic versioning. |
72 | 94 |
|
73 |
| -Or install it yourself as: |
| 95 | +See https://semver.org/ |
74 | 96 |
|
75 |
| - $ gem install line-bot-api |
| 97 | +## Contributing |
| 98 | +Please check [CONTRIBUTING](contributing.md) before making a contribution. |
76 | 99 |
|
77 | 100 | ## 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. |
| 101 | +``` |
| 102 | +Copyright (C) 2016 LINE Corp. |
| 103 | + |
| 104 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 105 | +you may not use this file except in compliance with the License. |
| 106 | +You may obtain a copy of the License at |
| 107 | + |
| 108 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 109 | + |
| 110 | +Unless required by applicable law or agreed to in writing, software |
| 111 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 112 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 113 | +See the License for the specific language governing permissions and |
| 114 | +limitations under the License. |
| 115 | +``` |
0 commit comments