comment_me 0.1.0alpha → 0.1.1alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/comment_me/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6baa29f00200bd82232ed816437851fabce25e6d994c40ca83b98f88a4092e06
|
4
|
+
data.tar.gz: d93fd6a25223cc0db5b85457d59abd88ca1be154e2c39545fa283c48b6d80ef0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd5a3787bec239eb1df2cbfd1a5d8c667c80c72b4a015774ebbff8ff37425b97de7baa5c8132d17b4e2f12fa652366c6724ae6f7eca82b63423b681838cbcd02
|
7
|
+
data.tar.gz: e3594f67f22a06f1f5f509f3875259f1b6abc6d4827f972ee650896b8c945d0fd06a57d4807a0501abf67c3da2b66e9e6d40ed1782dd5d34c042164ef0675893
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Attached comments for ActiveRecord models
|
4
4
|
|
5
|
-
[![Build Status](https://travis-ci.org/Kinedu/comment_me.svg?branch=master)](https://travis-ci.org/Kinedu/comment_me)
|
5
|
+
[![Build Status](https://travis-ci.org/Kinedu/comment_me.svg?branch=master)](https://travis-ci.org/Kinedu/comment_me) [![Coverage Status](https://coveralls.io/repos/github/Kinedu/comment_me/badge.svg?branch=master)](https://coveralls.io/github/Kinedu/comment_me?branch=master)
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
Add this line to your application's Gemfile:
|
@@ -23,6 +23,12 @@ In the root directory:
|
|
23
23
|
$ rails generate comment_me
|
24
24
|
```
|
25
25
|
|
26
|
+
Then migrate the database:
|
27
|
+
|
28
|
+
```bash
|
29
|
+
$ rails db:migrate
|
30
|
+
``
|
31
|
+
|
26
32
|
## Usage
|
27
33
|
|
28
34
|
The plugin generates a comment structure mounted on ActiveRecord models. Comments can be associated with any model (any model can have the functionality).
|
data/lib/comment_me/version.rb
CHANGED