New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

gridstack-js-rails

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gridstack-js-rails

0.2.6
Version published
Maintainers
1
Created

gridstack-js-rails

Wrap up the excellent gridstack.js javascript library. gridstack.js is a jQuery plugin for widget layout. This is drag-and-drop multi-column grid. It allows you to build draggable responsive bootstrap v3 friendly layouts.

gridstack.js github repository and documentation can be found here: [https://github.com/troolee/gridstack.js] (https://github.com/troolee/gridstack.js)

The gridstack-js-rails simply wrap up gridstack.js and its dependencies to ease integration in a rails project.

Installation

From rubygem

The gem allow easy installation for the latest stable version.

Add this line to your application's Gemfile:

gem 'gridstack-js-rails'

And then execute:

bundle

And restart your server

From github

Installing from github repository allow you to chose the version to install if the latest stable version does not suit your needs.

Add this line to your application's Gemfile:

# To add a specific version:
gem 'gridstack-js-rails', github: 'randoum/gridstack-js-rails', tag: 'v0.2.3'

# OR to use the latest development version:
gem 'gridstack-js-rails', github: 'randoum/gridstack-js-rails'

And then execute:

bundle

And restart your server

Dependencies

Default

By default gridstack-js-rails will include the following javascripts libraries:

  • lodash
  • jquery-ui: core, widget, mouse, draggable, and resizable modules
  • gridstack.js

Along with the following stylesheets files:

  • jquery-ui: core, draggable, and resizable modules
  • gridstack.js

To integrate gridstack.js and its default dependencies, add to your javascript manifest file:

//= require gridstack-js-rails

And add to your stylesheet manifest file:

/*
 *= require gridstack-js-rails
 */

With underscore.js

To integrate the default library but to use underscore.js in place of lodash, add to your javascript manifest file:

//= require gridstack-js-rails-underscore

And add to your stylesheet manifest file:

/*
 *= require gridstack-js-rails
 */

Without dependencies

If you want to integrate the dependencies manually, and need only the gridstack.js library, add to your javascript manifest file:

//= require gridstack/gridstack

And add to your stylesheet manifest file:

/*
 *= require gridstack/gridstack
 */

Gridstack extra css styles

You can also add the gridstack-extra css styles by adding to your stylesheet manifest file:

/*
 *= require gridstack/gridstack-extra
 */

Contributing

  • Fork it
  • 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 18 Sep 2016

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