inspec/omnibus/config/software/inspec.rb
Adam Leff 9581fda2d8 Fix omnibus build after new JUnit formatter
The new JUnit formatter requires nokogiri, so we need
to build nokogiri via omnibus to ensure liblzma, etc.
is built as part of the omnibus package instead of
`gem` picking up a system liblzma, such as on Mac OS X.

Also bumping ruby to 2.3.1 to match ChefDK.

Signed-off-by: Adam Leff <adam@leff.co>
2017-03-06 11:25:20 -07:00

50 lines
1.5 KiB
Ruby

# encoding: utf-8
#
# Copyright:: Copyright 2016, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# 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.
#
require_relative '../../../lib/inspec/version.rb'
name 'inspec'
dependency 'ruby'
dependency 'rubygems'
dependency 'bundler'
dependency 'rb-readline'
dependency 'nokogiri'
dependency 'appbundler'
license :project_license
default_version "v#{Inspec::VERSION}"
source path: "#{Omnibus::Config.project_root}/../",
options: { exclude: ['omnibus'] }
build do
env = with_standard_compiler_flags(with_embedded_path)
# Remove existing built gems in case they exist in the current dir
delete "#{name}-*.gem"
# We bundle install to ensure the versions of gems we are going to
# appbundle-lock to are definitely installed
bundle 'install --without test integration tools maintenance', env: env
gem "build #{name}.gemspec", env: env
gem "install #{name}-*.gem --no-document", env: env
appbundle 'inspec', env: env
end