This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
688 lines (546 loc) · 29.8 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
2011-09-12 Wael Nasreddine <[email protected]>
* lib/capistrano-exts/receipts/contao.rb: MISC: Typo in the function name
* lib/capistrano-exts/receipts/functions.rb: MISC: The options hash should
not be mandatory.
2011-09-08 Wael Nasreddine <[email protected]>
* lib/capistrano-exts/receipts/contao.rb: MISC: Do not overwrite the
generated localconfig.php.
* README.md: MISC: Add a require false which is required for rails.
* README.md, lib/capistrano-exts/version.rb: MISC: Bump to version 1.8.1.
* lib/capistrano-exts/receipts/servers.rb: MISC: Typo in the task name.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.8.0
2011-09-07 Wael Nasreddine <[email protected]>
* lib/capistrano-exts/receipts/mysql.rb: MISC: Refactor the *_credentials and
*_root_credentials to one iteration.
* lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/git.rb, lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Refactor the
capture(cat..) to read(..).
* lib/capistrano-exts/receipts/mysql.rb: Do not run the task
print_credentials (and for root) if it is already in the ARGV (it will be
executed twice. closes #3 @5m
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.7.0
* lib/capistrano-exts/receipts/multistage.rb: MISC: Add a task that will
synchronise any stage with any other stage with confirmation of course.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.6.0
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Add a new config param to
setup the backups path.
* lib/capistrano-exts/receipts/functions.rb: MISC: Using data.present? breaks
if data are binary.
* lib/capistrano-exts/receipts/deploy.rb,
lib/capistrano-exts/receipts/servers.rb: MISC: Add a task deploy:folders and
use it in deploy:setup:server:folders and after deploy:setup as well, this
will ensure folders are available in shared hosts.
* lib/capistrano-exts/receipts/contents.rb: MISC: Add a task to import the
contents folder.
* lib/capistrano-exts/receipts/contents.rb: MISC: Add a task to back the
contents folder before exporting them and use the backup file to export the
contents.
* lib/capistrano-exts/receipts/contao.rb: MISC: Replace the DB_HOST in the
localconfig as well.
* examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Remove a misleadin comment
in the config file.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.5.1
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: We should be able to
specify the username and the hostname of the database, we should not parse
the db role because it should be SSHable, it can't be on a shared hosting.
* lib/capistrano-exts/receipts/contents.rb: MISC: Add the h option to the tar
command, this will replace symlinks with regular files.
* lib/capistrano-exts/receipts/git.rb: Rename deploy to git
* lib/capistrano-exts/receipts/deploy.rb: MISC: Move more default public
folder out of the way.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.5.0
* lib/capistrano-exts/receipts/contents.rb,
lib/capistrano-exts/receipts/deploy.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers.rb: MISC: Add a task to send the ssh key
and another to move the htdocs folder if it does indeed exist.
2011-09-06 Wael Nasreddine <[email protected]>
* lib/capistrano-exts/receipts/contents.rb,
lib/capistrano-exts/receipts/mysql.rb: MISC: Export file name should not be
mandatory.'
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.4.0
* lib/capistrano-exts/receipts/functions.rb: MISC: Add the millisecond to the
generated file name, to prevent any race condition that might arise.
* README.md, examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/contents.rb,
lib/capistrano-exts/receipts/deploy.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Add a contents receipt to
import/export contents.
* README.md, examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/multistage.rb,
lib/capistrano-exts/receipts/servers.rb,
lib/capistrano-exts/receipts/servers/db_server.rb,
lib/capistrano-exts/receipts/servers/web_server.rb,
lib/capistrano-exts/templates/multistage.rb: Rename all :prepare tasks to
:setup which is a more appropriate name @10m
2011-09-05 Wael Nasreddine <[email protected]>
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.6
* lib/capistrano-exts/receipts/contao.rb: MISC: Add a \n after order
deny,allow
* .../receipts/servers/web_server/nginx.rb: MISC: Define denied_access only
if it exists.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.5
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
.../receipts/servers/web_server/nginx.rb,
lib/capistrano-exts/templates/multistage.rb,
.../templates/web_servers/nginx.conf.erb,
spec/rendered_templates/nginx_php_fpm.conf,
spec/servers/web_server/nginx_spec.rb: MISC: Implement a denied_access.
* lib/capistrano-exts/receipts/contao.rb: MISC: Deny access from logs folder.
* lib/capistrano-exts/receipts/contao.rb: MISC: Use fetch
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.4
* lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/mysql.rb: Use a random remote file name to avoid
race condition closes #2 @5m
2011-09-04 Wael Nasreddine <[email protected]>
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.3
* lib/capistrano-exts/receipts/mysql.rb: Enhance how we look for the sql file
in {import,export}_db_dump Instead of expecting just one more argument (like
staging in 'cap staging mysql:import_db_dump), look for the index of the task
we're requesting and add one to it.. This way wherever the task has been
added to the call, we are able to fetch the file name from the command line
string refs #1 @10m
* lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Rename
print_web_server_http_auth to print_http_auth.
* lib/capistrano-exts/receipts/servers/web_server.rb: Rename
print_web_server_auth_file to print_web_server_http_auth.
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.2
* lib/capistrano-exts/receipts/multistage.rb,
lib/capistrano-exts/receipts/mysql.rb: Fix mysql:import_db_dump and
mysql:export_db_dump closes #1 @13m
* README.md, lib/capistrano-exts/version.rb: Bump to version 1.3.1
* lib/capistrano-exts/receipts/mysql.rb: MISC: Fix a few issues with mysql
receipt.
* lib/capistrano-exts/version.rb: Bump to version 1.3.0
* lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Use cp/rm instead
of mv.
* lib/capistrano-exts/receipts/mysql.rb: MISC: Do not write to the target
folder directly but instead write it to a temporary file and move it with
try_sudo.
* lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers/web_server.rb: MISC: The database server
should not be localhost but instead the primary database server.
* lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Instead of
looking for a proc, better is to look if it responds to :call.
* lib/capistrano-exts/version.rb: Bump to version 1.2.0
* lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/mysql.rb: MISC: Make sure we do have a user and
a pass, don't assume that if we have a hash we do have auth.
* lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Add a new task
that prints the http_basic_auth for easier access to these informations.
* lib/capistrano-exts/receipts/mysql.rb: MISC: Enhance the warnings (user
experience)
* lib/capistrano-exts/receipts/mysql.rb: MISC: If we couldn't drop the
database (if we do not have permissions to do so) try dropping all tables.
2011-09-03 Wael Nasreddine <[email protected]>
* spec/spec_helper.rb: MISC: in 34f771f5ddfa0b5274396e75d3b45e92d67ee3c0 I
have remove some gems, disable mocha for the moment.
* lib/capistrano-exts/version.rb: Bump to version 1.1.5
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/servers/web_server.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Calling the latest_relase
this early (deploy:server:prepare) breaks because capistrano is trying to run
ls -x on the server.
* lib/capistrano-exts/version.rb: Bump to version 1.1.4
* capistrano-exts.gemspec, spec/spec_helper.rb, spec/support/factories.rb:
MISC: Fix the homepage url and remove some non-used developement gems.
* lib/capistrano-exts/version.rb: Bump to version 1.1.3
* lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Assign a default for
public_path.
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Fix a few minor issues and
add some more comments in the config file.
* lib/capistrano-exts/version.rb: Bump to version 1.1.2
* lib/capistrano-exts/templates/multistage.rb: MISC: Rename nasreddine.com to
example.com in the server-details in the template.
* lib/capistrano-exts/version.rb: Bump to version 1.1.1
* lib/capistrano-exts/receipts/multistage.rb: MISC: Print some info while
preparing the multistage.
* lib/capistrano-exts/version.rb: Bump to version 1.1.0
* lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/mysql.rb: MISC: Add some rollback callbacks.
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/deploy.rb,
lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Add some comments
explaining the configurations.
* README.md: MISC: Wrong gem name.
* lib/capistrano-exts/receipts/mysql.rb: MISC: Make sure we have parsed the
credentials, if the regex does not match we would have gotten a few
surprises.
* lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers.rb,
lib/capistrano-exts/receipts/servers/db_server.rb,
lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Fix a few minor
issues, it has been tested now.
* lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/mysql.rb: MISC: Create the database once the
server is setup and not after contao:setup
* lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/mysql.rb,
lib/capistrano-exts/receipts/servers/db_server.rb,
lib/capistrano-exts/receipts/servers/web_server.rb: MISC: Create the database
user and add it to the mysql_credentials_file.
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/servers/web_server.rb,
lib/capistrano-exts/servers/web_server/nginx.rb,
lib/capistrano-exts/templates/multistage.rb, spec/requests/nginx_spec.rb,
spec/servers/web_server/nginx_spec.rb: MISC: Rename rails_reverse_proxy to
reverse_proxy.
* lib/capistrano-exts/version.rb: Bump to version 1.0.1
* examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/servers/web_server.rb,
lib/capistrano-exts/servers/web_server/nginx.rb,
lib/capistrano-exts/templates/multistage.rb,
.../templates/web_servers/nginx.conf.erb, spec/requests/nginx_spec.rb,
spec/servers/web_server/nginx_spec.rb: MISC: Write all tests for nginx and
fix a minor issue with reverse_proxy_socket
* .travis.yml, capistrano-exts.gemspec: MISC: Remove jruby testing for the
moment, I should look at it later.
* .travis.yml: MISC: Let's try without bundle exec.
* .travis.yml: MISC: Let bundle install everything.
* Gemfile, capistrano-exts.gemspec: MISC: Disable growl_notify because it
only works on Mac, keep it commented as a guideline.
* .travis.yml, Gemfile, capistrano-exts.gemspec: MISC: Make sure rspec is
included in test group.
* .travis.yml: MISC: Still trying to fix travis-ci
* .../receipts/servers/web_server/apache.rb,
.../receipts/servers/web_server/nginx.rb: MISC: Use fetch()
* lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/deploy.rb: MISC: Move contao:fix_permissions to
deploy:fix_permissions, and chmod g+w if group_writable, by default true.
* .travis.yml: MISC: Don't install developement nor staging groups.
* README.md, examples/php_fpm/deploy.rb, examples/rails_passenger/deploy.rb,
examples/rails_reverse_proxy/deploy.rb, lib/capistrano-exts/receipts/base.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/deploy.rb, lib/capistrano-exts/receipts/git.rb,
lib/capistrano-exts/receipts/mysql.rb, lib/capistrano-exts/receipts/rails.rb,
lib/capistrano-exts/receipts/servers.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Replace base with deploy.
* README.md: MISC: A new line is needed before block codes.
* MIT-LICENSE, README.md: MISC: Add a very basic README and a License.
* examples/rails_passenger/deploy.rb, examples/rails_reverse_proxy/deploy.rb,
lib/capistrano-exts/receipts/rails.rb: MISC: Rails applications should
require rails and not contao.
2011-09-02 Wael Nasreddine <[email protected]>
* .travis.yml: MISC: Add travis-ci config file.
* examples/php_fpm/deploy.rb, examples/php_fpm/deploy/development.rb,
examples/php_fpm/deploy/production.rb, examples/php_fpm/deploy/staging.rb,
examples/rails_passenger/deploy.rb,
examples/rails_passenger/deploy/development.rb,
examples/rails_passenger/deploy/production.rb,
examples/rails_passenger/deploy/staging.rb,
examples/rails_reverse_proxy/deploy.rb,
examples/rails_reverse_proxy/deploy/development.rb,
examples/rails_reverse_proxy/deploy/production.rb,
examples/rails_reverse_proxy/deploy/staging.rb,
lib/capistrano-exts/templates/multistage.rb: MISC: Add some examples.
* lib/capistrano-exts/templates/multistage.rb: MISC: Fix a typo in the
template file.
* spec/requests/nginx_spec.rb, spec/servers/web_server/nginx_spec.rb: MISC:
Fix the tests.
* Gemfile, Guardfile, capistrano-extensions.gemspec, capistrano-exts.gemspec,
lib/capistrano-extensions.rb, lib/capistrano-extensions/core_ext.rb,
.../core_ext/string/filters.rb, lib/capistrano-extensions/receipts.rb,
lib/capistrano-extensions/receipts/base.rb,
lib/capistrano-extensions/receipts/contao.rb,
lib/capistrano-extensions/receipts/functions.rb,
lib/capistrano-extensions/receipts/git.rb,
lib/capistrano-extensions/receipts/god.rb,
lib/capistrano-extensions/receipts/multistage.rb,
lib/capistrano-extensions/receipts/mysql.rb,
lib/capistrano-extensions/receipts/rails.rb,
lib/capistrano-extensions/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb,
lib/capistrano-extensions/receipts/unicorn.rb,
lib/capistrano-extensions/servers/utils/erb.rb,
.../servers/utils/variables.rb,
lib/capistrano-extensions/servers/web_server.rb,
.../servers/web_server/nginx.rb,
lib/capistrano-extensions/templates/multistage.rb,
.../templates/web_servers/nginx.conf.erb,
lib/capistrano-extensions/version.rb, lib/capistrano-exts.rb,
lib/capistrano-exts/core_ext.rb,
lib/capistrano-exts/core_ext/string/filters.rb,
lib/capistrano-exts/receipts.rb, lib/capistrano-exts/receipts/base.rb,
lib/capistrano-exts/receipts/contao.rb,
lib/capistrano-exts/receipts/functions.rb,
lib/capistrano-exts/receipts/git.rb, lib/capistrano-exts/receipts/god.rb,
lib/capistrano-exts/receipts/multistage.rb,
lib/capistrano-exts/receipts/mysql.rb, lib/capistrano-exts/receipts/rails.rb,
lib/capistrano-exts/receipts/servers.rb,
lib/capistrano-exts/receipts/servers/db_server.rb,
lib/capistrano-exts/receipts/servers/web_server.rb,
.../receipts/servers/web_server/apache.rb,
.../receipts/servers/web_server/nginx.rb,
lib/capistrano-exts/receipts/unicorn.rb,
lib/capistrano-exts/servers/utils/erb.rb,
lib/capistrano-exts/servers/utils/variables.rb,
lib/capistrano-exts/servers/web_server.rb,
lib/capistrano-exts/servers/web_server/nginx.rb,
lib/capistrano-exts/templates/multistage.rb,
.../templates/web_servers/nginx.conf.erb, lib/capistrano-exts/version.rb,
spec/spec_helper.rb: MISC: Rename the extension to capistrano-exts as an
existing gem exists with that name and add some useful tasks for nginx and
apache.
* lib/capistrano-extensions/receipts/multistage.rb,
lib/capistrano-extensions/receipts/mysql.rb,
.../receipts/servers/web_server.rb,
lib/capistrano-extensions/servers/web_server.rb,
lib/capistrano-extensions/templates/multistage.rb,
.../templates/web_servers/nginx.conf.erb: MISC: MySQL needs a host and fix a
few minor issues.
* lib/capistrano-extensions.rb, lib/capistrano-extensions/receipts/contao.rb,
lib/capistrano-extensions/receipts/functions.rb,
lib/capistrano-extensions/receipts/mysql.rb,
lib/capistrano-extensions/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb,
lib/capistrano-extensions/servers/web_server.rb,
.../servers/web_server/nginx.rb: MISC: Web configuration and passwords are
complete..
* lib/capistrano-extensions/version.rb: MISC: Define Version::ARRAY in case
we use it later.
* capistrano-extensions.gemspec, lib/capistrano-extensions.rb,
lib/capistrano-extensions/core_ext.rb, .../core_ext/string/filters.rb,
lib/capistrano-extensions/receipts.rb,
lib/capistrano-extensions/receipts/base.rb,
lib/capistrano-extensions/receipts/contao.rb,
lib/capistrano-extensions/receipts/functions.rb,
lib/capistrano-extensions/receipts/git.rb,
lib/capistrano-extensions/receipts/god.rb,
lib/capistrano-extensions/receipts/mysql.rb,
.../receipts/servers/web_server.rb,
lib/capistrano-extensions/servers/utils/erb.rb,
.../servers/utils/variables.rb,
lib/capistrano-extensions/servers/web_server.rb,
.../servers/web_server/nginx.rb, lib/capistrano-extensions/version.rb,
spec/spec_helper.rb: MISC: Make sure we run in a specific role, don't let
active_support overwrite capture and move the functions to functions.rb
* lib/capistrano-extensions/receipts/base.rb,
lib/capistrano-extensions/receipts/contao.rb,
lib/capistrano-extensions/receipts/rails.rb: MISC: Replace blank?() and
present?() with the one given by active_support's core_ext.
* capistrano-extensions.gemspec: MISC: Change the summary.
* lib/capistrano-extensions/receipts/multistage.rb: MISC: Bring home all of
capistrano-ext features.
* lib/capistrano-extensions/receipts.rb, .../receipts/configurations.rb,
lib/capistrano-extensions/receipts/multistage.rb: MISC: Include most of
capistrano-ext functionalities.
* Gemfile, Guardfile, capistrano-extensions.gemspec,
capistrano-technogate.gemspec, lib/capistrano-extensions.rb,
lib/capistrano-extensions/core_ext.rb, .../core_ext/string/filters.rb,
lib/capistrano-extensions/receipts.rb,
lib/capistrano-extensions/receipts/base.rb, .../receipts/configurations.rb,
lib/capistrano-extensions/receipts/contao.rb,
lib/capistrano-extensions/receipts/god.rb,
lib/capistrano-extensions/receipts/mysql.rb,
lib/capistrano-extensions/receipts/rails.rb,
lib/capistrano-extensions/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb,
lib/capistrano-extensions/receipts/unicorn.rb,
lib/capistrano-extensions/servers/utils/erb.rb,
.../servers/utils/variables.rb,
lib/capistrano-extensions/servers/web_server.rb,
.../servers/web_server/nginx.rb, .../templates/web_servers/nginx.conf.erb,
lib/capistrano-extensions/version.rb, lib/capistrano-technogate.rb,
lib/capistrano-technogate/core_ext.rb, .../core_ext/string/filters.rb,
lib/capistrano-technogate/receipts/base.rb, .../receipts/configurations.rb,
lib/capistrano-technogate/receipts/contao.rb,
lib/capistrano-technogate/receipts/god.rb,
lib/capistrano-technogate/receipts/mysql.rb,
lib/capistrano-technogate/receipts/rails.rb,
lib/capistrano-technogate/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb,
lib/capistrano-technogate/receipts/unicorn.rb,
lib/capistrano-technogate/servers/utils/erb.rb,
.../servers/utils/variables.rb,
lib/capistrano-technogate/servers/web_server.rb,
.../servers/web_server/nginx.rb, .../templates/web_servers/nginx.conf.erb,
lib/capistrano-technogate/version.rb, spec/spec_helper.rb: MISC: Rename this
project to capistrano-extensions.
* capistrano-technogate.gemspec, lib/capistrano-technogate/receipts/base.rb,
lib/capistrano-technogate/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb,
.../templates/web_servers/nginx.conf.erb,
spec/servers/web_server/nginx_spec.rb: MISC: deploy:server are still in
progress.
2011-09-01 Wael Nasreddine <[email protected]>
* capistrano-technogate.gemspec, lib/capistrano-technogate.rb,
lib/capistrano-technogate/core_ext.rb,
lib/capistrano-technogate/core_ext/README.rdoc,
lib/capistrano-technogate/core_ext/object/blank.rb,
lib/capistrano-technogate/core_ext/object/try.rb,
.../core_ext/string/encoding.rb, .../core_ext/string/filters.rb: MISC: Why
not use active_support/core_ext ?
* lib/capistrano-technogate/receipts/servers.rb,
.../receipts/servers/db_server.rb, .../receipts/servers/web_server.rb: MISC:
Add tasks for server preparations, tasks need to be implemented.
* spec/rendered_templates/nginx_php_fpm.conf: MISC: Fix the test.
* .../core_ext/string/filters.rb,
lib/capistrano-technogate/servers/utils/erb.rb,
lib/capistrano-technogate/servers/web_server.rb,
.../templates/web_servers/nginx.conf.erb,
spec/rendered_templates/nginx_php_fpm.conf: MISC: Beautify the output a
little bit.
* lib/capistrano-technogate/servers/web_server.rb,
spec/rendered_templates/nginx_php_fpm.conf, spec/requests/nginx_spec.rb,
spec/servers/web_server/nginx_spec.rb, spec/spec_helper.rb: MISC: Complete
the nginx template for php_fpm.
* lib/capistrano-technogate/servers/web_server.rb,
spec/servers/web_server/nginx_spec.rb: MISC: Finish php_fpm functionality.
* lib/capistrano-technogate/servers/utils/erb.rb,
lib/capistrano-technogate/servers/web_server.rb,
.../templates/web_servers/nginx.conf.erb,
spec/servers/web_server/nginx_spec.rb: MISC: A few enhancements.
* Guardfile, capistrano-technogate.gemspec: MISC: Enable guard for bundler
and rspec
* .../servers/utils/variables.rb,
lib/capistrano-technogate/servers/web_server.rb,
.../servers/web_server/common.rb, .../servers/web_server/nginx.rb: MISC:
Replace the template variables by a meta-programming for easier maintenance.
* Rakefile, capistrano-technogate.gemspec, lib/capistrano-technogate.rb,
lib/capistrano-technogate/core_ext.rb,
lib/capistrano-technogate/core_ext/README.rdoc,
lib/capistrano-technogate/core_ext/object/blank.rb,
lib/capistrano-technogate/core_ext/object/try.rb,
.../core_ext/string/encoding.rb, lib/capistrano-technogate/receipts/base.rb,
.../receipts/configurations.rb, lib/capistrano-technogate/receipts/contao.rb,
lib/capistrano-technogate/receipts/god.rb,
lib/capistrano-technogate/receipts/mysql.rb,
lib/capistrano-technogate/receipts/rails.rb,
lib/capistrano-technogate/receipts/servers.rb,
lib/capistrano-technogate/receipts/unicorn.rb,
lib/capistrano-technogate/servers/utils/erb.rb,
.../servers/web_server/common.rb, .../servers/web_server/nginx.rb,
.../templates/web_servers/nginx.conf.erb,
lib/capistrano-technogate/version.rb, lib/capistrano/technogate/base.rb,
lib/capistrano/technogate/configurations.rb,
lib/capistrano/technogate/contao.rb, lib/capistrano/technogate/god.rb,
lib/capistrano/technogate/mysql.rb, lib/capistrano/technogate/rails.rb,
lib/capistrano/technogate/unicorn.rb, lib/capistrano/technogate/version.rb,
spec/servers/web_server/nginx_spec.rb, spec/spec_helper.rb,
spec/support/factories.rb: MISC: Major redesign.
2011-08-31 Wael Nasreddine <[email protected]>
* lib/capistrano/technogate/base.rb,
lib/capistrano/technogate/configurations.rb,
lib/capistrano/technogate/mysql.rb: MISC: Add a function parsing mysql root
credentials.
* lib/capistrano/technogate/version.rb: MISC: Bump to version 0.1.1
* lib/capistrano/technogate/rails.rb: MISC: Before running
deploy:assets:precompile make sure bundle:install has ran.
* lib/capistrano/technogate/version.rb: MISC: Bump to version 0.1.0
* lib/capistrano/technogate/configurations.rb,
lib/capistrano/technogate/contao.rb, lib/capistrano/technogate/mysql.rb,
lib/capistrano/technogate/rails.rb: MISC: Move MySQL tasks into it's own
file.
* lib/capistrano/technogate/base.rb, lib/capistrano/technogate/contao.rb,
lib/capistrano/technogate/version.rb: MISC: If contao is included, overwrite
deploy:finalize_update.
* capistrano-technogate.gemspec: MISC: Add github projet page as the home
page.
* ..gemspec, .gitignore, Gemfile, Rakefile, base.rb,
capistrano-technogate.gemspec, configurations.rb, contao.rb, god.rb,
lib/capistrano/technogate/base.rb,
lib/capistrano/technogate/configurations.rb,
lib/capistrano/technogate/contao.rb, lib/capistrano/technogate/god.rb,
lib/capistrano/technogate/mysql.rb, lib/capistrano/technogate/rails.rb,
lib/capistrano/technogate/unicorn.rb, lib/capistrano/technogate/version.rb,
mysql.rb, rails.rb, unicorn.rb: Initial gem.
* base.rb, configurations.rb, mysql.rb: MISC: Import modifications from my
latest projects.
2011-08-25 Wael Nasreddine <[email protected]>
* contao.rb: Commit contao.rb
* base.rb, configurations.rb, god.rb, rails.rb, unicorn.rb: MISC: Adjust the
receipts.
* base.rb, configurations.rb, god.rb, rails.rb: Initial Import.