Socket
Book a DemoInstallSign in
Socket

micoo

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

micoo

0.4.0
bundlerRubygems
Version published
Maintainers
1
Created
Source

Micoo

Gem Version GEM Downloads rake Ruby Style Guide MIT License

Micoo (minimal Cookie) is a Rails Engine handling the Cookie consent. Besides installing the gem just a minimal code is required (see Usage).

Micoo display a styled text including buttons for accepting, rejecting and customizing usage of cookies.

Clicking Accept set the cookie "cookiesOK" to "x", clicking Reject will delete the cookie, clicking Customize links to administration of cookies.

The cookie "cookiesOK" expires after one month.

Optional Parameter

Optional parameter for CookiesComponent.new(...) are:

text

Default is:

You may delete and block all cookies from this site, but parts of the site will not work.

Click Accept if you consent usage of cookies, otherwise click Reject.

Usage

# config/routes.rb
Rails.application.routes.draw do
  ...
  get "/cookies/accept"
  get "/cookies/reject"
  get "/cookies/customize
  ...
end
# app/controllers/application_controller.rb (recommended)
  ...
  before_action :always

  def always
    unless cookies[:cookiesOK] == "x"
      render CookiesComponent.new
    end
  end
  ...

Customize

The user should provide functionality for the Customize button.

Button Customize can be disabled/hidden by CSS.

I18n

You may provide an "internationalized" text via the text parameter.

Micoo buttons uses the I18n.translate method for the legends. A configuration file may contain:

# config/locales/en.yml
en:
  micoo:
    button:
      accept: Accept
      reject: Reject
      customize: Customize

Installation

As usual:

# Gemfile
gem "micoo"

and run "bundle install".

License

Copyright (c) 2024-2025 Dittmar Krall (www.matiq.com), released under the MIT license.

FAQs

Package last updated on 08 Jun 2025

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.