Sha256: 8530e6105ad4cca222b4322218cebe083b5c8a2237696de76b4cd66096f39fe9
Contents?: true
Size: 1.78 KB
Versions: 7
Compression:
Stored size: 1.78 KB
Contents
# ws-style [![CircleCI](https://circleci.com/gh/wealthsimple/ws-style.svg?style=svg)](https://circleci.com/gh/wealthsimple/ws-style) [![Gem Version](https://badge.fury.io/rb/ws-style.svg)](https://rubygems.org/gems/ws-style) Shared [rubocop](https://github.com/bbatsov/rubocop) config to enforce Ruby style consistently across Wealthsimple libraries and services. ## Installation Add this line to your application's Gemfile and execute `bundle`: ```ruby group :development, :test do gem 'ws-style' end ``` Or, for a rubygem, add this to your `gemspec`: ```ruby spec.add_development_dependency 'ws-style' ``` To update an existing installation, just run `bundle update ws-style`. ## Usage Create a `.rubocop.yml` with the following directives: ```yaml inherit_gem: ws-style: - default.yml AllCops: # Specify your target Ruby version here (only major/minor versions): TargetRubyVersion: 2.3 ``` Check if it works by running `bundle exec rubocop`. You can optionally override or specify additional style configurations in your `.rubocop.yml`, e.g.: ```yaml inherit_gem: ws-style: - default.yml AllCops: TargetRubyVersion: 2.4 Include: - 'db/**/*' Lint/RescueException: Enabled: false Style/HashSyntax: EnforcedStyle: hash_rockets ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
ws-style-0.4.7 | README.md |
ws-style-0.4.6 | README.md |
ws-style-0.4.2 | README.md |
ws-style-0.4.0 | README.md |
ws-style-0.2.0 | README.md |
ws-style-0.1.3 | README.md |
ws-style-0.1.2 | README.md |