Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
  app
  config
  lib
  spec
  vendor
  MIT-LICENSE
  README.md
  Rakefile
Size: Mime:
  README.md

JUikit

Dependencies

UIKit depends on bower to manage its assets dependency. Make sure you have bower installed on your computer. On a Mac, it's probably just:

brew install nodejs # follow on screen instructions after for PATH modification
npm -g install bower

Installation

Add this to your Gemfile (assuming rails 4) and bundle

gem 'j-uikit', git: "git://gitlab.jugnoo.com:apps/j-uikit-gem.git"

Then copy contents of bower.json into your app's bower.json and run rake bower:install in your app. You may change the version dependencies as necessary.

Include UIKit into your application

Include UIKit into your application directly through javascript_include_tag and stylesheet_link_tag. UIKit has been configured to build independently using the Rails assets pipeline.

Note: In previous versions of UIKit, we allow you to mix uikit into your application css and js. This is no longer supported.

Using UIKit SASS mixins

UIkit provide many SASS mixins for you to use in your application. These mixins are all available under the j-ui-kit/mixins directory. To include all mixins, simple declare the following at the top of your SASS file:

@import "j-ui-kit/mixins/all";