bootstrap-rails-engine 1.1.0 → 1.2.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/.gitignore CHANGED
@@ -22,3 +22,4 @@
22
22
  *.bak
23
23
  *~
24
24
  *.swp
25
+ *.gem
data/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
  Make [Twitter Bootstrap](http://twitter.github.com/bootstrap) into Rails Engine. [Bootstrap-datepicker](https://github.com/eternicode/bootstrap-datepicker) is also included.
3
3
 
4
4
  ## Version
5
- Bootstrap 2.1.0
6
- Bootstrap-datepicker
5
+ Bootstrap 2.2.1
6
+ Bootstrap-datepicker (2012/11/19)
7
7
 
8
8
  ## Rails 3.1 or later
9
9
  Include Gemfile,
@@ -1,6 +1,6 @@
1
1
  module BootstrapRailsEngine
2
2
  module Rails
3
- VERSION = "1.1.0"
4
- TWITTER_BOOTSTRAP = "2.1.0"
3
+ VERSION = "1.2.0"
4
+ TWITTER_BOOTSTRAP = "2.2.1"
5
5
  end
6
6
  end
@@ -4,10 +4,10 @@ module BootstrapRailsEngine
4
4
 
5
5
  CDNS = {
6
6
  :bootstrap_js => {
7
- :default => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/js/bootstrap.min.js"
7
+ :default => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"
8
8
  },
9
9
  :bootstrap_css => {
10
- :default => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/css/bootstrap.min.css"
10
+ :default => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css"
11
11
  },
12
12
  }
13
13