README.md in bootstrap-on-rails-0.0.2 vs README.md in bootstrap-on-rails-3.2.0
- old
+ new
@@ -1,28 +1,32 @@
# Bootstrap on Rails
A simpler implementation of Bootstap 3 for Rails. Only packaged assets. No bloat. Pure Less.
+* Current Bootstrap Version: 3.2.0
* Supports Rails 3.1+ and Rails 4
* Less only
* Twitter Variables are easily overridable
-
+
## Installation
Just add to your Gemfile
+ gem 'therubyracer', :platform => :ruby
+ gem 'less-rails'
+
gem 'bootstrap-on-rails'
Add a stylesheet or insert to your existing less file
@import "bootstrap/variables";
- // insert your bootstrap overrides
+ // insert your bootstrap overrides
// @linkColor: red;
// or import a variable file
// @import "variables";
-
+
@import "bootstrap/bootstrap";
// Uncomment For glyphicons + asset pipeline.
// @font-face {
// font-family: 'Glyphicons Halflings';
@@ -33,11 +37,11 @@
// asset-url("bootstrap/glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format('svg');
// }
// see this for more info about glyphicons: https://github.com/jasontorres/bootstrap-on-rails/issues/3
To add the bootstrap javascript libraries, add to your application.js file
-
+
//= require bootstrap/affix
//= require bootstrap/alert
//= require bootstrap/button
//= require bootstrap/carousel
//= require bootstrap/collapse
@@ -46,16 +50,21 @@
//= require bootstrap/tooltip
//= require bootstrap/popover
//= require bootstrap/scrollspy
//= require bootstrap/tab
//= require bootstrap/transition
-
+
It's important to note that variables.less is taken out of bootstrap and required explicitly to support overriding variables, another motivation why I needed to do this gem.
+## Notes
+
+* bootstrap-on-rails now follows the same bootstrap versioning
+* An example project can be seen here https://github.com/jasontorres/bootstrap-on-rails-example
+
## License
-[Bootstrap 3](http://getbootstrap.com) is licensed under [Apache2 License](https://github.com/twbs/bootstrap/blob/master/LICENSE).
+[Bootstrap 3](http://getbootstrap.com) is licensed under [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE).
-Bootstrap on Rails is under Apache2 License too.
+Bootstrap on Rails is under MIT License
Jason Torres of [Proudcloud.net](http://www.proudcloud.net)