summaryrefslogtreecommitdiff
path: root/ohai.gemspec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-02-11 17:33:29 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-02-11 17:33:29 -0800
commit43cd21b687a8a46b59be410de8be5f0bf133d1dc (patch)
tree2886d2e8b3e7bf67b38e1bbad17c00db21e7129c /ohai.gemspec
parent08c29c13309a4f7980dd4c3d5bc9eb29f0ec9ac8 (diff)
downloadohai-43cd21b687a8a46b59be410de8be5f0bf133d1dc.tar.gz
chefstyle catchup for ohai
there's still a few cops that are unaddressed by this change, so it won't be clean after merging this.
Diffstat (limited to 'ohai.gemspec')
-rw-r--r--ohai.gemspec10
1 files changed, 5 insertions, 5 deletions
diff --git a/ohai.gemspec b/ohai.gemspec
index d7e8ada4..28824396 100644
--- a/ohai.gemspec
+++ b/ohai.gemspec
@@ -1,6 +1,6 @@
-$:.unshift File.expand_path('../lib', __FILE__)
-require 'ohai/version'
+$:.unshift File.expand_path("../lib", __FILE__)
+require "ohai/version"
Gem::Specification.new do |s|
s.name = "ohai"
@@ -42,8 +42,8 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec_junit_formatter"
s.bindir = "bin"
- s.executables = %w(ohai)
+ s.executables = %w{ohai}
- s.require_path = 'lib'
- s.files = %w(LICENSE README.md Gemfile Rakefile) + Dir.glob("*.gemspec") + Dir.glob("{docs,lib,spec}/**/*")
+ s.require_path = "lib"
+ s.files = %w{LICENSE README.md Gemfile Rakefile} + Dir.glob("*.gemspec") + Dir.glob("{docs,lib,spec}/**/*")
end