Style for Belly
Import modules with this path in your Sass files:
@import 'bower_components/rolodex/assets/stylesheets/rolodex';
Add to your Gemfile
:
gem 'rolodex'
Import modules to your Sass files:
@import 'rolodex'
Rolodex uses Gulp to build and minify assets. Before you release an updated version, make sure to run:
gulp build
Rolodex uses semver for versioning. Bower will pick up new releases by the tags.
- Run
$ gulp build
to create the minified files - Bump
VERSION
in rolodex/lib/rolodex/version.rb - Commit the minified files and version bump (
$ git commit -am 'Release v4.2.0'
) - Create a new git tag with the (
$ git tag v4.2.0
) - Push the git tag (
$ git push --tags
) - Build the new gemspec (
$ gem build rolodex.gemspec
) - Push to rubygems.org (
$ gem push rolodex-4.2.0.gem
)