summaryrefslogtreecommitdiff
path: root/lib/slop.rb
diff options
context:
space:
mode:
authorLee Jarvis <ljjarvis@gmail.com>2014-12-17 09:09:10 +0000
committerLee Jarvis <ljjarvis@gmail.com>2014-12-17 09:09:10 +0000
commit4e0e6bda6fd2aa441602686083764913fbdefb6b (patch)
treed01e5488b6e0100bff27893876437b57d354b493 /lib/slop.rb
parent94c79db0ce1df73f2a2cc5859e42adc943868959 (diff)
downloadslop-4e0e6bda6fd2aa441602686083764913fbdefb6b.tar.gz
Add VERSION, stop managing it separately in gemspec
Diffstat (limited to 'lib/slop.rb')
-rw-r--r--lib/slop.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/slop.rb b/lib/slop.rb
index 4c7c0e1..5e0c48b 100644
--- a/lib/slop.rb
+++ b/lib/slop.rb
@@ -6,6 +6,8 @@ require 'slop/types'
require 'slop/error'
module Slop
+ VERSION = '4.0.0'
+
def self.parse(items = ARGV, **config, &block)
Options.new(config, &block).parse(items)
end