Skip to content

Commit

Permalink
Merge 741ca12 into 0946117
Browse files Browse the repository at this point in the history
  • Loading branch information
jlduran committed Dec 24, 2020
2 parents 0946117 + 741ca12 commit bf24d3f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -29,4 +29,4 @@ jobs:
gem --version
gem install -g
- name: Run tests
run: rake
run: bundle exec rake
1 change: 1 addition & 0 deletions .rubocop.yml
@@ -1,5 +1,6 @@
require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec

AllCops:
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -14,5 +14,6 @@ group :test do
gem 'rspec', '~> 3'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end
Expand Up @@ -12,7 +12,7 @@ class Ordinal < Base::Ordinal

def result(type)
@type = type
MEGS_TYPE != type ? check_simple_numbers : check_megs_numbers
MEGS_TYPE == type ? check_megs_numbers : check_simple_numbers
end

private
Expand Down
File renamed without changes.

0 comments on commit bf24d3f

Please sign in to comment.