Bootstrap-WYSIWYG - Tiny bootstrap-compatible WYSIWYG rich text editor

Bootstrap-WYSIWYG is a tiny bootstrap-compatible WYSIWYG rich text editor.   Bootstrap-WYSIWYG - Features: Automatically binds standard hotkeys for common operations on Mac and Windows Drag and drop files to insert images, support image upload (also taking photos on mobile devices) Allows a custom built toolbar, no magic markup generators, enabling the web site to use all the goodness of Bootstrap, Font Awesome and so on... Does not force any styling - it's all up to you Uses standard bro

Pace - An automatic web page progress bar

Pace automatically adds a progress bar to your site. It will monitor your Ajax requests, event loop lag, document ready state and elements on your page to decide on the progress.  

Jump To - Create a smooth jump to sub navigational menu

Jump To is a plugin that let you create a jump to sub navigational menu automatically with 1 line of JS call. The menu can be used to assist your navigation for pages with a lot of content.  

abbrev

abbrev(words, pattern = nil) Class Public methods Given a set of strings, calculate the set of unambiguous abbreviations for those strings, and return a hash where the keys are all the possible abbreviations and the values are the full strings. Thus, given words is âcarâ and âconeâ, the keys pointing to âcarâ would be âcaâ and âcarâ, while those pointing to âconeâ would be âcoâ, âconâ, and âconeâ. require 'abbrev' Abbrev.abbrev(['car', 'cone']) #=> {"ca"=>"car", "con"=>"c

new

new(str) Class Public methods Creates a new entry using str. str may be â*â or âallâ to match any address, an IP address string to match a specific address, an IP address mask per IPAddr, or one containing â*â to match part of an IPv4 address.

match

match(addr) Instance Public methods Matches addr against this entry.

new

new() Class Public methods Creates an empty ACLList

add

add(str) Instance Public methods Adds str as an ACLEntry in this list

match

match(addr) Instance Public methods Matches addr against each ACLEntry in this list.

new

new(list=nil, order = DENY_ALLOW) Class Public methods Creates a new ACL from list with an evaluation order of DENY_ALLOW or ALLOW_DENY. An ACL list is an Array of âallowâ or âdenyâ and an address or address mask or âallâ or â*â to match any address: %w[ deny all allow 192.0.2.2 allow 192.0.2.128/26 ]