acts-as-taggable-on 2.0.2 → 2.0.3

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.2
1
+ 2.0.3
@@ -74,7 +74,7 @@ module ActsAsTaggableOn::Taggable
74
74
  scope[:conditions],
75
75
  start_at_conditions,
76
76
  end_at_conditions
77
- ].compact
77
+ ].compact.reverse
78
78
 
79
79
  ## Generate joins:
80
80
  tagging_join = "LEFT OUTER JOIN #{Tagging.table_name} ON #{Tag.table_name}.id = #{Tagging.table_name}.tag_id"
@@ -87,7 +87,7 @@ module ActsAsTaggableOn::Taggable
87
87
  tagging_join,
88
88
  taggable_join,
89
89
  scope[:joins]
90
- ].compact
90
+ ].compact.reverse
91
91
 
92
92
 
93
93
  ## Generate scope:
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 0
8
- - 2
9
- version: 2.0.2
8
+ - 3
9
+ version: 2.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Michael Bleigh