summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradamedx <adamed@opscode.com>2014-05-19 04:29:50 -0700
committeradamedx <adamed@opscode.com>2014-05-19 04:29:50 -0700
commit7e46d2bf22a3821ef0e25d1e7bf82a770c393d83 (patch)
tree11ee6b2128ec0636135bb8fa3da3a92a59e9dacb
parent5b5a9580add9da94537b86e26ab94d1574114821 (diff)
downloadwmi-lite-7e46d2bf22a3821ef0e25d1e7bf82a770c393d83.tar.gz
Remove overly aggressive Ruby minimum version1.0.0.rc.1
-rw-r--r--README.md2
-rw-r--r--lib/wmi-lite/version.rb2
-rw-r--r--wmi-lite.gemspec2
3 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index 8380cd1..2efffd5 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Wmi-Lite
`wmi-lite` is a lightweight Ruby gem utility library for accessing basic
[Windows Management Instrumentation (WMI)](http://msdn.microsoft.com/en-us/library/aa394582(v=vs.85).aspx)
-functionality on Windows. It has no dependencies other than version 1.9 or greater of the Ruby interpreter
+functionality on Windows. It has no dependencies outside of the Ruby interpreter
and libraries and of course the Windows operating system.
Installation
diff --git a/lib/wmi-lite/version.rb b/lib/wmi-lite/version.rb
index f1f7382..d528667 100644
--- a/lib/wmi-lite/version.rb
+++ b/lib/wmi-lite/version.rb
@@ -1,3 +1,3 @@
module WmiLite
- VERSION = '1.0.0.rc.0'
+ VERSION = '1.0.0.rc.1'
end
diff --git a/wmi-lite.gemspec b/wmi-lite.gemspec
index 3e6f60a..ea2aa21 100644
--- a/wmi-lite.gemspec
+++ b/wmi-lite.gemspec
@@ -18,8 +18,6 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/opscode/wmi-lite'
spec.license = 'Apache 2.0'
- spec.required_ruby_version = '>= 1.9'
-
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})