Skip to content

Commit ab53972

Browse files
authored
Merge pull request #1 from swanson/master
Pull latest / greatest from stringer
2 parents bc6c01f + 72bd2a3 commit ab53972

File tree

258 files changed

+21096
-3947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+21096
-3947
lines changed

.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.git/*
2+
.gitignore
3+
log/*
4+
tmp/*

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.rbc
33
.bundle
44
.config
5+
.ruby-gemset
56
coverage
67
InstalledFiles
78
lib/bundler/man
@@ -11,13 +12,13 @@ spec/reports
1112
test/tmp
1213
test/version_tmp
1314
tmp
15+
log
1416

1517
# YARD artifacts
1618
.yardoc
1719
_yardoc
1820
doc/
1921
bin/
2022

21-
db/*.sqlite
2223
.DS_Store
23-
.localeapp
24+
.localeapp

.rubocop.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
inherit_from: .rubocop_todo.yml
2+
require:
3+
- rubocop-rails
4+
- rubocop-rake
5+
- rubocop-rspec
6+
7+
AllCops:
8+
DisplayCopNames: true
9+
EnabledByDefault: true
10+
Exclude:
11+
- 'db/schema.rb'
12+
- 'vendor/**/*'
13+
14+
Layout/LineLength:
15+
Max: 120
16+
17+
Metrics/BlockLength:
18+
Exclude:
19+
- 'spec/**/*_spec.rb'
20+
21+
Metrics/MethodLength:
22+
Max: 15
23+
24+
Style/ConstantVisibility:
25+
Enabled: false
26+
27+
Style/Copyright:
28+
Enabled: false
29+
30+
Style/Documentation:
31+
Enabled: false
32+
33+
Style/DoubleNegation:
34+
Enabled: false
35+
36+
Style/NumericLiterals:
37+
Enabled: false
38+
39+
Style/StringLiterals:
40+
EnforcedStyle: double_quotes

0 commit comments

Comments
 (0)