make_taggable 0.6.5 → 0.6.6
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 +4 -4
- data/README.md +3 -9
- data/UPGRADING.md +1 -1
- data/lib/make_taggable/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 492754c144e670799533ba98bf6870d05451845d02ee347b0cca8ee8c4f7bc36
|
4
|
+
data.tar.gz: 2641b641d09c7a99ef706f6b446d568ddc1d9de24d9a7d1c9f007dafb5079288
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24385c88d803dd0b4d222b998b14f6b7f9e4f2f7e84b59dd7eacf0a3ba0739e35eacda6c9ef4238b27da342c12dc75ce42f714f1ed701f3f2a70d28d4ea0d7ed
|
7
|
+
data.tar.gz: bf6030ccd267d19db82a6b08072ded0740f6e9674faa05cb974053289438bcc144f7da6ac97ff875fc5be8f6f585d289739ae2a80f63250fefec7eb5f658b826
|
data/README.md
CHANGED
@@ -11,16 +11,10 @@ For the PostgreSQL users, this is not an issue, but if you have an app or gem th
|
|
11
11
|
|
12
12
|
## Installation
|
13
13
|
|
14
|
-
To use
|
15
|
-
|
16
|
-
```ruby
|
17
|
-
gem "make_taggable", "~> 0.6.0"
|
18
|
-
```
|
19
|
-
|
20
|
-
and bundle:
|
14
|
+
To use make_taggable, run the followng from the root of your application:
|
21
15
|
|
22
16
|
```shell
|
23
|
-
bundle
|
17
|
+
bundle add make_taggable
|
24
18
|
```
|
25
19
|
|
26
20
|
#### Post Installation
|
@@ -47,7 +41,7 @@ MakeTaggable.force_binary_collation = true
|
|
47
41
|
Or by running this rake task:
|
48
42
|
|
49
43
|
```shell
|
50
|
-
rails
|
44
|
+
rails make_taggable_engine:tag_names:collate_bin
|
51
45
|
```
|
52
46
|
|
53
47
|
See the Configuration section for more details.
|
data/UPGRADING.md
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: make_taggable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Kennedy
|
@@ -270,7 +270,7 @@ metadata: {}
|
|
270
270
|
post_install_message: |
|
271
271
|
When upgrading run the migrations generator
|
272
272
|
|
273
|
-
rails
|
273
|
+
rails make_taggable_engine:install:migrations
|
274
274
|
|
275
275
|
This will create any new migrations and skip existing ones
|
276
276
|
rdoc_options: []
|