bootstrap-navbar 1.0.0.pre4 → 1.0.0.pre5
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.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/lib/bootstrap-navbar.rb +1 -1
- data/lib/bootstrap-navbar/helpers.rb +1 -0
- data/lib/bootstrap-navbar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce035a6d2d9f6e1e92fcf991c1776b4e2b837b6e
|
|
4
|
+
data.tar.gz: 777ec660ec7e53ef8ccbb75874e767b6aa679312
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9455ae0897b3e174650316cec70ab8ab037b9a83888ec6254aa68651919cbbf35f1bf821a2a084ef11d2b68442a4da6932995fd0fc445ed8590626d7c33138d0
|
|
7
|
+
data.tar.gz: 53455168eb7fd09d7eb87df1b86d67225a8b61a6326b73625acabb50ab7897f0b10cc3c937ba1f0d5fdb60619cf0c2efa107f35625a7e1940ff230d7f7fe2430
|
data/.travis.yml
CHANGED
data/lib/bootstrap-navbar.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'gem_config'
|
|
|
3
3
|
module BootstrapNavbar
|
|
4
4
|
include GemConfig::Base
|
|
5
5
|
|
|
6
|
-
BOOTSTRAP_VERSIONS = %w(3.0.1 3.0.0 2.3.1 2.3.0 2.2.2 2.2.1 2.2.0 2.1.1 2.1.0 2.0.4 2.0.3 2.0.2 2.0.1 2.0.0)
|
|
6
|
+
BOOTSTRAP_VERSIONS = %w(3.0.1 3.0.0 2.3.2 2.3.1 2.3.0 2.2.2 2.2.1 2.2.0 2.1.1 2.1.0 2.0.4 2.0.3 2.0.2 2.0.1 2.0.0)
|
|
7
7
|
|
|
8
8
|
with_configuration do
|
|
9
9
|
has :bootstrap_version, classes: String, values: BOOTSTRAP_VERSIONS
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
module BootstrapNavbar::Helpers
|
|
2
2
|
def self.included(base)
|
|
3
|
+
raise 'Bootstrap version is not configured.' if BootstrapNavbar.configuration.bootstrap_version.nil?
|
|
3
4
|
helper_version = BootstrapNavbar.configuration.bootstrap_version[0]
|
|
4
5
|
base.send :include, const_get("Bootstrap#{helper_version}")
|
|
5
6
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap-navbar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.
|
|
4
|
+
version: 1.0.0.pre5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Manuel Meurer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|