origen_app_generators 0.2.2 → 0.2.3
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.
- checksums.yaml +4 -4
- data/config/{environment.rb → boot.rb} +0 -0
- data/config/version.rb +1 -1
- data/lib/origen_app_generators/application.rb +2 -0
- data/templates/app_generators/application/config/maillist_dev.txt +4 -0
- data/templates/app_generators/application/config/maillist_prod.txt +3 -0
- metadata +6 -5
- data/config/users.rb +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd970f1c3187d496d80d9a9eec9778a176d03bcb
|
|
4
|
+
data.tar.gz: 30052184f57fd16a98e56a8f813dd016a6c5f21e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 409567a4b79e454d1489b4525785f6d3b32aed821cdea39ed42974bb614ebc86a4fbb694a2c6d58be5bf42dbedef30e912275a4f63ec94a3b901375f2e050283
|
|
7
|
+
data.tar.gz: 170b9a1478b8899b7fe701041086f6b97ef0f95b8fb38d2bb20656e5fe6e55d27826e21d7319279a4c6e65da811f043fac29bba2b2d4479e02d13ce548bbb392
|
|
File without changes
|
data/config/version.rb
CHANGED
|
@@ -29,6 +29,8 @@ module OrigenAppGenerators
|
|
|
29
29
|
config_version: { source: 'config/version.rb' },
|
|
30
30
|
config_boot: { source: 'config/boot.rb' },
|
|
31
31
|
config_commands: { source: 'config/commands.rb' },
|
|
32
|
+
config_dev: { source: 'config/maillist_dev.txt' },
|
|
33
|
+
config_prod: { source: 'config/maillist_prod.txt' },
|
|
32
34
|
doc_history: { source: 'doc/history' },
|
|
33
35
|
target_default: { source: 'target/default.rb' },
|
|
34
36
|
# target_default: { source: 'debug.rb', # Relative to the file being linked to
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: origen_app_generators
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen McGinty
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: origen
|
|
@@ -32,9 +32,8 @@ extensions: []
|
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- config/application.rb
|
|
35
|
+
- config/boot.rb
|
|
35
36
|
- config/commands.rb
|
|
36
|
-
- config/environment.rb
|
|
37
|
-
- config/users.rb
|
|
38
37
|
- config/version.rb
|
|
39
38
|
- lib/origen_app_generators.rb
|
|
40
39
|
- lib/origen_app_generators/application.rb
|
|
@@ -58,6 +57,8 @@ files:
|
|
|
58
57
|
- templates/app_generators/application/config/application.rb
|
|
59
58
|
- templates/app_generators/application/config/boot.rb
|
|
60
59
|
- templates/app_generators/application/config/commands.rb
|
|
60
|
+
- templates/app_generators/application/config/maillist_dev.txt
|
|
61
|
+
- templates/app_generators/application/config/maillist_prod.txt
|
|
61
62
|
- templates/app_generators/application/config/version.rb
|
|
62
63
|
- templates/app_generators/application/doc/history
|
|
63
64
|
- templates/app_generators/application/lib/app.rake
|
|
@@ -117,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
117
118
|
version: 1.8.11
|
|
118
119
|
requirements: []
|
|
119
120
|
rubyforge_project:
|
|
120
|
-
rubygems_version: 2.
|
|
121
|
+
rubygems_version: 2.2.2
|
|
121
122
|
signing_key:
|
|
122
123
|
specification_version: 4
|
|
123
124
|
summary: Origen application generators
|
data/config/users.rb
DELETED
|
@@ -1,19 +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 tag" task, 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
|
-
]
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
end
|