1
## allow people who use development versions by running "rake gem"
2
## and installing the resulting gem it to be able to do this. (gem
3
## versions must be in dotted-digit notation only and can be passed
4
## with the REL environment variable to "rake gem").
5
SUP_VERSION = if ENV['REL']
6
  ENV['REL']
7
else
8
  $:.unshift 'lib' # force loading from ./lib/ if it exists
9
  require 'sup'
10
  if Redwood::VERSION == "git"
11
    "999"
12
  else
13
    Redwood::VERSION
14
  end
15
end