bootplus-rails 0.0.1.5 → 1.0.0
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 +19 -4
- data/bootplus-rails.gemspec +1 -1
- data/lib/bootplus/rails/version.rb +1 -1
- data/vendor/assets/javascripts/{bootstrap-affix.js → bootplus/bootstrap-affix.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-alert.js → bootplus/bootstrap-alert.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-button.js → bootplus/bootstrap-button.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-carousel.js → bootplus/bootstrap-carousel.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-collapse.js → bootplus/bootstrap-collapse.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-dropdown.js → bootplus/bootstrap-dropdown.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-modal.js → bootplus/bootstrap-modal.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-popover.js → bootplus/bootstrap-popover.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-scrollspy.js → bootplus/bootstrap-scrollspy.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-tab.js → bootplus/bootstrap-tab.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-tooltip.js → bootplus/bootstrap-tooltip.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-transition.js → bootplus/bootstrap-transition.js} +0 -0
- data/vendor/assets/javascripts/{bootstrap-typeahead.js → bootplus/bootstrap-typeahead.js} +0 -0
- data/vendor/assets/javascripts/bootplus/bootstrap.js +13 -0
- metadata +17 -20
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/javascripts/bootstrap.js +0 -13
data/README.md
CHANGED
@@ -1,11 +1,15 @@
|
|
1
1
|
# Bootplus::Rails
|
2
2
|
|
3
3
|
Bootplus for Rails Asset Pipeline extracted from [bootplus](https://github.com/aozora/bootplus)
|
4
|
+
Use this gem [less-rails-fontawesome](https://github.com/wbzyl/less-rails-fontawesome) for font awesome
|
4
5
|
|
5
6
|
## Installation
|
6
7
|
|
7
8
|
Add this line to your application's Gemfile:
|
8
9
|
|
10
|
+
gem 'therubyracer'
|
11
|
+
gem 'less-rails'
|
12
|
+
gem 'less-rails-fontawesome'
|
9
13
|
gem 'bootplus-rails'
|
10
14
|
|
11
15
|
And then execute:
|
@@ -18,13 +22,24 @@ Or install it yourself as:
|
|
18
22
|
|
19
23
|
## Usage
|
20
24
|
|
21
|
-
|
25
|
+
Create bootplus_overrides.less with the following codes
|
22
26
|
|
23
|
-
|
27
|
+
@import "bootplus/bootplus";
|
28
|
+
@import "bootplus/responsive";
|
29
|
+
@import 'font-awesome/font-awesome';
|
30
|
+
@import 'font-awesome/font-awesome-ie7';
|
31
|
+
|
32
|
+
// Set the correct sprite paths
|
33
|
+
@iconSpritePath: "glyphicons-halflings.png";
|
34
|
+
@iconWhiteSpritePath: "glyphicons-halflings-white.png";
|
35
|
+
|
36
|
+
Add bootplus_overrides.less to your `application.css`
|
37
|
+
|
38
|
+
*= require bootplus_overrides
|
24
39
|
|
25
40
|
Add bootstrap.js to your `application.js`
|
26
41
|
|
27
|
-
//= require bootstrap
|
42
|
+
//= require bootplus/bootstrap
|
28
43
|
|
29
44
|
## Contributing
|
30
45
|
|
@@ -36,4 +51,4 @@ Add bootstrap.js to your `application.js`
|
|
36
51
|
|
37
52
|
## ROADMAP
|
38
53
|
|
39
|
-
1. Add generator
|
54
|
+
1. Add generator
|
data/bootplus-rails.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["patorn.u@gmail.com"]
|
11
11
|
spec.description = %q{Bootplus bundled for Rails Asset Pipeline}
|
12
12
|
spec.summary = %q{Bootplus bundled for Rails Asset Pipeline}
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "https://github.com/patorn/bootplus-rails"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
//= require bootplus/bootstrap-transition
|
2
|
+
//= require bootplus/bootstrap-alert
|
3
|
+
//= require bootplus/bootstrap-modal
|
4
|
+
//= require bootplus/bootstrap-dropdown
|
5
|
+
//= require bootplus/bootstrap-scrollspy
|
6
|
+
//= require bootplus/bootstrap-tab
|
7
|
+
//= require bootplus/bootstrap-tooltip
|
8
|
+
//= require bootplus/bootstrap-popover
|
9
|
+
//= require bootplus/bootstrap-button
|
10
|
+
//= require bootplus/bootstrap-collapse
|
11
|
+
//= require bootplus/bootstrap-carousel
|
12
|
+
//= require bootplus/bootstrap-typeahead
|
13
|
+
//= require bootplus/bootstrap-affix
|
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
|
4
|
+
version: 1.0.0
|
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-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -58,25 +58,22 @@ files:
|
|
58
58
|
- bootplus-rails.gemspec
|
59
59
|
- lib/bootplus/rails.rb
|
60
60
|
- lib/bootplus/rails/version.rb
|
61
|
-
- vendor/assets/fonts/fontawesome-webfont.eot
|
62
|
-
- vendor/assets/fonts/fontawesome-webfont.ttf
|
63
|
-
- vendor/assets/fonts/fontawesome-webfont.woff
|
64
61
|
- vendor/assets/images/glyphicons-halflings-white.png
|
65
62
|
- vendor/assets/images/glyphicons-halflings.png
|
66
|
-
- vendor/assets/javascripts/bootstrap-affix.js
|
67
|
-
- vendor/assets/javascripts/bootstrap-alert.js
|
68
|
-
- vendor/assets/javascripts/bootstrap-button.js
|
69
|
-
- vendor/assets/javascripts/bootstrap-carousel.js
|
70
|
-
- vendor/assets/javascripts/bootstrap-collapse.js
|
71
|
-
- vendor/assets/javascripts/bootstrap-dropdown.js
|
72
|
-
- vendor/assets/javascripts/bootstrap-modal.js
|
73
|
-
- vendor/assets/javascripts/bootstrap-popover.js
|
74
|
-
- vendor/assets/javascripts/bootstrap-scrollspy.js
|
75
|
-
- vendor/assets/javascripts/bootstrap-tab.js
|
76
|
-
- vendor/assets/javascripts/bootstrap-tooltip.js
|
77
|
-
- vendor/assets/javascripts/bootstrap-transition.js
|
78
|
-
- vendor/assets/javascripts/bootstrap-typeahead.js
|
79
|
-
- vendor/assets/javascripts/bootstrap.js
|
63
|
+
- vendor/assets/javascripts/bootplus/bootstrap-affix.js
|
64
|
+
- vendor/assets/javascripts/bootplus/bootstrap-alert.js
|
65
|
+
- vendor/assets/javascripts/bootplus/bootstrap-button.js
|
66
|
+
- vendor/assets/javascripts/bootplus/bootstrap-carousel.js
|
67
|
+
- vendor/assets/javascripts/bootplus/bootstrap-collapse.js
|
68
|
+
- vendor/assets/javascripts/bootplus/bootstrap-dropdown.js
|
69
|
+
- vendor/assets/javascripts/bootplus/bootstrap-modal.js
|
70
|
+
- vendor/assets/javascripts/bootplus/bootstrap-popover.js
|
71
|
+
- vendor/assets/javascripts/bootplus/bootstrap-scrollspy.js
|
72
|
+
- vendor/assets/javascripts/bootplus/bootstrap-tab.js
|
73
|
+
- vendor/assets/javascripts/bootplus/bootstrap-tooltip.js
|
74
|
+
- vendor/assets/javascripts/bootplus/bootstrap-transition.js
|
75
|
+
- vendor/assets/javascripts/bootplus/bootstrap-typeahead.js
|
76
|
+
- vendor/assets/javascripts/bootplus/bootstrap.js
|
80
77
|
- vendor/assets/stylesheets/accordion.less
|
81
78
|
- vendor/assets/stylesheets/alerts.less
|
82
79
|
- vendor/assets/stylesheets/bootplus/accordion.less
|
@@ -141,7 +138,7 @@ files:
|
|
141
138
|
- vendor/assets/stylesheets/utilities.less
|
142
139
|
- vendor/assets/stylesheets/variables.less
|
143
140
|
- vendor/assets/stylesheets/wells.less
|
144
|
-
homepage:
|
141
|
+
homepage: https://github.com/patorn/bootplus-rails
|
145
142
|
licenses:
|
146
143
|
- MIT
|
147
144
|
post_install_message:
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,13 +0,0 @@
|
|
1
|
-
//= require bootstrap-transition
|
2
|
-
//= require bootstrap-alert
|
3
|
-
//= require bootstrap-modal
|
4
|
-
//= require bootstrap-dropdown
|
5
|
-
//= require bootstrap-scrollspy
|
6
|
-
//= require bootstrap-tab
|
7
|
-
//= require bootstrap-tooltip
|
8
|
-
//= require bootstrap-popover
|
9
|
-
//= require bootstrap-button
|
10
|
-
//= require bootstrap-collapse
|
11
|
-
//= require bootstrap-carousel
|
12
|
-
//= require bootstrap-typeahead
|
13
|
-
//= require bootstrap-affix
|