Polaris ViewComponents
Polaris ViewComponents is an implementation of the Polaris Design System using ViewComponent.
This library is under active development. Breaking changes are likely until stable release.
Preview
https://polarisviewcomponents.orgUsage
Render Polaris ViewComponents:<%= polaris_card(title: "Title") do %>
<p>Card example</p>
<% end %>
Dependencies
Installation
Add toGemfile
:gem "polaris_view_components"
Run installer:
bin/rails polaris_view_components:install
Development
To get started:- Run:
bundle install
- Run:
yarn install
- Run:
bin/dev
It will open demo app with component previews on
localhost:4000
. You can change components and they will be updated on page reload. Component previews located in demo/test/components/previews
.To run tests:
rake
Releases
The library follows semantic versioning. To draft a new release you need to runscript/release
with a new version number:bin/release VERSION
Where the VERSION is the version number you want to release. This script will update the version in the gem and push it to GitHub and Rubygems automatically.
To release a new version of npm package update the package.json file with the new version number and run:
npm run release
After that make sure to commit changes in package.json.