Skip to content

Commit

Permalink
Merge pull request #39 from mikezaby/rubocop_errors
Browse files Browse the repository at this point in the history
Rubocop errors
  • Loading branch information
tboerger committed Mar 16, 2017
2 parents e69f110 + 9a2d614 commit 18b5414
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,10 @@ Metrics/MethodLength:

Metrics/ClassLength:
Max: 300

Metrics/BlockLength:
Exclude:
- "gettext_i18n_rails_js.gemspec"
- "**/*_spec.rb"
ExcludedMethods:
- "namespace"
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ gem "rails", "~> #{ENV["RAILS_VERSION"]}" if ENV["RAILS_VERSION"]

group :development do
gem "guard", require: false
gem "guard-rubocop", require: false
gem "guard-rspec", require: false
gem "guard-rubocop", require: false

# Temporary fix for a ruby 2.2 requirement
gem "listen", "~> 3.0.7"
end

group :test do
gem "simplecov", require: false
gem "coveralls", require: false
gem "codeclimate-test-reporter", require: false
gem "coveralls", require: false
gem "rubocop", require: false
gem "simplecov", require: false
end

instance_eval(File.read("Gemfile.local")) if File.exist? "Gemfile.local"

0 comments on commit 18b5414

Please sign in to comment.