bootplus-rails 0.0.1.2 → 0.0.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.
- data/README.md +12 -2
- data/lib/bootplus/rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootplus/responsive.less +7 -7
- metadata +2 -2
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Bootplus::Rails
|
2
2
|
|
3
|
-
|
3
|
+
Bootplus for Rails Asset Pipeline extracted from [bootplus](https://github.com/aozora/bootplus)
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,13 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
Add bootplus.less to your `application.css`
|
22
|
+
|
23
|
+
*= require bootplus/bootplus
|
24
|
+
|
25
|
+
Add bootstrap.js to your `application.js`
|
26
|
+
|
27
|
+
//= require bootstrap
|
22
28
|
|
23
29
|
## Contributing
|
24
30
|
|
@@ -27,3 +33,7 @@ TODO: Write usage instructions here
|
|
27
33
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
34
|
4. Push to the branch (`git push origin my-new-feature`)
|
29
35
|
5. Create new Pull Request
|
36
|
+
|
37
|
+
## ROADMAP
|
38
|
+
|
39
|
+
1. Add generator
|
@@ -17,33 +17,33 @@
|
|
17
17
|
// -------------------------
|
18
18
|
// Required since we compile the responsive stuff separately
|
19
19
|
|
20
|
-
@import "variables.less"; // Modify this for custom colors, font-sizes, etc
|
21
|
-
@import "../mixins.less";
|
20
|
+
@import "bootplus/variables.less"; // Modify this for custom colors, font-sizes, etc
|
22
21
|
@import "mixins.less";
|
22
|
+
@import "bootplus/mixins.less";
|
23
23
|
|
24
24
|
|
25
25
|
// RESPONSIVE CLASSES
|
26
26
|
// ------------------
|
27
27
|
|
28
|
-
@import "
|
28
|
+
@import "responsive-utilities.less";
|
29
29
|
|
30
30
|
|
31
31
|
// MEDIA QUERIES
|
32
32
|
// ------------------
|
33
33
|
|
34
34
|
// Large desktops
|
35
|
-
@import "
|
35
|
+
@import "responsive-1200px-min.less";
|
36
36
|
|
37
37
|
// Tablets to regular desktops
|
38
|
-
@import "
|
38
|
+
@import "responsive-768px-979px.less";
|
39
39
|
|
40
40
|
// Phones to portrait tablets and narrow desktops
|
41
|
-
@import "
|
41
|
+
@import "responsive-767px-max.less";
|
42
42
|
|
43
43
|
|
44
44
|
// RESPONSIVE NAVBAR
|
45
45
|
// ------------------
|
46
46
|
|
47
47
|
// From 979px and below, show a button to toggle navbar contents
|
48
|
-
@import "../responsive-navbar.less";
|
49
48
|
@import "responsive-navbar.less";
|
49
|
+
@import "bootplus/responsive-navbar.less";
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootplus-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.3
|
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-07-
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|