Skip to content

Commit

Permalink
Fix rubocop violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Halligon committed Apr 17, 2018
1 parent ad8f7e2 commit f15c445
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ target 'Tests' do
end

post_install do |installer|
swift3_pods = %w(Stencil)
swift3_pods = %w[Stencil]
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2' if swift3_pods.include?(target.name)
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'English'

unless defined?(Bundler)
puts 'Please use bundle exec to run the rake command'
puts 'Please use bundle exec to run the rake command'
exit 1
end

Expand Down
2 changes: 1 addition & 1 deletion rakelib/lint.rake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# none

namespace :lint do
SWIFTLINT = 'Scripts/SwiftLint.sh'
SWIFTLINT = 'Scripts/SwiftLint.sh'.freeze

desc 'Lint the code'
task :code do |task|
Expand Down

0 comments on commit f15c445

Please sign in to comment.