Sha256: a1177d67d4d93d145570c7d972686be82879f63c29ae508498d57fd77db4fc2a

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 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 "origen 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 Origen
  module Users
    def users
      @users ||= [

        # Admins - Notified on every tag
        User.new("<%= User.current.name %>", "<%= User.current.id %>", :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("Origen Users", "origen"),  # The Origen mailing list
        
      ]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
origen_app_generators-0.0.3 templates/app_generators/application/config/users.rb