mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
* initial commit
* adding quotes for the array error
* Create Gemfile
* Create Gemfile.lock
* add .nvmrc and .node-version
* removed /article from URL
* update links to work with netlify
* more fixed links
* link fixes
* update bad links
* Update netlify.toml
toml test for redirects
* article redirect
* link fixes
* Update index.html
* Update netlify.toml
* Update _config.yml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* add article back into URL for launch
* Update netlify.toml
* Update netlify.toml
* add order to categories front matter
* Update netlify.toml
* update
* sidemenu update
* Revert "sidemenu update"
This reverts commit 5441c3d35c.
* update order prop
* Navbar updates per Gary and compiler warnings
* font/style tweaks
* Update sidebar.html
* Stage Release Documentation (#739)
* initial drafts
* rewrite Custom Fields article to prioritize new context-menu option & better organize ancillary information
* edit
* edit
* Custom Field Context Menu & CAPTCHA item in release notes
* SSO relink event
* update rn
* small edits
* improve release notes titles
* fix side menu
* Edits courtest of mportune!
* update order
* link fixes
* link cleanup
* image updates and a link
* fix trailing slash
Co-authored-by: DanHillesheim <79476558+DanHillesheim@users.noreply.github.com>
SassC

Use libsass with Ruby!
This gem combines the speed of libsass, the Sass C implementation, with the ease of use of the original Ruby Sass library.
libsass Version
Installation
Add this line to your application's Gemfile:
gem 'sassc'
And then execute:
bundle
Or install it yourself as:
gem install sassc
Usage
This library utilizes libsass to allow you to compile SCSS or SASS syntax
to CSS. To compile, use a SassC::Engine, e.g.:
SassC::Engine.new(sass, style: :compressed).render
Note: If you want to use this library with Rails/Sprockets, check out sassc-rails.
Additionally, you can use SassC::Sass2Scss to convert Sass syntax to Scss syntax.
Credits
This gem is maintained by Ryan Boland and awesome contributors.
Changelog
See CHANGELOG.md.
Contributing
Project Setup
- Clone repo
- Install dependencies -
bundle install - Run the tests -
bundle exec rake test
Code Changes
- Fork it ( https://github.com/sass/sassc-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - try to include tests - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request