twitter-bootstrap-rails 2.2.5 → 2.2.6
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.
Potentially problematic release.
This version of twitter-bootstrap-rails might be problematic. Click here for more details.
data/README.md
CHANGED
@@ -3,11 +3,17 @@ Bootstrap is a toolkit from Twitter designed to kickstart development of webapps
|
|
3
3
|
|
4
4
|
twitter-bootstrap-rails project integrates Bootstrap CSS toolkit for Rails 3.1 Asset Pipeline (Rails 3.2 supported)
|
5
5
|
|
6
|
-
[][gem]
|
7
|
+
[][travis]
|
8
|
+
[][gemnasium]
|
9
|
+
[][codeclimate]
|
10
|
+
[][coveralls]
|
11
|
+
|
12
|
+
[gem]: https://rubygems.org/gems/twitter-bootstrap-rails
|
13
|
+
[travis]: http://travis-ci.org/seyhunak/twitter-bootstrap-rails
|
14
|
+
[gemnasium]: https://gemnasium.com/seyhunak/twitter-bootstrap-rails
|
15
|
+
[codeclimate]: https://codeclimate.com/github/seyhunak/twitter-bootstrap-rails
|
16
|
+
[coveralls]: https://coveralls.io/r/seyhunak/twitter-bootstrap-rails
|
11
17
|
|
12
18
|
## Screencasts
|
13
19
|
#### Installing twitter-bootstrap-rails, generators, usage and more
|
@@ -575,13 +575,13 @@
|
|
575
575
|
.core (@gridColumnWidth, @gridGutterWidth) {
|
576
576
|
|
577
577
|
.spanX (@index) when (@index > 0) {
|
578
|
-
.span@{index} { .span(@index); }
|
578
|
+
(~".span@{index}") { .span(@index); }
|
579
579
|
.spanX(@index - 1);
|
580
580
|
}
|
581
581
|
.spanX (0) {}
|
582
582
|
|
583
583
|
.offsetX (@index) when (@index > 0) {
|
584
|
-
.offset@{index} { .offset(@index); }
|
584
|
+
(~".offset@{index}") { .offset(@index); }
|
585
585
|
.offsetX(@index - 1);
|
586
586
|
}
|
587
587
|
.offsetX (0) {}
|
@@ -620,14 +620,14 @@
|
|
620
620
|
.fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {
|
621
621
|
|
622
622
|
.spanX (@index) when (@index > 0) {
|
623
|
-
.span@{index} { .span(@index); }
|
623
|
+
(~".span@{index}") { .span(@index); }
|
624
624
|
.spanX(@index - 1);
|
625
625
|
}
|
626
626
|
.spanX (0) {}
|
627
627
|
|
628
628
|
.offsetX (@index) when (@index > 0) {
|
629
|
-
.offset@{index} { .offset(@index); }
|
630
|
-
.offset@{index}:first-child { .offsetFirstChild(@index); }
|
629
|
+
(~'.offset@{index}') { .offset(@index); }
|
630
|
+
(~'.offset@{index}:first-child') { .offsetFirstChild(@index); }
|
631
631
|
.offsetX(@index - 1);
|
632
632
|
}
|
633
633
|
.offsetX (0) {}
|
@@ -675,7 +675,7 @@
|
|
675
675
|
.input(@gridColumnWidth, @gridGutterWidth) {
|
676
676
|
|
677
677
|
.spanX (@index) when (@index > 0) {
|
678
|
-
input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index} { .span(@index); }
|
678
|
+
(~"input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index}") { .span(@index); }
|
679
679
|
.spanX(@index - 1);
|
680
680
|
}
|
681
681
|
.spanX (0) {}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twitter-bootstrap-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|