capistrano-redeploy 0.0.1 → 0.1.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.
Files changed (66) hide show
  1. data/README.md +4 -2
  2. data/capistrano-redeploy.gemspec +5 -0
  3. data/lib/capistrano-redeploy.rb +2 -1
  4. data/lib/capistrano-redeploy/version.rb +1 -1
  5. data/test/centos6-64/.gitignore +5 -0
  6. data/test/centos6-64/.swp +0 -0
  7. data/test/centos6-64/Capfile +2 -0
  8. data/test/centos6-64/Gemfile +2 -0
  9. data/test/centos6-64/Vagrantfile +99 -0
  10. data/test/centos6-64/run.sh +7 -0
  11. data/test/config/deploy.rb +167 -0
  12. data/test/config/templates/global.sbt.erb +1 -0
  13. data/test/precise64/.gitignore +5 -0
  14. data/test/precise64/Capfile +2 -0
  15. data/test/precise64/Gemfile +2 -0
  16. data/test/precise64/Vagrantfile +99 -0
  17. data/test/precise64/run.sh +7 -0
  18. data/test/project/.gitignore +15 -0
  19. data/test/project/Gemfile +38 -0
  20. data/test/project/README.rdoc +261 -0
  21. data/test/project/Rakefile +7 -0
  22. data/test/project/app/assets/images/rails.png +0 -0
  23. data/test/project/app/assets/javascripts/application.js +15 -0
  24. data/test/project/app/assets/stylesheets/application.css +13 -0
  25. data/test/project/app/controllers/application_controller.rb +3 -0
  26. data/test/project/app/helpers/application_helper.rb +2 -0
  27. data/test/project/app/mailers/.gitkeep +0 -0
  28. data/test/project/app/models/.gitkeep +0 -0
  29. data/test/project/app/views/layouts/application.html.erb +14 -0
  30. data/test/project/config.ru +4 -0
  31. data/test/project/config/application.rb +62 -0
  32. data/test/project/config/boot.rb +6 -0
  33. data/test/project/config/database.yml +25 -0
  34. data/test/project/config/environment.rb +5 -0
  35. data/test/project/config/environments/development.rb +37 -0
  36. data/test/project/config/environments/production.rb +67 -0
  37. data/test/project/config/environments/test.rb +37 -0
  38. data/test/project/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/project/config/initializers/inflections.rb +15 -0
  40. data/test/project/config/initializers/mime_types.rb +5 -0
  41. data/test/project/config/initializers/secret_token.rb +7 -0
  42. data/test/project/config/initializers/session_store.rb +8 -0
  43. data/test/project/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/project/config/locales/en.yml +5 -0
  45. data/test/project/config/routes.rb +58 -0
  46. data/test/project/db/seeds.rb +7 -0
  47. data/test/project/lib/assets/.gitkeep +0 -0
  48. data/test/project/lib/tasks/.gitkeep +0 -0
  49. data/test/project/log/.gitkeep +0 -0
  50. data/test/project/public/404.html +26 -0
  51. data/test/project/public/422.html +26 -0
  52. data/test/project/public/500.html +25 -0
  53. data/test/project/public/favicon.ico +0 -0
  54. data/test/project/public/index.html +241 -0
  55. data/test/project/public/robots.txt +5 -0
  56. data/test/project/script/rails +6 -0
  57. data/test/project/test/fixtures/.gitkeep +0 -0
  58. data/test/project/test/functional/.gitkeep +0 -0
  59. data/test/project/test/integration/.gitkeep +0 -0
  60. data/test/project/test/performance/browsing_test.rb +12 -0
  61. data/test/project/test/test_helper.rb +13 -0
  62. data/test/project/test/unit/.gitkeep +0 -0
  63. data/test/project/vendor/assets/javascripts/.gitkeep +0 -0
  64. data/test/project/vendor/assets/stylesheets/.gitkeep +0 -0
  65. data/test/project/vendor/plugins/.gitkeep +0 -0
  66. metadata +205 -3
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
File without changes
File without changes
File without changes
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ class BrowsingTest < ActionDispatch::PerformanceTest
5
+ # Refer to the documentation for all available options
6
+ # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
+ # :output => 'tmp/performance', :formats => [:flat] }
8
+
9
+ def test_homepage
10
+ get '/'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-redeploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-29 00:00:00.000000000 Z
12
+ date: 2013-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -59,6 +59,86 @@ dependencies:
59
59
  - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: capistrano-copy-subdir
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: 0.1.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: 0.1.0
78
+ - !ruby/object:Gem::Dependency
79
+ name: capistrano-platform-resources
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: 0.1.0
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: 0.1.0
94
+ - !ruby/object:Gem::Dependency
95
+ name: net-scp
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 1.0.4
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 1.0.4
110
+ - !ruby/object:Gem::Dependency
111
+ name: net-ssh
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 2.2.2
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 2.2.2
126
+ - !ruby/object:Gem::Dependency
127
+ name: vagrant
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 1.0.6
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: 1.0.6
62
142
  description: A dangerous recipe that overwrites your running application.
