Skip to content

Commit

Permalink
Various upgrades (#366)
Browse files Browse the repository at this point in the history
* Various upgrades

- Tweak codeclimate
- Change to double quotes
- Adds changelog rake task/gem
- Adds yard configuration

* Tweak the newly added

* Update changelog

* Add docs

* Prefer double quotes

* Prefer automatic TOC

* Remove docs folder

* Enforce some more rubocop validations

* Separate requires and module definition

* Configure rubocop-rspec

* Strip trailing whitespace in markdown

* Update tools

* Ignore doc folder

* Refresh README

* Trigger travis

* Require spec_helper

* Move incompatible gems to gemfile

* Refresh changelog

* Travis doesn't load .rspec

* Remove awesome print

* Update gemfiles

* Exclude more paths from validation

* Rubo👮
  • Loading branch information
mhenrixon committed Feb 8, 2019
1 parent 1120c51 commit 6dd7f00
Show file tree
Hide file tree
Showing 164 changed files with 2,844 additions and 2,373 deletions.
23 changes: 10 additions & 13 deletions .codeclimate.yml
@@ -1,17 +1,15 @@
---
version: '2'
plugins:
bundler-audit:
enabled: false
duplication:
enabled: true
config:
languages:
- ruby
flog:
enabled: true
fixme:
enabled: true
flog:
enabled: true
markdownlint:
enabled: true
reek:
Expand All @@ -20,16 +18,15 @@ plugins:
file: .reek.yml
rubocop:
enabled: true
channel: rubocop-0-57
channel: rubocop-0-63
config:
file: .rubocop.yml

exclude_patterns:
- Gemfile
- "Gemfile"
- "*.gemspec"
- Appraisals
- spec/**/*.rb
- gemfiles/**/*
- rails_example/**/*
- redis/**/*
- tmp/**/*

- "Appraisals"
- "gemfiles/"
- "rails_example/"
- "redis/"
- "tmp/"
2 changes: 0 additions & 2 deletions .csslintrc

This file was deleted.

4 changes: 0 additions & 4 deletions .dockerignore

This file was deleted.

2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -11,4 +11,4 @@ indent_style = space
indent_size = 2

[*.{md,slim,haml}]
trim_trailing_whitespace = false
trim_trailing_whitespace = true
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

213 changes: 0 additions & 213 deletions .eslintrc

This file was deleted.

33 changes: 11 additions & 22 deletions .gitignore
@@ -1,28 +1,17 @@

*.gem

*.sublime-*
*.sw?
.DS_Store

Gemfile.lock

.ruby-version
.idea/
gemfiles/*.lock
*.sw?
coverage/
tmp/
rails_example/spec/examples.txt

*.sublime-*

/sidekiq/

.rspec_status

/gemfiles/.bundle/

.ruby-version
/.byebug_history

/.yardoc/

/spec/examples.txt
/doc*/
/gemfiles/.bundle/
/sidekiq/
coverage/
Gemfile.lock
gemfiles/*.lock
rails_example/spec/examples.txt
tmp/
1 change: 1 addition & 0 deletions .mdlrc
@@ -0,0 +1 @@
rules "~MD013"
1 change: 1 addition & 0 deletions .reek.yml
Expand Up @@ -6,6 +6,7 @@ exclude_paths:
- tmp
- gemfiles
- examples
- vendor/bundle
detectors:
DuplicateMethodCall:
exclude:
Expand Down
2 changes: 1 addition & 1 deletion .rspec
@@ -1,2 +1,2 @@
--color
--order random
--require spec_helper

0 comments on commit 6dd7f00

Please sign in to comment.