genki-dm-is-taggable 0.1.1 → 0.1.2
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/lib/dm-is-taggable/is/version.rb +1 -1
- data/lib/dm-is-taggable.rb +2 -2
- metadata +1 -1
data/lib/dm-is-taggable.rb
CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
|
|
3
3
|
require 'pathname'
|
4
4
|
|
5
5
|
# Add all external dependencies for the plugin here
|
6
|
-
gem 'dm-core', '
|
6
|
+
gem 'dm-core', '>=0.9.6'
|
7
7
|
gem 'dm-aggregates', '>=0.9.6'
|
8
8
|
require 'dm-core'
|
9
9
|
require 'dm-aggregates'
|
@@ -28,4 +28,4 @@ end # module DataMapper
|
|
28
28
|
|
29
29
|
# Require the Tag and Tagging Resources
|
30
30
|
require Pathname(__FILE__).dirname.expand_path / 'dm-is-taggable' / 'tag.rb'
|
31
|
-
require Pathname(__FILE__).dirname.expand_path / 'dm-is-taggable' / 'tagging.rb'
|
31
|
+
require Pathname(__FILE__).dirname.expand_path / 'dm-is-taggable' / 'tagging.rb'
|