ebf98f27c4
Enables frozen string for the following: * lib/gitlab/fogbugz_import/**/*.rb * lib/gitlab/gfm/**/*.rb * lib/gitlab/git/**/*.rb * lib/gitlab/gitaly_client/**/*.rb * lib/gitlab/gitlab_import/**/*.rb * lib/gitlab/google_code_import/**/*.rb * lib/gitlab/gpg/**/*.rb * lib/gitlab/grape_logging/**/*.rb * lib/gitlab/graphql/**/*.rb * lib/gitlab/graphs/**/*.rb * lib/gitlab/hashed_storage/**/*.rb * lib/gitlab/health_checks/**/*.rb Partially address gitlab-org/gitlab-ce#47424.
33 lines
502 B
Ruby
33 lines
502 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module FogbugzImport
|
|
class Repository
|
|
attr_accessor :raw_data
|
|
|
|
def initialize(raw_data)
|
|
@raw_data = raw_data
|
|
end
|
|
|
|
def valid?
|
|
raw_data.is_a?(Hash)
|
|
end
|
|
|
|
def id
|
|
raw_data['ixProject']
|
|
end
|
|
|
|
def name
|
|
raw_data['sProject']
|
|
end
|
|
|
|
def safe_name
|
|
name.gsub(/[^\s\w.-]/, '')
|
|
end
|
|
|
|
def path
|
|
safe_name.gsub(/[\s]/, '_')
|
|
end
|
|
end
|
|
end
|
|
end
|