A gem including base styles and javascript for Code for America products, for use in Rails applications.
View the current version of the styleguide at https://cfa-styleguide.herokuapp.com.
We are not currently seeking contributions from the public.
If you have any thoughts or questions about the project, get in touch at [email protected] or the #cfa-design-toolkit channel in the Code for America Slack.
Add this line to your application's Gemfile:
gem 'cfa-styleguide', git: 'https://github.com/codeforamerica/cfa-styleguide-gem'And then execute:
$ bundle
Or install it yourself as:
$ gem install cfa-styleguide
-
Add
@import 'cfa_styleguide_main';to application.scss. -
Add
//= require cfa_styleguide_mainto application.js. -
Add
mount Cfa::Styleguide::Engine => "/cfa"to routes.rb. -
Visit any of the following routes to view the styleguides:
`<your hostname>/cfa/styleguide` `<your hostname>/cfa/styleguide/cbo-dashboard` `<your hostname>/cfa/styleguide/cbo-analytics` `<your hostname>/cfa/styleguide/current` `<your hostname>/cfa/styleguide/custom-docs` -
(Optional) To override the styleguide's variables (e.g. use
#000000for$color-backgroundrather than as defined in the gem), require your own file that redefines the variables in your application.scss like so:@import 'my_variable_file' @import 'cfa_styleguide_main'
-
(Optional) To use variables provided by the style guide gem remove
require_treedirectives from yourapplication.scssand use use@importstatements instead (from stack overflow)# do not use *= require_tree .
# use instead @import 'things_to_import'
After checking out the repo, run bin/setup to install dependencies. You must install Chromedriver to run tests; on MacOS with Homebrew, run brew bundle install
Run bin/rails s to start a webserver with a test app that has the engine mounted, then visit http://localhost:3000.
If the gem is being used in another project's Gemfile, the source can be locally overridden within the other project's Gemfile by running bundle config local.cfa-styleguide /path/to/cfa-styleguide-gem, and undone with bundle config --delete local.cfa-styleguide
To install this gem onto your local machine, run bundle exec rake install.
A small test suite is available—please add to it!
To run, run rake or rspec spec.
To release a new version, on master branch:
- Update the version number in
version.rbusing semantic versioning bundle installto update the Gemfile.lock- Generate a changelog using
bundle exec rake changelog. (Note: you will need to provide a Github token with public repo access). - Review, edit as necessary, and commit including the version update.
- Run
bundle exec rake release, which will create a git tag for the version, and push git commits and tags to Github. In the future, this will also push the.gemfile to rubygems.org.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in this project’s codebase, issue trackers, chat rooms and mailing lists is expected to follow the Code for America code of conduct.