Skip to content

Commit ebf63f6

Browse files
authored
Merge pull request #118 from line/use-readme-template
Use README template
2 parents 4aade45 + 86fbe21 commit ebf63f6

File tree

1 file changed

+52
-28
lines changed

1 file changed

+52
-28
lines changed

README.md

Lines changed: 52 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,37 @@
1-
# Line::Bot::API
1+
# LINE Messaging API SDK for Ruby
22

33
[![Gem-version](https://img.shields.io/gem/v/line-bot-api.svg)](https://rubygems.org/gems/line-bot-api) [![Build Status](https://travis-ci.org/line/line-bot-sdk-ruby.svg?branch=master)](https://travis-ci.org/line/line-bot-sdk-ruby)
44

55

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.
78

8-
## About the LINE Messaging API
9+
## Documentation
910

10-
See the official API reference documentation for more information.
11+
See the official API documentation for more information
1112

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+
```
1335

1436
## Synopsis
1537

@@ -58,34 +80,36 @@ post '/callback' do
5880
end
5981
```
6082

61-
## Installation
83+
## Help and media
84+
FAQ: https://developers.line.biz/en/faq/
6285

63-
Add this line to your application's Gemfile:
86+
Community Q&A: https://www.line-community.me/questions
6487

65-
```ruby
66-
gem 'line-bot-api'
67-
```
88+
News: https://developers.line.biz/en/news/
6889

69-
And then execute:
90+
Twitter: @LINE_DEV
7091

71-
$ bundle
92+
## Versioning
93+
This project respects semantic versioning.
7294

73-
Or install it yourself as:
95+
See https://semver.org/
7496

75-
$ gem install line-bot-api
97+
## Contributing
98+
Please check [CONTRIBUTING](contributing.md) before making a contribution.
7699

77100
## 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

Comments
 (0)