diff options
| author | Matt Robinson <matt@puppetlabs.com> | 2011-05-15 22:21:29 -0700 |
|---|---|---|
| committer | Matt Robinson <matt@puppetlabs.com> | 2011-05-16 15:13:52 -0700 |
| commit | 68065ff4bb09f90ecfc3d7a71197133d78f3eb3d (patch) | |
| tree | 2ee12401190bd7633b61f7eca9599e4e1b8a0cac /lib | |
| parent | 1abb7c086f2db11e986d2f57f2e5e12f16bd5180 (diff) | |
| download | puppet-68065ff4bb09f90ecfc3d7a71197133d78f3eb3d.tar.gz puppet-68065ff4bb09f90ecfc3d7a71197133d78f3eb3d.tar.xz puppet-68065ff4bb09f90ecfc3d7a71197133d78f3eb3d.zip | |
(#7291) Fixed ascii problem with Ruby 1.9.2
As with the previous commit, there was a problem loading a face because
Ruby 1.9.2 doesn't like using non-standard ascii characters without
declaring the encoding at the top of the file.
SyntaxError Exception: /Users/matthewrobinson/work/puppet/lib/puppet/face/resource.rb:10:
invalid multibyte char (US-ASCII)
Rather than declare the encoding to allow the French word, I've
translated it (after having to look it up myself).
Reviewed-by: Pieter van de Bruggen <pieter@puppetlabs.com>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet/face/resource.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/face/resource.rb b/lib/puppet/face/resource.rb index ed6360888..87e587624 100644 --- a/lib/puppet/face/resource.rb +++ b/lib/puppet/face/resource.rb @@ -7,7 +7,7 @@ Puppet::Indirector::Face.define(:resource, '0.0.1') do summary "Interact directly with resources via the RAL, like ralsh" description <<-EOT This face provides a Ruby API with functionality similar to the puppet - resource (née ralsh) command line application. It is not intended to be + resource (originally ralsh) command line application. It is not intended to be used from the command line. EOT notes <<-EOT |
