atp 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/config/users.rb DELETED
@@ -1,29 +0,0 @@
1
- # This file defines the users associated with your project, it is basically the
2
- # mailing list for release notes.
3
- #
4
- # You can split your users into "admin" and "user" groups, the main difference
5
- # between the two is that admin users will get all tag emails, users will get
6
- # emails on external/official releases only.
7
- #
8
- # Users are also prohibited from running the "origen rc tag" command, but this is
9
- # really just to prevent a casual user from executing it inadvertently and is
10
- # not intended to be a serious security gate.
11
- module Origen
12
- module Users
13
- def users
14
- @users ||= [
15
-
16
- # Admins - Notified on every tag
17
- User.new("stephen", "stephen", :admin),
18
-
19
- # Users - Notified on official release tags only
20
- #User.new("Stephen McGinty", "r49409"),
21
- # The r-number attribute can be anything that can be prefixed to an
22
- # @freescale.com email address, so you can add mailing list references
23
- # as well like this:
24
- #User.new("Origen Users", "origen"), # The Origen mailing list
25
-
26
- ]
27
- end
28
- end
29
- end
data/lib/atp/top_level.rb DELETED
@@ -1,12 +0,0 @@
1
- module ATP
2
- class TopLevel
3
- # A simple method to get you going, to see this in action run a console session like this:
4
- #
5
- # origen i
6
- #
7
- # > $dut.hi
8
- def hi
9
- puts "Hello master!"
10
- end
11
- end
12
- end