bootstrap-sass 2.3.1.2 → 2.3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/bootstrap-sass/compass_functions.rb +6 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b09f6433158e12d5a8c8969da1e32985d51fb9ff
|
|
4
|
+
data.tar.gz: e71e02077ea33385b244bb0fb151e22c8eda48f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aae41147f24d99bcdeb4f94d23666e882c9ea47e51584c6c31920f2b715ebf0b8b435c02096912116a6d43d647255eafcf3f7c457bbe3bdb3d14937bb0618382
|
|
7
|
+
data.tar.gz: c3a340f53d15c452268a1da849d3f5bf99ecd95e2effbb25b8564588c1448dcffdc896e26130f9f8eb9f03b21bdb99b54b6c02b5e35a6d8bbe971f5999fe8403
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ In your Gemfile:
|
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
16
|
gem 'sass-rails', '~> 3.2'
|
|
17
|
-
gem 'bootstrap-sass', '~> 2.3.1.
|
|
17
|
+
gem 'bootstrap-sass', '~> 2.3.1.3'
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
`bundle install` and restart your server to make the files available.
|
|
@@ -123,7 +123,7 @@ Basically this means you should expect to append a separate patch version to the
|
|
|
123
123
|
### Bundler?
|
|
124
124
|
|
|
125
125
|
```ruby
|
|
126
|
-
gem 'bootstrap-sass', '~> 2.3.1.
|
|
126
|
+
gem 'bootstrap-sass', '~> 2.3.1.3'
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
Don't use the standard `~> 2.x.y`. Your apps may break.
|
|
@@ -14,6 +14,11 @@ module Sass::Script::Functions
|
|
|
14
14
|
|
|
15
15
|
protected
|
|
16
16
|
def sprockets_context # :nodoc:
|
|
17
|
-
options
|
|
17
|
+
if options.key?(:sprockets)
|
|
18
|
+
options[:sprockets][:context]
|
|
19
|
+
else
|
|
20
|
+
# Compatibility with sprockets pre 2.10.0
|
|
21
|
+
options[:importer].context
|
|
22
|
+
end
|
|
18
23
|
end
|
|
19
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap-sass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.1.
|
|
4
|
+
version: 2.3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas McDonald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-05-
|
|
11
|
+
date: 2013-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: compass
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
version: '0'
|
|
147
147
|
requirements: []
|
|
148
148
|
rubyforge_project:
|
|
149
|
-
rubygems_version: 2.0.
|
|
149
|
+
rubygems_version: 2.0.3
|
|
150
150
|
signing_key:
|
|
151
151
|
specification_version: 4
|
|
152
152
|
summary: Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass
|