0.01
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
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.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Expressionui

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.

Installation

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'

Add to your application

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",

Contributing

  1. Fork it
  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