63
143
  email:
64
144
  - yamashita@geishatokyo.com
@@ -74,6 +154,67 @@ files:
74
154
  - capistrano-redeploy.gemspec
75
155
  - lib/capistrano-redeploy.rb
76
156
  - lib/capistrano-redeploy/version.rb
157
+ - test/centos6-64/.gitignore
158
+ - test/centos6-64/.swp
159
+ - test/centos6-64/Capfile
160
+ - test/centos6-64/Gemfile
161
+ - test/centos6-64/Vagrantfile
162
+ - test/centos6-64/run.sh
163
+ - test/config/deploy.rb
164
+ - test/config/templates/global.sbt.erb
165
+ - test/precise64/.gitignore
166
+ - test/precise64/Capfile
167
+ - test/precise64/Gemfile
168
+ - test/precise64/Vagrantfile
169
+ - test/precise64/run.sh
170
+ - test/project/.gitignore
171
+ - test/project/Gemfile
172
+ - test/project/README.rdoc
173
+ - test/project/Rakefile
174
+ - test/project/app/assets/images/rails.png
175
+ - test/project/app/assets/javascripts/application.js
176
+ - test/project/app/assets/stylesheets/application.css
177
+ - test/project/app/controllers/application_controller.rb
178
+ - test/project/app/helpers/application_helper.rb
179
+ - test/project/app/mailers/.gitkeep
180
+ - test/project/app/models/.gitkeep
181
+ - test/project/app/views/layouts/application.html.erb
182
+ - test/project/config.ru
183
+ - test/project/config/application.rb
184
+ - test/project/config/boot.rb
185
+ - test/project/config/database.yml
186
+ - test/project/config/environment.rb
187
+ - test/project/config/environments/development.rb
188
+ - test/project/config/environments/production.rb
189
+ - test/project/config/environments/test.rb
190
+ - test/project/config/initializers/backtrace_silencers.rb
191
+ - test/project/config/initializers/inflections.rb
192
+ - test/project/config/initializers/mime_types.rb
193
+ - test/project/config/initializers/secret_token.rb
194
+ - test/project/config/initializers/session_store.rb
195
+ - test/project/config/initializers/wrap_parameters.rb
196
+ - test/project/config/locales/en.yml
197
+ - test/project/config/routes.rb
198
+ - test/project/db/seeds.rb
199
+ - test/project/lib/assets/.gitkeep
200
+ - test/project/lib/tasks/.gitkeep
201
+ - test/project/log/.gitkeep
202
+ - test/project/public/404.html
203
+ - test/project/public/422.html
204
+ - test/project/public/500.html
205
+ - test/project/public/favicon.ico
206
+ - test/project/public/index.html
207
+ - test/project/public/robots.txt
208
+ - test/project/script/rails
209
+ - test/project/test/fixtures/.gitkeep
210
+ - test/project/test/functional/.gitkeep
211
+ - test/project/test/integration/.gitkeep
212
+ - test/project/test/performance/browsing_test.rb
213
+ - test/project/test/test_helper.rb
214
+ - test/project/test/unit/.gitkeep
215
+ - test/project/vendor/assets/javascripts/.gitkeep
216
+ - test/project/vendor/assets/stylesheets/.gitkeep
217
+ - test/project/vendor/plugins/.gitkeep
77
218
  homepage: https://github.com/yyuu/capistrano-redeploy
