Skip to content

Commit

Permalink
Silence rake warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jlduran committed Nov 29, 2017
1 parent 5998291 commit e03daa8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ AllCops:
Style/AsciiComments:
Enabled: false

Style/FileName:
Naming/FileName:
Enabled: false
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require File.expand_path('../lib/numbers_and_words/version', __FILE__)
begin
Bundler.setup :default, :development
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts 'Run `bundle install` to install missing gems'
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end

Expand Down
2 changes: 0 additions & 2 deletions spec/numbers_and_words/numbers_and_words_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8

require 'spec_helper'
require 'shared_examples/correct_fixture_examples'

Expand Down

0 comments on commit e03daa8

Please sign in to comment.