Sha256: f91ffadfb65caa40c62018d49866287de41453a3c4c9a99e934e9a604634e496

Contents?: true

Size: 1.69 KB

Versions: 2

Compression:

Stored size: 1.69 KB

Contents

<a href="https://rubygems.org/gems/fablicop"><img alt="fablicop" src="https://img.shields.io/gem/v/fablicop"></a>

# fablicop

fablicop is a RuboCop configration gem.
It assumes your project is using Ruby on Rails and RSpec, so some Cops prefixed with `Rails` and `RSpec` are enabled out of the box.
In other words, it's not appropriate to use it with non-Rails projects.

## Installation

You can install fablicop with this command:

```console
gem install fablicop
```

Or, run `bundle install` after adding this line to your application's Gemfile:

```ruby
gem 'fablicop', require: false
```

## Getting started

Set up `.rubocop.yml` with the command below.

```console
fablicop init
```

`init` generates the following directive to your `.rubocop.yml`:

```yaml
inherit_gem:
  fablicop:
    - "config/.base_rubocop.yml"
```

## Usage

After configuration, your RuboCop now sees fablicop's configuration. Just run `rubocop` as usual.

```console
rubocop
```

Or, prefix `bundle exec`.

```console
bundle exec rubocop
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Fablic/fablicop.

## Release

This Gem is configured to publish a new version via `.github/workflows/release.yml`. Follow these steps to publish a release:

1. Go to https://github.com/Fablic/fablicop/actions/workflows/release.yml
2. Click "Run workflow"
3. Input the new version **without "v"** (e.g., `1.10.3`)
4. Check "apply" (without "apply," this workflow performs without side-effects)
5. Click the "Run workflow" button
6. Make sure the new release is published on rubygegms.org


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fablicop-1.10.3 README.md
fablicop-1.10.2 README.md