1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00

Add version file so version can be programatically accessed.

This commit is contained in:
Thomas McDonald 2013-07-27 09:33:44 +01:00
parent f596108006
commit 6058414a85
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,10 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bootstrap-sass/version'
Gem::Specification.new do |s|
s.name = "bootstrap-sass"
s.version = '2.3.1.0'
s.version = Bootstrap::VERSION
s.authors = ["Thomas McDonald"]
s.email = 'tom@conceptcoding.co.uk'
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"

View file

@ -0,0 +1,3 @@
module Bootstrap
VERSION = '3.0.0.0'
end