debian-mirror-gitlab/lib/gitlab/github_import/representation/expose_attribute.rb
2018-11-20 20:47:30 +05:30

27 lines
574 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
module Representation
module ExposeAttribute
extend ActiveSupport::Concern
class_methods do
# Defines getter methods for the given attribute names.
#
# Example:
#
# expose_attribute :iid, :title
def expose_attribute(*names)
names.each do |name|
name = name.to_sym
define_method(name) { attributes[name] }
end
end
end
end
end
end
end