Skip to content

Commit

Permalink
[RuboCop] Fix Style/FrozenStringLiteralComment
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Jul 25, 2017
1 parent 85abf9c commit e5e0b99
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
12 changes: 1 addition & 11 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-07-19 09:09:06 -0500 using RuboCop version 0.49.1.
# on 2017-07-19 09:13:10 -0500 using RuboCop version 0.49.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand Down Expand Up @@ -41,16 +41,6 @@ Style/FileName:
- 'Gemfile'
- 'Rakefile'

# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: when_needed, always, never
Style/FrozenStringLiteralComment:
Exclude:
- 'Gemfile'
- 'Rakefile'
- 'molinillo.gemspec'

# Offense count: 1
# Cop supports --auto-correct.
Style/MultilineIfModifier:
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gemspec
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# encoding: utf-8
# frozen_string_literal: true

#-- Bootstrap --------------------------------------------------------------#

Expand Down
1 change: 1 addition & 0 deletions molinillo.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# coding: utf-8
# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Expand Down

0 comments on commit e5e0b99

Please sign in to comment.