summaryrefslogtreecommitdiff
path: root/omnibus/config/software/foodcritic.rb
diff options
context:
space:
mode:
Diffstat (limited to 'omnibus/config/software/foodcritic.rb')
-rw-r--r--omnibus/config/software/foodcritic.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/omnibus/config/software/foodcritic.rb b/omnibus/config/software/foodcritic.rb
new file mode 100644
index 0000000000..b2d7451621
--- /dev/null
+++ b/omnibus/config/software/foodcritic.rb
@@ -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"
+end
+
+dependency "rubygems"
+dependency "bundler"
+dependency "nokogiri"
+dependency "chef"
+
+build do
+ env = with_standard_compiler_flags(with_embedded_path)
+
+ bundle "install --without development", env: env
+
+ gem "build foodcritic.gemspec", env: env
+ gem "install foodcritic-*.gem" \
+ " --no-ri --no-rdoc", env: env
+end