Skip to content

Commit f45e7d8

Browse files
committed
Make constant non-private to make rubocop happy once more
1 parent f6ad507 commit f45e7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/domain/ptime/assign_employee_ids.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# This script will assign each person the corresponding employee ID from PuzzleTime
22
module Ptime
33
class AssignEmployeeIds
4+
MAX_NUMBER_OF_FETCHED_EMPLOYEES = 1000
45

56
# rubocop:disable Rails/Output
67
def run(should_map: false)
@@ -47,7 +48,6 @@ def map_employees(should_map)
4748
end
4849
# rubocop:enable Metrics
4950

50-
MAX_NUMBER_OF_FETCHED_EMPLOYEES = 1000
5151
def fetch_data
5252
puts 'Fetching required data...'
5353
@ptime_employees = Ptime::Client.new.request(:get, 'employees',

0 commit comments

Comments
 (0)