module EacLauncher::Stereotype

Attributes

stereotypes[R]

Public Class Methods

git_stereotypes() click to toggle source
# File lib/eac_launcher/stereotype.rb, line 16
def git_stereotypes
  stereotypes.select { |c| c.name.demodulize.downcase.match('git') }
end
included(base) click to toggle source
# File lib/eac_launcher/stereotype.rb, line 10
def included(base)
  @stereotypes ||= []
  @stereotypes << base
  base.extend(ClassMethods)
end
nogit_stereotypes() click to toggle source
# File lib/eac_launcher/stereotype.rb, line 20
def nogit_stereotypes
  stereotypes - git_stereotypes
end