Skip to content

Commit

Permalink
2019 standards update entry point fix (#54)
Browse files Browse the repository at this point in the history
* fixed gem entry point file to be named properly
* updated rubocop rule
  • Loading branch information
hossenlopp authored Jul 15, 2019
1 parent f684425 commit 1b45d15
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ Naming/AccessorMethodName:
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Naming/FileName:
Exclude:
- 'lib/hqmf-parser.rb'
- 'lib/cqm-parsers.rb'

Naming/MethodName:
Exclude:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/tasks/hqmf.rake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'pathname'
require 'fileutils'
require 'json'
require 'hqmf-parser'
require 'cqm-parsers'

namespace :hqmf do

Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
require 'typhoeus'

PROJECT_ROOT = File.expand_path("../../", __FILE__)
require_relative File.join(PROJECT_ROOT, 'lib', 'hqmf-parser')
require_relative File.join(PROJECT_ROOT, 'lib', 'cqm-parsers')

require 'minitest/autorun'
require "minitest/reporters"
Expand Down

0 comments on commit 1b45d15

Please sign in to comment.