diff options
author | Michael Stahnke <stahnma@puppetlabs.com> | 2011-06-22 14:57:03 -0700 |
---|---|---|
committer | Michael Stahnke <stahnma@puppetlabs.com> | 2011-06-22 14:57:03 -0700 |
commit | a49d5b885a62aa9bd3a686d411739723a67c399c (patch) | |
tree | 6ce8e1091eea220c126805dc0302af96705efba3 /lib/puppet/interface | |
parent | 36d8caff18964841b6e6c33ebf595ca39e8b0871 (diff) | |
download | puppet-a49d5b885a62aa9bd3a686d411739723a67c399c.tar.gz puppet-a49d5b885a62aa9bd3a686d411739723a67c399c.tar.xz puppet-a49d5b885a62aa9bd3a686d411739723a67c399c.zip |
(#8048) Gem install puppet no longer fails if rdoc enabled.
Rdoc wouldn't parse lib/puppet/interface/options.rb
The offending code has been removed.
This was causing issues for users wishing to upgrade puppet,
via gem or puppet.
Signed-off-by: Michael Stahnke <stahnma@puppetlabs.com>
Diffstat (limited to 'lib/puppet/interface')
-rw-r--r-- | lib/puppet/interface/option.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/puppet/interface/option.rb b/lib/puppet/interface/option.rb index b68bdeb12..3cd930acf 100644 --- a/lib/puppet/interface/option.rb +++ b/lib/puppet/interface/option.rb @@ -2,8 +2,6 @@ require 'puppet/interface' class Puppet::Interface::Option include Puppet::Interface::TinyDocs - # For compatibility, deprecated, and should go fairly soon... - ['', '='].each { |x| alias :"desc#{x}" :"description#{x}" } def initialize(parent, *declaration, &block) @parent = parent |