aws_deploy 0.2.5.1 → 0.2.6.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.
- checksums.yaml +4 -4
- data/app/business/aws_deploy/notification.rb +63 -0
- data/app/business/aws_deploy/tasks/collect_inputs.rb +39 -0
- data/app/business/aws_deploy/tasks/generate_aws_deploy.rb +0 -22
- data/app/business/aws_deploy/tasks/generate_local_deploy_rb.rb +3 -10
- data/app/business/aws_deploy/tasks/generate_production_cron_check_updates.rb +17 -17
- data/app/business/aws_deploy/tasks/generate_production_deploy_sh.rb +17 -17
- data/app/business/aws_deploy/tasks/setup_yml.rb +5 -4
- data/app/controllers/aws_deploy/notifications_controller.rb +67 -0
- data/app/views/aws_deploy/index/_notification.html.erb +19 -0
- data/app/views/aws_deploy/index/index.html.erb +3 -0
- data/app/views/aws_deploy/notifications/index.html.erb +43 -0
- data/config/routes.rb +20 -4
- data/lib/aws_deploy/version.rb +1 -1
- data/test/dummy/config/aws_deploy.yml +5 -0
- data/test/dummy/log/development.log +4128 -0
- metadata +21 -4
- data/test/dummy/config/aws_deploy_.yml +0 -23
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws_deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcio Mangar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.21'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: my_pushbullet
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.0.2
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.0.2
|
41
55
|
description: Description of AwsDeploy.
|
42
56
|
email:
|
43
57
|
- marcio.mangar@gmail.com
|
@@ -45,6 +59,8 @@ executables: []
|
|
45
59
|
extensions: []
|
46
60
|
extra_rdoc_files: []
|
47
61
|
files:
|
62
|
+
- app/business/aws_deploy/notification.rb
|
63
|
+
- app/business/aws_deploy/tasks/collect_inputs.rb
|
48
64
|
- app/business/aws_deploy/tasks/generate_aws_deploy.rb
|
49
65
|
- app/business/aws_deploy/tasks/generate_aws_send_rb.rb
|
50
66
|
- app/business/aws_deploy/tasks/generate_git_version_tag_rb.rb
|
@@ -57,8 +73,11 @@ files:
|
|
57
73
|
- app/controllers/aws_deploy/aws_deploy_application_controller.rb
|
58
74
|
- app/controllers/aws_deploy/index/version.rb
|
59
75
|
- app/controllers/aws_deploy/index_controller.rb
|
76
|
+
- app/controllers/aws_deploy/notifications_controller.rb
|
60
77
|
- app/views/aws_deploy/index/_config_file_not_found.html.erb
|
78
|
+
- app/views/aws_deploy/index/_notification.html.erb
|
61
79
|
- app/views/aws_deploy/index/index.html.erb
|
80
|
+
- app/views/aws_deploy/notifications/index.html.erb
|
62
81
|
- app/views/layouts/aws_deploy.html.erb
|
63
82
|
- config/initializers/aws_deploy.rb
|
64
83
|
- config/routes.rb
|
@@ -79,7 +98,6 @@ files:
|
|
79
98
|
- test/dummy/bin/rake
|
80
99
|
- test/dummy/config/application.rb
|
81
100
|
- test/dummy/config/aws_deploy.yml
|
82
|
-
- test/dummy/config/aws_deploy_.yml
|
83
101
|
- test/dummy/config/boot.rb
|
84
102
|
- test/dummy/config/database.yml
|
85
103
|
- test/dummy/config/environment.rb
|
@@ -146,7 +164,6 @@ test_files:
|
|
146
164
|
- test/dummy/bin/rake
|
147
165
|
- test/dummy/config/application.rb
|
148
166
|
- test/dummy/config/aws_deploy.yml
|
149
|
-
- test/dummy/config/aws_deploy_.yml
|
150
167
|
- test/dummy/config/boot.rb
|
151
168
|
- test/dummy/config/database.yml
|
152
169
|
- test/dummy/config/environment.rb
|
@@ -1,23 +0,0 @@
|
|
1
|
-
development:
|
2
|
-
aws_bucket: "samsung-g11/deploy"
|
3
|
-
aws_access_key_id: "AKIAJQRQR5JLOKQGSTSQ"
|
4
|
-
aws_secret_access_key: "wCjhd/XZS2ZpFqyTPACxT7sxAPPO335jNxVZySVC"
|
5
|
-
file_pattern: samsung-g11
|
6
|
-
|
7
|
-
|
8
|
-
staging:
|
9
|
-
aws_bucket: "samsung-g11/deploy"
|
10
|
-
aws_access_key_id: "ENV['SMG_G11_AWS_KEY_ID']"
|
11
|
-
aws_secret_access_key: "ENV['SMG_G11_AWS_ACCESS_KEY']"
|
12
|
-
file_pattern: samsung-g11
|
13
|
-
|
14
|
-
|
15
|
-
# test:
|
16
|
-
# aws_bucket: "samsung-g11/deploy"
|
17
|
-
# aws_access_key_id: "AKIAJQRQR5JLOKQGSTSQ"
|
18
|
-
# aws_secret_access_key: "wCjhd/XZS2ZpFqyTPACxT7sxAPPO335jNxVZySVC"
|
19
|
-
#
|
20
|
-
# producion:
|
21
|
-
# aws_bucket: "samsung-g11/deploy"
|
22
|
-
# aws_access_key_id: "AKIAJQRQR5JLOKQGSTSQ"
|
23
|
-
# aws_secret_access_key: "wCjhd/XZS2ZpFqyTPACxT7sxAPPO335jNxVZySVC"
|