Sha256: 52a90497e378bde56a022ce0870029bf921419c933f2fa9ab05b37c187f2c39b

Contents?: true

Size: 1.47 KB

Versions: 11

Compression:

Stored size: 1.47 KB

Contents

# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.1.0 - 2019-06-06
### Changed
- Added indentation cop, enforcing 2 space indentation.

  This allows Rubocop to automatically format code like this:
  
  ```ruby
  class Wizard
  def cast_spell
    # ...
  end
  end
  ```
  
  into this:
  
  ```ruby
  class Wizard
    def cast_spell
      # ...
    end
  end
  ```

## 5.0.0 - 2019-05-30
### Changed
- Enforce updating timestamps when changing Rails models.

## 4.1.0 - 2019-04-29
### Fixed
- Address errors from installing latest rubocop.

## 4.0.0 - 2019-04-23
### Added
- Added rubocop-vendor to enforce conventions on Rollbar usage.

## 3.1.1 - 2019-04-09
### Fixed
- Correctly require multiple dependencies.

## 3.0.5 - 2019-04-03
### Changed
- updated README

## 3.0.4 - 2019-03-06
### Changed
- Allow empty example group.

## 3.0.0 - 2019-02-26
### Changed
- Added rubocop-rspec to enforce good rspec hygiene. https://wealthsimple.quip.com/ywj9AznUePvo/HOWTO-ws-style-10-Rubocop-Upgrade-guide

## 2.0.0 - 2019-02-12
### Changed
- Use trailing dots for multiline chained method invocations. This prevents bugs when pasting Ruby snippets into REPLs.

## 0.4.7 - 2019-01-07
### Added
- Changelog file: human readable history.
- `data_schema.rb`, used by data-migrate gem is excluded by default.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ws-style-5.4.2 CHANGELOG.md
ws-style-5.4.1 CHANGELOG.md
ws-style-5.4.0 CHANGELOG.md
ws-style-5.3.1 CHANGELOG.md
ws-style-5.3.0 CHANGELOG.md
ws-style-5.2.5 CHANGELOG.md
ws-style-5.2.4 CHANGELOG.md
ws-style-5.2.2 CHANGELOG.md
ws-style-5.2.1 CHANGELOG.md
ws-style-5.2.0 CHANGELOG.md
ws-style-5.1.0 CHANGELOG.md