Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

activeadmin_hstore_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_hstore_editor

  • 0.0.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

ActiveAdmin::HstoreEditor

"hstore_input" field type to active_admin that allow to edit Postgresql hstore 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_hstore_editor'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activeadmin_hstore_editor

Include styles in "active_admin.css.scss"

*= require active_admin/hstore_editor

Include javascripts in "active_admin.js"

//= require active_admin/hstore_editor

Usage

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

ActiveAdmin.register User do
	permit_params :settings

	hstore_editor

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

    f.actions
  end
end

If you add validation for hstore keys and want to see validation error in active admin

  form do |f|
    f.semantic_errors *f.object.errors.keys
    f.inputs
    f.actions
  end

Contributing

  1. Fork it ( http://github.com/wild-ex/activeadmin_hstore_editor/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 06 Dec 2014

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc