Jasmine core files should be available to other gems

This commit is contained in:
ragaskar
2011-04-29 22:41:18 -04:00
parent 48c8d2cc1f
commit 995cdd6e3b
16 changed files with 133518 additions and 81 deletions

View File

@@ -1,5 +1,7 @@
module Jasmine
module Core
VERSION = "0.0.1"
require 'json'
VERSION_HASH = JSON.parse(File.new(File.join(File.dirname(__FILE__), "..", "..", "src/version.json")).read);
VERSION = "#{VERSION_HASH['major']}.#{VERSION_HASH['minor']}.#{VERSION_HASH['build']}"
end
end