Make open source

This commit is contained in:
John Lees-Miller
2018-10-27 16:46:26 +01:00
commit 6e82ba528b
163 changed files with 3912 additions and 0 deletions

22
.rubocop.yml Normal file
View File

@ -0,0 +1,22 @@
AllCops:
Exclude:
- 'bin/*'
- 'db/schema.rb'
Style/ClassAndModuleChildren:
Exclude:
- 'test/**/*'
Style/Documentation:
Exclude:
- 'app/controllers/**/*'
- 'app/helpers/**/*'
- 'app/mailers/**/*'
- 'app/**/application_*'
- 'config/*'
- 'db/**/*'
- 'test/**/*'
Metrics/LineLength:
Max: 80
IgnoredPatterns: ['\A\s*#']