acts-as-taggable-on 4.0.0.pre → 4.0.0
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 +15 -16
- data/lib/acts_as_taggable_on/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ab1dc9bc4d03cd7fb2396284190f76719bc4a40
|
|
4
|
+
data.tar.gz: 8bbb5a13b5a1cc54aea59cb1ab6e524c31ea530c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 901d4fb2dd642138c9d8b918d49eee90a86a0ea78596c37753197583b8c4068c08068077e8917bacc0b43ff0272613002aab6670a437ef9ac98a90910f11e522
|
|
7
|
+
data.tar.gz: 6c0f2e8dc6157b6ea854f63456c4eaa9fc0c754d46dd419ad0a184dd76eb69c3f7486591dfe156d3a224918fcd8d81a13a90661503e216ff21730d98a5d59e52
|
data/README.md
CHANGED
|
@@ -19,22 +19,14 @@ Enter Acts as Taggable On. Rather than tying functionality to a specific keyword
|
|
|
19
19
|
tag "contexts" that can be used locally or in combination in the same way steroids
|
|
20
20
|
was used.
|
|
21
21
|
|
|
22
|
-
## Compatibility
|
|
23
|
-
|
|
24
|
-
Versions 2.x are compatible with Ruby 1.8.7+ and Rails 3.
|
|
25
|
-
|
|
26
|
-
Versions 2.4.1 and up are compatible with Rails 4 too (thanks to arabonradar and cwoodcox).
|
|
27
|
-
|
|
28
|
-
Versions >= 3.x are compatible with Ruby 1.9.3+ and Rails 3 and 4.
|
|
29
22
|
|
|
30
|
-
For an up-to-date roadmap, see https://github.com/mbleigh/acts-as-taggable-on/milestones
|
|
31
23
|
|
|
32
24
|
## Installation
|
|
33
25
|
|
|
34
26
|
To use it, add it to your Gemfile:
|
|
35
27
|
|
|
36
28
|
```ruby
|
|
37
|
-
gem 'acts-as-taggable-on', '~>
|
|
29
|
+
gem 'acts-as-taggable-on', '~> 4.0'
|
|
38
30
|
```
|
|
39
31
|
|
|
40
32
|
and bundle:
|
|
@@ -50,8 +42,6 @@ Install migrations
|
|
|
50
42
|
```shell
|
|
51
43
|
# For the latest versions :
|
|
52
44
|
rake acts_as_taggable_on_engine:install:migrations
|
|
53
|
-
# For versions 2.4.1 and earlier :
|
|
54
|
-
rails generate acts_as_taggable_on:migration
|
|
55
45
|
```
|
|
56
46
|
|
|
57
47
|
Review the generated migrations then migrate :
|
|
@@ -75,9 +65,6 @@ rake acts_as_taggable_on_engine:tag_names:collate_bin
|
|
|
75
65
|
See the Configuration section for more details, and a general note valid for older
|
|
76
66
|
version of the gem.
|
|
77
67
|
|
|
78
|
-
#### Upgrading
|
|
79
|
-
|
|
80
|
-
see [UPGRADING](UPGRADING.md)
|
|
81
68
|
|
|
82
69
|
## Usage
|
|
83
70
|
|
|
@@ -484,13 +471,25 @@ USE my_wonderful_app_db;
|
|
|
484
471
|
ALTER TABLE tags MODIFY name VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_bin;
|
|
485
472
|
```
|
|
486
473
|
|
|
474
|
+
#### Upgrading
|
|
475
|
+
|
|
476
|
+
see [UPGRADING](UPGRADING.md)
|
|
477
|
+
|
|
487
478
|
## Contributors
|
|
488
479
|
|
|
489
480
|
We have a long list of valued contributors. [Check them all](https://github.com/mbleigh/acts-as-taggable-on/contributors)
|
|
490
481
|
|
|
491
|
-
##
|
|
482
|
+
## Compatibility
|
|
483
|
+
|
|
484
|
+
Versions 2.x are compatible with Ruby 1.8.7+ and Rails 3.
|
|
485
|
+
|
|
486
|
+
Versions 2.4.1 and up are compatible with Rails 4 too (thanks to arabonradar and cwoodcox).
|
|
487
|
+
|
|
488
|
+
Versions >= 3.x are compatible with Ruby 1.9.3+ and Rails 3 and 4.
|
|
489
|
+
|
|
490
|
+
Versions >= 4.x are compatible with Ruby 2.0.0+ and Rails 4 and 5.
|
|
492
491
|
|
|
493
|
-
|
|
492
|
+
For an up-to-date roadmap, see https://github.com/mbleigh/acts-as-taggable-on/milestones
|
|
494
493
|
|
|
495
494
|
## TODO
|
|
496
495
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts-as-taggable-on
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.0
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Bleigh
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-08-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|
|
@@ -249,9 +249,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
249
249
|
version: 2.0.0
|
|
250
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
251
|
requirements:
|
|
252
|
-
- - "
|
|
252
|
+
- - ">="
|
|
253
253
|
- !ruby/object:Gem::Version
|
|
254
|
-
version:
|
|
254
|
+
version: '0'
|
|
255
255
|
requirements: []
|
|
256
256
|
rubyforge_project:
|
|
257
257
|
rubygems_version: 2.4.5.1
|