public
Rubygem
Description: Bang! You've deployed!
Homepage: http://opensource.thinkrelevance.com/
Clone URL: git://github.com/relevance/cap_gun.git
Search Repo:
Correct typos in rdoc/comments
Jason Rudolph (author)
Sun Apr 20 04:21:59 -0700 2008
commit  d43bcdf151e09812197f8dce05795a5cd7e2fca7
tree    590dba23102e88eda707df524bcff22f01be9c37
parent  0c0826139c1fa0b51bef1e7643530dde806b5df6
...
49
50
51
52
 
53
54
55
...
62
63
64
65
 
66
67
68
...
90
91
92
93
 
94
95
96
...
49
50
51
 
52
53
54
55
...
62
63
64
 
65
66
67
68
...
90
91
92
 
93
94
95
96
0
@@ -49,7 +49,7 @@ module CapGun
0
       RUBY_PLATFORM
0
     end
0
   
0
- # Gives you a prettier date/time for output form the standard Capistrano timestamp'ed release directory.
0
+ # Gives you a prettier date/time for output from the standard Capistrano timestamped release directory.
0
     # This assumes Capistrano uses UTC for its date/timestamped directories, and converts to the local
0
     # machine timezone.
0
     def humanize_release_time(path)
0
@@ -62,7 +62,7 @@ module CapGun
0
     # Use some DateTime magicrey to convert UTC to the current time zone
0
     # When the whole world is on Rails 2.1 (and therefore new ActiveSupport) we can use the magic timezone support there.
0
     def convert_from_utc(timestamp)
0
- # we know Capistrano release timestaps are UTC, but Ruby doesn't, so make it explicit
0
+ # we know Capistrano release timestamps are UTC, but Ruby doesn't, so make it explicit
0
       utc_time = timestamp << "UTC"
0
       datetime = DateTime.parse(utc_time)
0
       datetime.new_offset(local_datetime_zone_offset)
0
@@ -90,7 +90,7 @@ module CapGun
0
       # Grab the options for emaililng from cap_gun_email_envelope (should be set in your deploy file)
0
       #
0
       # Valid options:
0
- # :recipients (required) an array or string of email address(es) who should get notifications
0
+ # :recipients (required) an array or string of email address(es) that should get notifications
0
       # :from the sender of the notification, defaults to cap_gun@example.com
0
       # :email_prefix subject prefix, defaults to [DEPLOY]
0
       def init(envelope = {})

Comments

    No one has commented yet.