Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
Merge pull request #254 from opscode/sersut/appbundle-foodcritic
Browse files Browse the repository at this point in the history
Enable appbundler for foodcritic.
  • Loading branch information
Serdar Sutay committed Oct 1, 2014
2 parents 42cdb0b + 56b233c commit 2fb382a
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/software/chefdk.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
dependency "appbundler"
dependency "berkshelf"
dependency "chef-vault"
dependency "foodcritic"
dependency "ohai"
dependency "test-kitchen"
dependency "chef"
Expand Down Expand Up @@ -55,7 +56,6 @@

# Perform multiple gem installs to better isolate/debug failures
{
'foodcritic' => '4.0.0',
'chefspec' => '4.0.1',
'fauxhai' => '2.2.0',
'rubocop' => '0.18.1',
Expand All @@ -75,5 +75,6 @@
appbundle 'berkshelf'
appbundle 'chef-dk'
appbundle 'chef-vault'
appbundle 'foodcritic'
appbundle 'test-kitchen'
end
42 changes: 42 additions & 0 deletions config/software/foodcritic.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# Copyright 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.
#

name "foodcritic"
default_version "v4.0.0"

source git: "git://github.com/acrmp/foodcritic.git"

if windows?
dependency "ruby-windows"
dependency "ruby-windows-devkit"
else
dependency "ruby"
dependency "rubygems"
end

dependency "bundler"
dependency "nokogiri"
dependency "chef"

build do
env = with_standard_compiler_flags(with_embedded_path)

bundle "install", env: env

gem "build foodcritic.gemspec", env: env
gem "install foodcritic-*.gem" \
" --no-ri --no-rdoc", env: env
end

0 comments on commit 2fb382a

Please sign in to comment.