ruby-changes:32582
From: zzak <ko1@a...>
Date: Mon, 20 Jan 2014 13:57:39 +0900 (JST)
Subject: [ruby-changes:32582] zzak:r44661 (trunk): * lib/rubygems/version.rb: [DOC] Use gender-neutral pronouns [ci skip]
zzak 2014-01-20 13:57:31 +0900 (Mon, 20 Jan 2014) New Revision: 44661 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44661 Log: * lib/rubygems/version.rb: [DOC] Use gender-neutral pronouns [ci skip] * lib/rubygems/security.rb: ditto Modified files: trunk/ChangeLog trunk/lib/rubygems/security.rb trunk/lib/rubygems/version.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 44660) +++ ChangeLog (revision 44661) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Jan 20 13:55:03 2014 Zachary Scott <e@z...> + + * lib/rubygems/version.rb: [DOC] Use gender-neutral pronouns [ci skip] + * lib/rubygems/security.rb: ditto + Sun Jan 19 06:38:48 2014 Benoit Daloze <eregontp@g...> * compar.c (cmp_equal): warn for this release and still rescue Index: lib/rubygems/version.rb =================================================================== --- lib/rubygems/version.rb (revision 44660) +++ lib/rubygems/version.rb (revision 44661) @@ -81,8 +81,8 @@ https://github.com/ruby/ruby/blob/trunk/lib/rubygems/version.rb#L81 # # * Any "public" release of a gem should have a different version. Normally # that means incrementing the build number. This means a developer can -# generate builds all day long for himself, but as soon as he/she makes a -# public release, the version must be updated. +# generate builds all day long, but as soon as they make a public release, +# the version must be updated. # # === Examples # @@ -99,26 +99,25 @@ https://github.com/ruby/ruby/blob/trunk/lib/rubygems/version.rb#L99 # Version 1.1.1:: Fixed a bug in the linked list implementation. # Version 1.1.2:: Fixed a bug introduced in the last fix. # -# Client A needs a stack with basic push/pop capability. He writes to the -# original interface (no <tt>top</tt>), so his version constraint looks -# like: +# Client A needs a stack with basic push/pop capability. They write to the +# original interface (no <tt>top</tt>), so their version constraint looks like: # # gem 'stack', '~> 0.0' # # Essentially, any version is OK with Client A. An incompatible change to -# the library will cause him grief, but he is willing to take the chance (we -# call Client A optimistic). +# the library will cause them grief, but they are willing to take the chance +# (we call Client A optimistic). # -# Client B is just like Client A except for two things: (1) He uses the -# <tt>depth</tt> method and (2) he is worried about future -# incompatibilities, so he writes his version constraint like this: +# Client B is just like Client A except for two things: (1) They use the +# <tt>depth</tt> method and (2) they are worried about future +# incompatibilities, so they write their version constraint like this: # # gem 'stack', '~> 0.1' # # The <tt>depth</tt> method was introduced in version 0.1.0, so that version # or anything later is fine, as long as the version stays below version 1.0 # where incompatibilities are introduced. We call Client B pessimistic -# because he is worried about incompatible future changes (it is OK to be +# because they are worried about incompatible future changes (it is OK to be # pessimistic!). # # == Preventing Version Catastrophe: Index: lib/rubygems/security.rb =================================================================== --- lib/rubygems/security.rb (revision 44660) +++ lib/rubygems/security.rb (revision 44661) @@ -120,11 +120,11 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rubygems/security.rb#L120 # * HighSecurity - Here's the bugger that got us into this mess. # The HighSecurity policy is identical to the MediumSecurity policy, # except that it does not allow unsigned gems. A malicious user -# doesn't have a whole lot of options here; he can't modify the -# package contents without invalidating the signature, and he can't +# doesn't have a whole lot of options here; they can't modify the +# package contents without invalidating the signature, and they can't # modify or remove signature or the signing certificate chain, or # RubyGems will simply refuse to install the package. Oh well, maybe -# he'll have better luck causing problems for CPAN users instead :). +# they'll have better luck causing problems for CPAN users instead :). # # The reason RubyGems refused to install your shiny new signed gem was because # it was from an untrusted source. Well, your code is infallible (naturally), -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/