summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/representation/expose_attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/representation/expose_attribute.rb')
-rw-r--r--lib/gitlab/github_import/representation/expose_attribute.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/gitlab/github_import/representation/expose_attribute.rb b/lib/gitlab/github_import/representation/expose_attribute.rb
new file mode 100644
index 00000000000..c3405759631
--- /dev/null
+++ b/lib/gitlab/github_import/representation/expose_attribute.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module GithubImport
+ module Representation
+ module ExposeAttribute
+ extend ActiveSupport::Concern
+
+ module ClassMethods
+ # 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