Sha256: 76cb58928b19ea80eb520447d9ad57f9a0f7f2c1c67354bd865e34578be15e41

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 KB

Contents

#
# Copyright 2012-2014 Chef Software, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

#
# Use this software definition to fix the gem-permissions on * nix builds.
#
# expeditor/ignore: logic only

name "gem-permissions"

default_version "0.0.1"

license :project_license
skip_transitive_dependency_licensing true

build do
  unless windows?
    block "Fix gem permissions" do
      FileUtils.chmod_R("a+rX", "#{install_dir}/embedded/lib/ruby/gems/")
    rescue Errno::ENOENT
      # It is possible that the above method will fail for a variety of reasons, including:
      #   * there is a symlink to a file that does not exist.
      #
      # If that happens we "retry" with a slower, but safer approach.
      Dir["#{install_dir}/embedded/lib/ruby/gems/**/**"].each do |entry|
        FileUtils.chmod("a+rX", entry) if File.exist?(entry)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
omnibus-software-23.7.295 config/software/gem-permissions.rb
omnibus-software-23.6.292 config/software/gem-permissions.rb
omnibus-software-23.6.291 config/software/gem-permissions.rb
omnibus-software-23.2.283 config/software/gem-permissions.rb
omnibus-software-23.2.281 config/software/gem-permissions.rb
omnibus-software-22.11.239 config/software/gem-permissions.rb