summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-02-24 19:07:05 -0300
committerAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-02-24 19:07:05 -0300
commitf70e5d7639d122074d0bc1db8d8f1cf0d6a5d5e9 (patch)
tree2af0d6a9bb1df5473d2ba50d225e0849ec843fdb
parenta17c8fa630da813c292d8e72d736d78d60907d6b (diff)
downloadhighline-f70e5d7639d122074d0bc1db8d8f1cf0d6a5d5e9.tar.gz
Make ruby >= 1.9.3 required at gemspec and update docs
-rw-r--r--INSTALL4
-rw-r--r--README.rdoc4
-rw-r--r--highline.gemspec1
3 files changed, 9 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 01edf79..6598dff 100644
--- a/INSTALL
+++ b/INSTALL
@@ -3,6 +3,10 @@
RubyGems is the preferred easy install method for HighLine. However, you can
install HighLine manually as described below.
+== Requirements
+
+HighLine from version >= 1.7.0 requires ruby >= 1.9.3
+
== Installing the Gem
HighLine is intended to be installed via the
diff --git a/README.rdoc b/README.rdoc
index 1ba0e55..cbf9ee9 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -59,6 +59,10 @@ Menus:
For more examples see the examples/ directory of this project.
+== Requirements
+
+HighLine from version >= 1.7.0 requires ruby >= 1.9.3
+
== Installing
See the INSTALL file for instructions.
diff --git a/highline.gemspec b/highline.gemspec
index 2a3d691..9523c0f 100644
--- a/highline.gemspec
+++ b/highline.gemspec
@@ -33,4 +33,5 @@ minutes of work.
END_DESC
spec.add_development_dependency "code_statistics"
+ spec.required_ruby_version = '>= 1.9.3'
end