aws_deploy 0.2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/business/aws_deploy/tasks/generate_aws_deploy.rb +53 -0
  5. data/app/business/aws_deploy/tasks/generate_aws_send_rb.rb +49 -0
  6. data/app/business/aws_deploy/tasks/generate_git_version_tag_rb.rb +70 -0
  7. data/app/business/aws_deploy/tasks/generate_local_deploy_rb.rb +157 -0
  8. data/app/business/aws_deploy/tasks/generate_production_cron_check_updates.rb +134 -0
  9. data/app/business/aws_deploy/tasks/generate_production_deploy_sh.rb +146 -0
  10. data/app/business/aws_deploy/tasks/setup_yml.rb +89 -0
  11. data/app/business/deploy/deploy.rb +17 -0
  12. data/app/business/deploy/packing.rb +13 -0
  13. data/app/controllers/aws_deploy/aws_deploy_application_controller.rb +56 -0
  14. data/app/controllers/aws_deploy/index/version.rb +24 -0
  15. data/app/controllers/aws_deploy/index_controller.rb +70 -0
  16. data/app/views/aws_deploy/index/_config_file_not_found.html.erb +11 -0
  17. data/app/views/aws_deploy/index/index.html.erb +70 -0
  18. data/app/views/layouts/aws_deploy.html.erb +208 -0
  19. data/config/initializers/aws_deploy.rb +19 -0
  20. data/config/routes.rb +10 -0
  21. data/lib/aws_deploy/engine.rb +17 -0
  22. data/lib/aws_deploy/version.rb +3 -0
  23. data/lib/aws_deploy.rb +9 -0
  24. data/lib/tasks/aws_deploy_tasks.rake +47 -0
  25. data/test/aws_deploy_test.rb +7 -0
  26. data/test/dummy/README.rdoc +28 -0
  27. data/test/dummy/Rakefile +6 -0
  28. data/test/dummy/app/assets/javascripts/application.js +13 -0
  29. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  30. data/test/dummy/app/controllers/application_controller.rb +5 -0
  31. data/test/dummy/app/helpers/application_helper.rb +2 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/bin/bundle +3 -0
  34. data/test/dummy/bin/rails +4 -0
  35. data/test/dummy/bin/rake +4 -0
  36. data/test/dummy/config/application.rb +23 -0
  37. data/test/dummy/config/aws_deploy.yml +11 -0
  38. data/test/dummy/config/aws_deploy_.yml +23 -0
  39. data/test/dummy/config/boot.rb +5 -0
  40. data/test/dummy/config/database.yml +25 -0
  41. data/test/dummy/config/environment.rb +5 -0
  42. data/test/dummy/config/environments/development.rb +29 -0
  43. data/test/dummy/config/environments/production.rb +80 -0
  44. data/test/dummy/config/environments/test.rb +36 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  47. data/test/dummy/config/initializers/inflections.rb +16 -0
  48. data/test/dummy/config/initializers/mime_types.rb +5 -0
  49. data/test/dummy/config/initializers/secret_token.rb +12 -0
  50. data/test/dummy/config/initializers/session_store.rb +3 -0
  51. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/test/dummy/config/locales/en.yml +23 -0
  53. data/test/dummy/config/routes.rb +56 -0
  54. data/test/dummy/config.ru +4 -0
  55. data/test/dummy/db/development.sqlite3 +0 -0
  56. data/test/dummy/log/development.log +6379 -0
  57. data/test/dummy/log/local.log +0 -0
  58. data/test/dummy/public/404.html +58 -0
  59. data/test/dummy/public/422.html +58 -0
  60. data/test/dummy/public/500.html +57 -0
  61. data/test/dummy/public/favicon.ico +0 -0
  62. data/test/dummy/script/deploy.rb +116 -0
  63. data/test/dummy/script/lib/deploy/aws_send.rb +29 -0
  64. data/test/dummy/script/lib/deploy/git_version_tag.rb +48 -0
  65. data/test/dummy/script/production/cron_check_updates.rb +109 -0
  66. data/test/dummy/script/production/deploy.sh +127 -0
  67. data/test/test_helper.rb +15 -0
  68. metadata +180 -0
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws_deploy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.5.0
5
+ platform: ruby
6
+ authors:
7
+ - Marcio Mangar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: aws-sdk
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.21'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.21'
41
+ description: Description of AwsDeploy.
42
+ email:
43
+ - marcio.mangar@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - app/business/aws_deploy/tasks/generate_aws_deploy.rb
49
+ - app/business/aws_deploy/tasks/generate_aws_send_rb.rb
50
+ - app/business/aws_deploy/tasks/generate_git_version_tag_rb.rb
51
+ - app/business/aws_deploy/tasks/generate_local_deploy_rb.rb
52
+ - app/business/aws_deploy/tasks/generate_production_cron_check_updates.rb
53
+ - app/business/aws_deploy/tasks/generate_production_deploy_sh.rb
54
+ - app/business/aws_deploy/tasks/setup_yml.rb
55
+ - app/business/deploy/deploy.rb
56
+ - app/business/deploy/packing.rb
57
+ - app/controllers/aws_deploy/aws_deploy_application_controller.rb
58
+ - app/controllers/aws_deploy/index/version.rb
59
+ - app/controllers/aws_deploy/index_controller.rb
60
+ - app/views/aws_deploy/index/_config_file_not_found.html.erb
61
+ - app/views/aws_deploy/index/index.html.erb
62
+ - app/views/layouts/aws_deploy.html.erb
63
+ - config/initializers/aws_deploy.rb
64
+ - config/routes.rb
65
+ - lib/aws_deploy/engine.rb
66
+ - lib/aws_deploy/version.rb
67
+ - lib/aws_deploy.rb
68
+ - lib/tasks/aws_deploy_tasks.rake
69
+ - MIT-LICENSE
70
+ - Rakefile
71
+ - test/aws_deploy_test.rb
72
+ - test/dummy/app/assets/javascripts/application.js
73
+ - test/dummy/app/assets/stylesheets/application.css
74
+ - test/dummy/app/controllers/application_controller.rb
75
+ - test/dummy/app/helpers/application_helper.rb
76
+ - test/dummy/app/views/layouts/application.html.erb
77
+ - test/dummy/bin/bundle
78
+ - test/dummy/bin/rails
79
+ - test/dummy/bin/rake
80
+ - test/dummy/config/application.rb
81
+ - test/dummy/config/aws_deploy.yml
82
+ - test/dummy/config/aws_deploy_.yml
83
+ - test/dummy/config/boot.rb
84
+ - test/dummy/config/database.yml
85
+ - test/dummy/config/environment.rb
86
+ - test/dummy/config/environments/development.rb
87
+ - test/dummy/config/environments/production.rb
88
+ - test/dummy/config/environments/test.rb
89
+ - test/dummy/config/initializers/backtrace_silencers.rb
90
+ - test/dummy/config/initializers/filter_parameter_logging.rb
91
+ - test/dummy/config/initializers/inflections.rb
92
+ - test/dummy/config/initializers/mime_types.rb
93
+ - test/dummy/config/initializers/secret_token.rb
94
+ - test/dummy/config/initializers/session_store.rb
95
+ - test/dummy/config/initializers/wrap_parameters.rb
96
+ - test/dummy/config/locales/en.yml
97
+ - test/dummy/config/routes.rb
98
+ - test/dummy/config.ru
99
+ - test/dummy/db/development.sqlite3
100
+ - test/dummy/log/development.log
101
+ - test/dummy/log/local.log
102
+ - test/dummy/public/404.html
103
+ - test/dummy/public/422.html
104
+ - test/dummy/public/500.html
105
+ - test/dummy/public/favicon.ico
106
+ - test/dummy/Rakefile
107
+ - test/dummy/README.rdoc
108
+ - test/dummy/script/deploy.rb
109
+ - test/dummy/script/lib/deploy/aws_send.rb
110
+ - test/dummy/script/lib/deploy/git_version_tag.rb
111
+ - test/dummy/script/production/cron_check_updates.rb
112
+ - test/dummy/script/production/deploy.sh
113
+ - test/test_helper.rb
114
+ homepage: http://github.com/mangar/aws_deploy
115
+ licenses: []
116
+ metadata: {}
117
+ post_install_message:
118
+ rdoc_options: []
119
+ require_paths:
120
+ - lib
121
+ required_ruby_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - '>='
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 2.0.3
134
+ signing_key:
135
+ specification_version: 4
136
+ summary: Summary of AwsDeploy.
137
+ test_files:
138
+ - test/aws_deploy_test.rb
139
+ - test/dummy/app/assets/javascripts/application.js
140
+ - test/dummy/app/assets/stylesheets/application.css
141
+ - test/dummy/app/controllers/application_controller.rb
142
+ - test/dummy/app/helpers/application_helper.rb
143
+ - test/dummy/app/views/layouts/application.html.erb
144
+ - test/dummy/bin/bundle
145
+ - test/dummy/bin/rails
146
+ - test/dummy/bin/rake
147
+ - test/dummy/config/application.rb
148
+ - test/dummy/config/aws_deploy.yml
149
+ - test/dummy/config/aws_deploy_.yml
150
+ - test/dummy/config/boot.rb
151
+ - test/dummy/config/database.yml
152
+ - test/dummy/config/environment.rb
153
+ - test/dummy/config/environments/development.rb
154
+ - test/dummy/config/environments/production.rb
155
+ - test/dummy/config/environments/test.rb
156
+ - test/dummy/config/initializers/backtrace_silencers.rb
157
+ - test/dummy/config/initializers/filter_parameter_logging.rb
158
+ - test/dummy/config/initializers/inflections.rb
159
+ - test/dummy/config/initializers/mime_types.rb
160
+ - test/dummy/config/initializers/secret_token.rb
161
+ - test/dummy/config/initializers/session_store.rb
162
+ - test/dummy/config/initializers/wrap_parameters.rb
163
+ - test/dummy/config/locales/en.yml
164
+ - test/dummy/config/routes.rb
165
+ - test/dummy/config.ru
166
+ - test/dummy/db/development.sqlite3
167
+ - test/dummy/log/development.log
168
+ - test/dummy/log/local.log
169
+ - test/dummy/public/404.html
170
+ - test/dummy/public/422.html
171
+ - test/dummy/public/500.html
172
+ - test/dummy/public/favicon.ico
173
+ - test/dummy/Rakefile
174
+ - test/dummy/README.rdoc
175
+ - test/dummy/script/deploy.rb
176
+ - test/dummy/script/lib/deploy/aws_send.rb
177
+ - test/dummy/script/lib/deploy/git_version_tag.rb
178
+ - test/dummy/script/production/cron_check_updates.rb
179
+ - test/dummy/script/production/deploy.sh
180
+ - test/test_helper.rb