Project

gdpr

0.01
Low commit activity in last 3 years
No release in over a year
Adds a GDPR cookie consent and provides a simple checklist
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

GDPR

Helps getting your Rails app GDPR compliant

Installation

Add this line to your application's Gemfile:

gem 'gdpr'

And then execute:

$ bundle

Or install it yourself as:

$ gem install gdpr

Add this to layout:

  <%= render 'gdpr/cookie_consent' %>

Add this to javascripts:

//= require gdpr/cookie_consent

Add this to stylesheets:

@import 'gdpr/cookie_consent'

Set the privacy policy url in the locales.

Usage

This will display a cookie banner with both Validate & Reject buttons. You can force the re-display of the banner with a button/link including a .js-gdpr__cookie_consent__display_again class.

If you have a GTAG marker you should use it like this

<script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    if (Cookies.get('gdpr.cookie_consent.ok') !== 'true') {
      // Default ad_storage to 'denied'.
      gtag('consent', 'default', {
        'ad_storage': 'denied',
        'analytics_storage': 'denied'
      });
    }
    gtag('js', new Date());
    gtag('config', 'G-XXXXXXXX');
</script>

Checklist

https://www.eugdpr.org/

  • Cookie consent
  • Privacy policy
  • There must be an optin
  • Optin must be unchecked by default
  • Account must be deletable
  • Users must have access to their data
  • Users must be able to modify their data

Thanks

Inspired by cookies_eu (https://github.com/infinum/cookies_eu), thank you :)

Contributing

Feel free to pull request!

License

The gem is available as open source under the terms of the MIT License.