bootstrap-sass 2.3.2.1 → 2.3.2.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +7 -7
- data/bootstrap-sass.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a23f672a81c16df2426e6a9e7a1cd43bf8fddac
|
4
|
+
data.tar.gz: 85d50e27e13386722d5b08cd214857f9489c73bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1342264f9628e83adfca2c05909933ceea53d127af0b338eac73bb8e9d4be7aeaa8c5b01c13c6c152b3401e70e3ee1d8d51b60abc2c363e96e603aa1b78c555a
|
7
|
+
data.tar.gz: 13e407364fedeaba9f45bce33c96a14a1a063d0b520adb38498e9ba2044c044350dd3ef9058eac1882a8142e7660979994ac730fd6a7d5530ce1456ec53b3219
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Bootstrap for Sass
|
2
2
|
|
3
|
-
[![Build Status](https://secure.travis-ci.org/thomas-mcdonald/bootstrap-sass.png?branch=master)](http://travis-ci.org/thomas-mcdonald/bootstrap-sass)
|
3
|
+
[![Build Status](https://secure.travis-ci.org/thomas-mcdonald/bootstrap-sass.png?branch=master)](http://travis-ci.org/thomas-mcdonald/bootstrap-sass) [![Code Climate](https://codeclimate.com/github/thomas-mcdonald/bootstrap-sass.png)](https://codeclimate.com/github/thomas-mcdonald/bootstrap-sass)
|
4
4
|
|
5
|
-
`bootstrap-sass` is an Sass-powered version of [
|
5
|
+
`bootstrap-sass` is an Sass-powered version of [Bootstrap](http://github.com/twbs/bootstrap), ready to drop right into your Sass powered applications.
|
6
6
|
|
7
7
|
Enjoy.
|
8
8
|
|
@@ -13,8 +13,8 @@ Enjoy.
|
|
13
13
|
In your Gemfile:
|
14
14
|
|
15
15
|
```ruby
|
16
|
-
gem 'sass-rails', '
|
17
|
-
gem 'bootstrap-sass', '~> 2.3.2.
|
16
|
+
gem 'sass-rails', '=> 3.2'
|
17
|
+
gem 'bootstrap-sass', '~> 2.3.2.2'
|
18
18
|
```
|
19
19
|
|
20
20
|
`bundle install` and restart your server to make the files available.
|
@@ -87,7 +87,7 @@ compass install bootstrap
|
|
87
87
|
You'll get the same benefits as those starting from scratch. Radical.
|
88
88
|
|
89
89
|
## Configuration
|
90
|
-
Need to configure a variable or two? Simply define the value of the variable you want to change *before* importing Bootstrap. Sass will respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://
|
90
|
+
Need to configure a variable or two? Simply define the value of the variable you want to change *before* importing Bootstrap. Sass will respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://twbs.github.io/bootstrap/customize/#variables).
|
91
91
|
|
92
92
|
```scss
|
93
93
|
$btnPrimaryBackground: #f00;
|
@@ -110,14 +110,14 @@ Some CSS3 properties take multiple values, such as `box-shadow` or `text-shadow`
|
|
110
110
|
As per the Bootstrap project we don't include the responsive styles by default. `@import "bootstrap-responsive";` to get them.
|
111
111
|
|
112
112
|
## Versioning
|
113
|
-
Bootstrap [claims](https://github.com/
|
113
|
+
Bootstrap [claims](https://github.com/twbs/bootstrap#versioning) to use SemVer, although this is for values of public API that don't seem to include selectively requiring CSS components (see breaking change 2.0.2 -> 2.0.3). Since many people using bootstrap-sass *do* selectively require CSS components and I consider it part of the public API we can't really follow SemVer without becoming wildly out of sync with the Bootstrap version number, which is confusing for everyone involved. Further releases to bootstrap-sass will therefore have version numbers of the form `2.x.y.z`, where `2.x.y` is the release of Bootstrap we should be compatible with, and `z` is the patch version.
|
114
114
|
|
115
115
|
Basically this means you should expect to append a separate patch version to the bootstrap version, which allows our versioning to stay more honest about changes.
|
116
116
|
|
117
117
|
### Bundler?
|
118
118
|
|
119
119
|
```ruby
|
120
|
-
gem 'bootstrap-sass', '~> 2.3.2.
|
120
|
+
gem 'bootstrap-sass', '~> 2.3.2.2'
|
121
121
|
```
|
122
122
|
|
123
123
|
Don't use the standard `~> 2.x.y`. Your apps may break.
|
data/bootstrap-sass.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "bootstrap-sass"
|
3
|
-
s.version = '2.3.2.
|
3
|
+
s.version = '2.3.2.2'
|
4
4
|
s.authors = ["Thomas McDonald"]
|
5
5
|
s.email = 'tom@conceptcoding.co.uk'
|
6
6
|
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.license = "Apache 2.0"
|
9
9
|
|
10
10
|
s.add_development_dependency 'compass'
|
11
|
-
s.add_development_dependency 'sass-rails', '
|
11
|
+
s.add_development_dependency 'sass-rails', '>= 3.2'
|
12
12
|
s.add_runtime_dependency 'sass', '~> 3.2'
|
13
13
|
|
14
14
|
s.files = `git ls-files`.split("\n")
|
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.2.
|
4
|
+
version: 2.3.2.2
|
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-
|
11
|
+
date: 2013-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
name: sass-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '3.2'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '3.2'
|
41
41
|
- !ruby/object:Gem::Dependency
|