Sha256: c7928937501508b726a0b44283de274631078ba65cf2a46591ffd12551cc2d05

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

# This file defines the users associated with your project, it is basically the 
# mailing list for release notes.
#
# You can split your users into "admin" and "user" groups, the main difference 
# between the two is that admin users will get all tag emails, users will get
# emails on external/official releases only.
#
# Users are also prohibited from running the "rgen rc tag" command, but this is 
# really just to prevent a casual user from executing it inadvertently and is
# not intended to be a serious security gate.
module RGen
  module Users
    def users
      @users ||= [

        # Admins - Notified on every tag
        User.new("Chris P Nappi", "ra5809", :admin),

        # Users - Notified on official release tags only
        #User.new("Stephen McGinty", "r49409"),
        # The r-number attribute can be anything that can be prefixed to an 
        # @freescale.com email address, so you can add mailing list references
        # as well like this:
        #User.new("RGen Users", "rgen"),  # The RGen mailing list
        
      ]
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
origen_ahb-0.2.0.pre6 config/users.rb
origen_ahb-0.2.0.pre5 config/users.rb
origen_ahb-0.2.0.pre4 config/users.rb
origen_ahb-0.2.0.pre3 config/users.rb
origen_ahb-0.2.0.pre2 config/users.rb