Sha256: f1c91fdef6ccaa6d09727b54aaad711bdecb5c43543f32bef5579c34f40eabb6

Contents?: true

Size: 792 Bytes

Versions: 14

Compression:

Stored size: 792 Bytes

Contents

# This file defines the users associated with your project, it is basically the
# mailing list for release notes.
# This module must define a method named "users" which returns an array of user
# objects.
# 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 tag_project script, but this is
# really just to prevent a casual user from executing it inadvertently and it is
# not intended to be a serious security gate.
module Origen
  module Users
    def users
      @users ||= [
        # Admins
        User.new('Stephen McGinty', 'stephen.f.mcginty@gmail.com', :admin),
      ]
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
origen-0.2.2 config/users.rb
origen-0.2.1 config/users.rb
origen-0.2.0 config/users.rb
origen-0.1.3 config/users.rb
origen-0.1.2 config/users.rb
origen-0.1.1 config/users.rb
origen-0.1.0 config/users.rb
origen-0.0.9 config/users.rb
origen-0.0.8 config/users.rb
origen-0.0.6 config/users.rb
origen-0.0.5 config/users.rb
origen-0.0.4 config/users.rb
origen-0.0.3 config/users.rb
origen-0.0.2 config/users.rb