A set of small JavaScript and SASS plugins that are designed to be reusable and enhance your UI. Ready to play with the Rails Asset Pipeline for faster and easier web development.
Add this line to your application's Gemfile:
gem 'expressionui', :git => 'https://github.com/jasoncypret/expressionUI.git'
NOTE: We're updating constantnly and rarely do releases.
Next execute:
$ bundle
Or install it yourself as:
$ gem install 'https://github.com/jasoncypret/expressionUI.git'
To require all UI modules, add the following to your application.js:
//= require expressionui.all.js
Also add the expressionui sass to your application.css.sass:
@import expressionui
##Require Specific Modules
If you don't need all the awesomeness just bring in what you'd like
###JavaScript
//= require expressionui.popover.js
//= require expressionui.notify.js
//= require expressionui.modal.js
###SASS
@import expressionui/variables
@import expressionui/helpers
@import expressionui/notifications
@import expressionui/modals
@import expressionui/forms
@import expressionui/popover
@import expressionui/boilerplate
@import expressionui/class_helpers
@import expressionui/post_style
###Fix for Rails 4.0
add this line above expressionuiin your gemfile. This is a temporary fix untill the pull request is complete:
gem 'animate.sass-rails', :git => 'git://github.com/jasoncypret/animate.sass-rails.git'
####Node Support We've starting playing around with node. We've made it so you can use this gem in your node projects. Just include the github repo and path to the sass files in you application. If there's greater interest we will make a standalone node package.
"expressionUI": "git://github.com/jasoncypret/expressionUI.git",
- 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