From 0c4add1fb634bf6c8d7dc721f9536bb42c2d5431 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Wed, 6 Nov 2013 07:40:21 -0800 Subject: [PATCH] Require Ruby 1.9+ --- fauxhai.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fauxhai.gemspec b/fauxhai.gemspec index 75ed17a7..f89392d6 100644 --- a/fauxhai.gemspec +++ b/fauxhai.gemspec @@ -10,6 +10,8 @@ Gem::Specification.new do |spec| spec.summary = %q{Fauxhai provides an easy way to mock out your ohai data for testing with chefspec!} spec.homepage = 'https://github.com/customink/fauxhai' + spec.required_ruby_version = '>= 1.9' + spec.files = `git ls-files`.split($\) spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/})