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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5bb7fd8551f85426c5881a1dc425a65b5a9ac98f
4
- data.tar.gz: 4f217305659458105cd1e7d8084bea95e536e473
3
+ metadata.gz: 2a23f672a81c16df2426e6a9e7a1cd43bf8fddac
4
+ data.tar.gz: 85d50e27e13386722d5b08cd214857f9489c73bf
5
5
  SHA512:
6
- metadata.gz: 215470fb0847cbaa9f7d75950b0be7307fa6258519212eab219bff3490063247c3dfd0d7211503e67515c2568bafacc0975b4c6ea0a8ff8d2410ae65bf7cacc3
7
- data.tar.gz: fbf087573adc022a364387c31fae39d35e5b8a5b4fd75ecc55fa10b0cc2b1b10c51b37e27a82d4a6471448b7d2db0b1dcf5fbc13f1ee1bdad6cc96fcdf0a8466
6
+ metadata.gz: 1342264f9628e83adfca2c05909933ceea53d127af0b338eac73bb8e9d4be7aeaa8c5b01c13c6c152b3401e70e3ee1d8d51b60abc2c363e96e603aa1b78c555a
7
+ data.tar.gz: 13e407364fedeaba9f45bce33c96a14a1a063d0b520adb38498e9ba2044c044350dd3ef9058eac1882a8142e7660979994ac730fd6a7d5530ce1456ec53b3219
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.3.2.2
4
+
5
+ * Allow sass-rails `>= 3.2` - *Thomas McDonald*
6
+
7
+ ## 2.3.2.1
8
+
3
9
  ## 2.3.2.0
4
10
 
5
11
  * Update to Bootstrap 2.3.2 - *Dan Allen*
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 [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your Sass powered applications.
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', '~> 3.2'
17
- gem 'bootstrap-sass', '~> 2.3.2.1'
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://twitter.github.com/bootstrap/customize.html#variables).
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/twitter/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.
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.1'
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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "bootstrap-sass"
3
- s.version = '2.3.2.1'
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', '~> 3.2'
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.1
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-07-19 00:00:00.000000000 Z
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