Skip to content

Commit 142bc23

Browse files
committed
Correct version of acts as taggable on
1 parent 4a9c30f commit 142bc23

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ gem 'refinerycms', '= 0.9.7.10'
5454
# gem "refinerycms-news", "~> 0.9.7.3", :require => "news"
5555
# gem "refinerycms-portfolio", "~> 0.9.6", :require => "portfolio"
5656
gem 'albino'
57-
gem 'acts-as-taggable-on'
57+
gem 'acts-as-taggable-on', '2.0.0.rc1'

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
hash: 6566cd107e8a0e19c97adc364217d233123738e4
2+
hash: 777a5c743d94c2afa2d428e20b28e78c9e946a29
33
sources:
44
- Git:
55
require: json/pure
@@ -25,7 +25,7 @@ specs:
2525
- activeresource:
2626
version: 2.3.8
2727
- acts-as-taggable-on:
28-
version: 2.0.6
28+
version: 2.0.0.rc1
2929
- acts_as_indexed:
3030
version: 0.6.3
3131
- albino:
@@ -209,6 +209,6 @@ dependencies:
209209
group:
210210
- :default
211211
acts-as-taggable-on:
212-
version: ">= 0"
212+
version: = 2.0.0.rc1
213213
group:
214214
- :default

vendor/plugins/tutorials/app/models/tutorial.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ class Tutorial < ActiveRecord::Base
33
CATEGORIES = %w(Beginner Intermediate Advanced)
44

55
acts_as_indexed :fields => [:title, :description, :category, :author, :content]
6+
acts_as_taggable
67

78
alias_attribute :level, :category
89

0 commit comments

Comments
 (0)