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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ece3cebc20d03e3060ac980ae0c466fddb9a3fd
4
- data.tar.gz: b9d6639c66f88070b27355c77c2bdbcad93e1405
3
+ metadata.gz: 5b07f9c97efea261c7488ff408fce438af15341e
4
+ data.tar.gz: 2deb35fc2577fca94aee2c604e153b6bd215f7e7
5
5
  SHA512:
6
- metadata.gz: a8b51fa90cafd1bcdaa98f09fc9f80eebba32918c24677bff3967524d2ab516be53c12d8976d07846c86a8fd33c798b9a59b1d9dc62993ec50c45d2caf1749d2
7
- data.tar.gz: fac28d355f165aa3690d806d69396e9ff33eec558004bcc5bbfa16388012e71f9f4673db2f41ed887dc59fdf57623e0cbf761068e399c1aeb965e1a1e217a4f6
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]} && exec git pull origin #{tag}`
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
@@ -3,7 +3,7 @@ source "https://rubygems.org"
3
3
  gemspec path: '../'
4
4
 
5
5
  # Dummy application dependencies
6
- gem 'rails', '4.0.8'
6
+ gem 'rails', '4.0.9'
7
7
  gem 'uglifier'
8
8
  gem 'sass-rails', '~> 4.0.0'
9
9
  gem 'minitest', '~> 4'
@@ -3,7 +3,7 @@ source "https://rubygems.org"
3
3
  gemspec path: '../'
4
4
 
5
5
  # Dummy application dependencies
6
- gem 'rails', '4.1.4'
6
+ gem 'rails', '4.1.5'
7
7
  gem 'uglifier'
8
8
  gem 'sass-rails', '~> 4.0.0'
9
9
  gem 'minitest', '~> 5'
@@ -1,3 +1,3 @@
1
1
  module TwbsSassRails
2
- VERSION = "0.7.2"
2
+ VERSION = "0.8.1"
3
3
  end
@@ -74,7 +74,8 @@ a.list-group-item {
74
74
  &.disabled:focus {
75
75
  background-color: $list-group-disabled-bg;
76
76
  color: $list-group-disabled-color;
77
-
77
+ cursor: not-allowed;
78
+
78
79
  // Force color to inherit for custom content
79
80
  .list-group-item-heading {
80
81
  color: inherit;
@@ -1,7 +1,8 @@
1
- // a flag to toggle asset pipeline / compass integration
2
- // defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
3
- // in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
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
- $icon-font-path: "bootstrap/" !default;
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.7.2
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-07-14 00:00:00.000000000 Z
11
+ date: 2014-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails