🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

activeadmin_json_editor

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

activeadmin_json_editor

bundlerRubygems
Version
0.0.10
Version published
Maintainers
1
Created
Source

ActiveAdmin::JsonEditor

Gem Version

"json_input" and "jsonb_input" field type to active_admin that allow to edit Postgresql json and jsonb values as json tree. Data shown by using jsoneditor.js from http://jsoneditoronline.org

Installation

Add this line to your application's Gemfile:

gem 'activeadmin_json_editor', '~> 0.0.10'

And then execute:

$ bundle

Include styles in "active_admin" initializer

config.register_stylesheet 'active_admin/json_editor.css'

Include javascripts in "active_admin" initializer

config.register_javascript 'active_admin/json_editor.js'

Usage

This Gem provides you formtastic input called :json to edit json data and parse form data for store it

ActiveAdmin.register User do
  permit_params :settings

  json_editor

  # specify the type does not necessarily
  form do |f|
    f.inputs do
      f.input :settings, as: :json
      f.input :other_settings, as: :jsonb
    end

    f.actions
  end
end

Contributing

  • Fork it ( http://github.com/allanbreyes/activeadmin_json_editor/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 08 Jul 2021

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