rdp / os

The OS gem allows for some easy telling if you’re on windows or not. OS.windows? as well as some other helper utilities
MIT License
145 stars 33 forks source link

Rakefile Best Practices (& RuboCop) #72

Closed pboling closed 1 year ago

pboling commented 1 year ago

Stops requiring rubygems from within the rubygem.

Uses my rubocop-lts which includes pre-set definitions to ensure compatibility with Ruby 1.8 syntax.

inherit_gem:
  rubocop-lts: rubocop-lts1_8.yml

Result, after auto-correcting, manually fixing a few, and putting the rest into "todo":

Running RuboCop...
Inspecting 10 files
..........

10 files inspected, no offenses detected

Sits on top of #71

Fixes #64