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:
parent
f596108006
commit
6058414a85
2 changed files with 8 additions and 1 deletions
|
@ -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"
|
||||
|
|
3
lib/bootstrap-sass/version.rb
Normal file
3
lib/bootstrap-sass/version.rb
Normal file
|
@ -0,0 +1,3 @@
|
|||
module Bootstrap
|
||||
VERSION = '3.0.0.0'
|
||||
end
|
Loading…
Reference in a new issue