origen_app_generators 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ffe140c30fd3e0681683b14c9538a3257e9e63cb
4
- data.tar.gz: 34407d38fd34ed12b7364c01789110300c9afeb8
3
+ metadata.gz: dd970f1c3187d496d80d9a9eec9778a176d03bcb
4
+ data.tar.gz: 30052184f57fd16a98e56a8f813dd016a6c5f21e
5
5
  SHA512:
6
- metadata.gz: 249f48cc396ec431516e43fc4bafe4ef5b2dd4268de362be96cd8fa77862fa71be0707103cfe5a28165c875ce12ca4dae2ef200bc8c698e24a25a2a02d2109fa
7
- data.tar.gz: 01e1472149a9356f5bb4bad4a4f7df0745a1858331045e3edbd7983c5f9c60608f1bc7cca38efdb9fba8d8f0994f7fe3bc903ede22641a2839c9d36c39efad38
6
+ metadata.gz: 409567a4b79e454d1489b4525785f6d3b32aed821cdea39ed42974bb614ebc86a4fbb694a2c6d58be5bf42dbedef30e912275a4f63ec94a3b901375f2e050283
7
+ data.tar.gz: 170b9a1478b8899b7fe701041086f6b97ef0f95b8fb38d2bb20656e5fe6e55d27826e21d7319279a4c6e65da811f043fac29bba2b2d4479e02d13ce548bbb392
File without changes
data/config/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module OrigenAppGenerators
2
2
  MAJOR = 0
3
3
  MINOR = 2
4
- BUGFIX = 2
4
+ BUGFIX = 3
5
5
  DEV = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -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
@@ -0,0 +1,4 @@
1
+ # Any email addresses listed here will be automatically sent an email whenever you
2
+ # run 'origen rc tag'
3
+ # See here for more info: http://origen-sdk.org/origen/guides/misc/users/#Maillists
4
+ <%= User.current.email %>
@@ -0,0 +1,3 @@
1
+ # Any email addresses listed here will be automatically sent an email whenever you
2
+ # run 'origen rc tag' and select a PRODUCTION release
3
+ # See here for more info: http://origen-sdk.org/origen/guides/misc/users/#Maillists
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.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: 2015-09-22 00:00:00.000000000 Z
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.4.5
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