78
219
  licenses:
79
220
  - MIT
@@ -99,4 +240,65 @@ rubygems_version: 1.8.23
99
240
  signing_key:
100
241
  specification_version: 3
101
242
  summary: A dangerous recipe that overwrites your running application.
102
- test_files: []
243
+ test_files:
244
+ - test/centos6-64/.gitignore
245
+ - test/centos6-64/.swp
246
+ - test/centos6-64/Capfile
247
+ - test/centos6-64/Gemfile
248
+ - test/centos6-64/Vagrantfile
249
+ - test/centos6-64/run.sh
250
+ - test/config/deploy.rb
251
+ - test/config/templates/global.sbt.erb
252
+ - test/precise64/.gitignore
253
+ - test/precise64/Capfile
254
+ - test/precise64/Gemfile
255
+ - test/precise64/Vagrantfile
256
+ - test/precise64/run.sh
257
+ - test/project/.gitignore
258
+ - test/project/Gemfile
259
+ - test/project/README.rdoc
260
+ - test/project/Rakefile
261
+ - test/project/app/assets/images/rails.png
262
+ - test/project/app/assets/javascripts/application.js
263
+ - test/project/app/assets/stylesheets/application.css
264
+ - test/project/app/controllers/application_controller.rb
265
+ - test/project/app/helpers/application_helper.rb
266
+ - test/project/app/mailers/.gitkeep
267
+ - test/project/app/models/.gitkeep
268
+ - test/project/app/views/layouts/application.html.erb
269
+ - test/project/config.ru
270
+ - test/project/config/application.rb
271
+ - test/project/config/boot.rb
272
+ - test/project/config/database.yml
273
+ - test/project/config/environment.rb
274
+ - test/project/config/environments/development.rb
275
+ - test/project/config/environments/production.rb
276
+ - test/project/config/environments/test.rb
277
+ - test/project/config/initializers/backtrace_silencers.rb
278
+ - test/project/config/initializers/inflections.rb
279
+ - test/project/config/initializers/mime_types.rb
280
+ - test/project/config/initializers/secret_token.rb
281
+ - test/project/config/initializers/session_store.rb
282
+ - test/project/config/initializers/wrap_parameters.rb
283
+ - test/project/config/locales/en.yml
284
+ - test/project/config/routes.rb
285
+ - test/project/db/seeds.rb
286
+ - test/project/lib/assets/.gitkeep
287
+ - test/project/lib/tasks/.gitkeep
288
+ - test/project/log/.gitkeep
289
+ - test/project/public/404.html
290
+ - test/project/public/422.html
291
+ - test/project/public/500.html
292
+ - test/project/public/favicon.ico
293
+ - test/project/public/index.html
294
+ - test/project/public/robots.txt
295
+ - test/project/script/rails
296
+ - test/project/test/fixtures/.gitkeep
297
+ - test/project/test/functional/.gitkeep
298
+ - test/project/test/integration/.gitkeep
299
+ - test/project/test/performance/browsing_test.rb
300
+ - test/project/test/test_helper.rb
301
+ - test/project/test/unit/.gitkeep
302
+ - test/project/vendor/assets/javascripts/.gitkeep
303
+ - test/project/vendor/assets/stylesheets/.gitkeep
304
+ - test/project/vendor/plugins/.gitkeep