-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from kjrocker/rubocop
Fix up rubocop violations
- Loading branch information
Showing
6 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
inherit_from: .rubocop_todo.yml | ||
Style/StringLiteral: | ||
Enabled: true | ||
EnforcedStyle: single_quotes | ||
Style/MutableConstant: | ||
Exclude: | ||
- 'lib/seedbank/version.rb' | ||
Lint/ScriptPermission: | ||
Exclude: | ||
- 'test/dummy/Rakefile' | ||
Metrics/LineLength: | ||
Exclude: | ||
- 'test/**/*' | ||
Max: 132 | ||
Style/ConditionalAssignment: | ||
Enabled: false | ||
Layout/EmptyLineAfterMagicComment: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,10 @@ Gem::Specification.new do |spec| | |
spec.email = ['[[email protected]'] | ||
spec.required_ruby_version = '>= 2.1' | ||
spec.summary = 'Generate seeds data for your Ruby application.' | ||
spec.description = %{ | ||
spec.description = %( | ||
Adds simple rake commands for seeding your database. Simple dependencies let you organise your seeds. | ||
If you are using Rails, Seedbank extends Rails seeds and lets you add seeds for each environment. | ||
} | ||
) | ||
spec.date = `git log -1 --format="%cd" --date=short lib/seedbank/version.rb` | ||
spec.homepage = 'http://github.com/james2m/seedbank' | ||
spec.license = 'MIT' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters