Skip to content

omgitsads/mongotagger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MongoTagger

Tagging plugin for MonogoMapper

Install

sudo gem install mongo_tagger

Dependencies

  • MongoMapper - 0.6.1

Usage

class Post
  include MonogoMapper::Document
  include MongoTagger
  key :title, String, :required => true
end

post = Post.create(:title => "Hello There!")
post.tag_list = "monogomapper, is, awesome"
post.save

Post.find_tagged_with("mongomapper")
Post.find_tagged_with("mongomapper, awesome")
Post.find_tagged_with(["mongomapper","is","awesome"])

About

Tagging Plugin for MongoMapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages