twbs_sass_rails 0.7.2 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/Rakefile +1 -1
- data/gemfiles/Gemfile.rails-4.0.x +1 -1
- data/gemfiles/Gemfile.rails-4.1.x +1 -1
- data/lib/twbs_sass_rails/version.rb +1 -1
- data/vendor/assets/stylesheets/twbs/bootstrap/_list-group.scss +2 -1
- data/vendor/assets/stylesheets/twbs/bootstrap/_variables.scss +8 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b07f9c97efea261c7488ff408fce438af15341e
|
4
|
+
data.tar.gz: 2deb35fc2577fca94aee2c604e153b6bd215f7e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16b0a3d0a8ebda9cc86725f6b3a0e7f7ddc884ad50ee6450a3fa3f89d4d343c49c8b168aa9bfd6067d27a76bec4d9db26fa055dedc9af37953bec2484723b556
|
7
|
+
data.tar.gz: 1874b14270f040f389ffdc2134c9b487d34008e1197c2be0761b90cda5bd306a6230f05ae50256e0e142cd2818a315a5202da6c7aa836513679c8d1aa9ac3c94
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.8.1
|
4
|
+
|
5
|
+
* Fixed rake task
|
6
|
+
* Fixed bootstrap-sass submodule
|
7
|
+
|
8
|
+
## 0.8.0
|
9
|
+
|
10
|
+
* bootstrap-sass 3.2.0+1
|
11
|
+
|
12
|
+
## 0.7.3
|
13
|
+
|
14
|
+
* Tested against Rails 4.0.9 and 4.1.5
|
15
|
+
* Bumped up version
|
16
|
+
|
3
17
|
## 0.7.2
|
4
18
|
|
5
19
|
* Added Rails 3.2.x instruction to Readme
|
data/Rakefile
CHANGED
@@ -108,7 +108,7 @@ private
|
|
108
108
|
def update_submodule(submodule, tag)
|
109
109
|
return unless tag
|
110
110
|
puts "Updating #{submodule[:name]} at #{tag}..."
|
111
|
-
`cd #{submodule[:folder]} &&
|
111
|
+
`cd #{submodule[:folder]} && git fetch && git fetch --tags && git checkout #{tag}`
|
112
112
|
end
|
113
113
|
|
114
114
|
def remove_content_from_destination_folders
|
@@ -1,7 +1,8 @@
|
|
1
|
-
//
|
2
|
-
//
|
3
|
-
// in Sass 3.3
|
1
|
+
// When true, asset path helpers are used, otherwise regular url() is used
|
2
|
+
// When there no function is defined, `fn('')` is parsed as string that equals the right hand side
|
3
|
+
// NB: in Sass 3.3 there is a native function: function-exists(twbs-font-path)
|
4
4
|
$bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
|
5
|
+
|
5
6
|
//
|
6
7
|
// Variables
|
7
8
|
// --------------------------------------------------
|
@@ -77,7 +78,10 @@ $headings-color: inherit !default;
|
|
77
78
|
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
78
79
|
|
79
80
|
//** Load fonts from this directory.
|
80
|
-
|
81
|
+
|
82
|
+
// [converter] Asset helpers such as Sprockets and Node.js Mincer do not resolve relative paths
|
83
|
+
$icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
|
84
|
+
|
81
85
|
//** File name for all font files.
|
82
86
|
$icon-font-name: "glyphicons-halflings-regular" !default;
|
83
87
|
//** Element ID within SVG icon file.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twbs_sass_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- diowa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|