
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
= mongoid-simple-tags {}[http://travis-ci.org/chebyte/mongoid-simple-tags] {
}[https://codeclimate.com/github/chebyte/mongoid-simple-tags] {
}[http://badge.fury.io/rb/mongoid-simple-tags]
mongoid-simple-tags is a basic and simple tagging system for mongoid using map-reduce function (no backwards compatibility with mongoid v2!)
== Install
Add the following to Gemfile:
gem "mongoid-simple-tags", "0.1.2"
== Usage
=== Model
class User include Mongoid::Document include Mongoid::Document::Taggable end
=== Console
u = User.create(:name => "Tuquito", tag_list: "linux, tucuman, free software")
u.tags # => ["linux","tucuman","free software"]
User.tagged_with("linux") # => [u] User.tagged_with(["tucuman", "free software"]) # => [u] User.tagged_with(["linux", "foo"]) # => [u]
User.tagged_with_all(["linux"]) # => [u] User.tagged_with_all(["linux", "foo"]) # => []
u2 = User.new(:name => "ubuntu") u2.tag_list = "linux" u2.save
User.tagged_with("linux") # => [u, u2] User.tagged_with(["linux", "tucuman"]) # => [u, u2]
User.tagged_with_all(["linux", "tucuman"]) # => [u]
User.all_tags #=>[{:name=>"free software", :count=>1}, {:name=>"linux", :count=>2}, {:name=>"tucuman", :count=>1}]
User.tag_list #=>["free software", "linux", "tucuman"]
== Give back
If you're using mongoig-simple-tags and you or your company is making money from it, then please consider donating via {Gittip}[https://www.gittip.com/chebyte/] so that I can continue to improve it.
{}[https://www.gittip.com/chebyte/]
== Copyright
Copyright (c) 2011 chebyte(mauro torres). See LICENSE.txt for further details.
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.