middleman-bootstrap-navbar 3.0.2 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30800beea7b14fd9f6ecc5a1fb82219304ee5e2e
4
- data.tar.gz: 90e1ce7218fa0bdda8864a851d12c3e30e52c4aa
3
+ metadata.gz: e38b45faf16b8f534e5e9e8da1eb54e9f0721722
4
+ data.tar.gz: 1c6e293b0fec85fe030b70002ee11294debe4d99
5
5
  SHA512:
6
- metadata.gz: 3eff66c77e5e26da96ad71a76e45c1b49a16b889c0e5a9987469b9241913219b62730cfea940f7b9a1fe1c75f51961fa03f25b73aba1e0cc4c19b96ecb137a28
7
- data.tar.gz: 49f4ec9e5ec0d123ce3d6777fe4984854c0e23daac1486e94a6000a20d42590b56c0cec1a8209b13e43e428df2aac3882a8201278d07c5364ccd1c3f47888e9c
6
+ metadata.gz: f97d13831724d925dfc902a2a09b2a66b23a96ab871b79efc199b9a5d9a0df112cc80ed5d19c6c780291bcdd05fdcbf65e085b02f5aa123dfdf019b48aa8c802
7
+ data.tar.gz: ea352a1f7c63a815ec8513a13cf9d828a894fb087ed7348121602de02166cdadc9de20fe4820044a9111ea1a6bff199fe4b5ce421a98bf3fc2cb112e2dfad119
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
  sudo: false
3
3
  rvm:
4
- - 2.2.5
5
- - 2.3.1
4
+ - 2.2.7
5
+ - 2.3.4
6
+ - 2.4.1
6
7
  before_install:
7
8
  - gem update --system
8
9
  - gem update bundler
@@ -13,4 +14,15 @@ gemfile:
13
14
  - gemfiles/middleman_3_stable.gemfile
14
15
  - gemfiles/middleman_4.0.gemfile
15
16
  - gemfiles/middleman_4.1.gemfile
17
+ - gemfiles/middleman_4.2.gemfile
16
18
  - gemfiles/middleman_master.gemfile
19
+ matrix:
20
+ allow_failures:
21
+ - rvm: 2.4.0
22
+ gemfile: gemfiles/middleman_3.4.gemfile
23
+ - rvm: 2.4.0
24
+ gemfile: gemfiles/middleman_3_stable.gemfile
25
+ - rvm: 2.4.0
26
+ gemfile: gemfiles/middleman_4.0.gemfile
27
+ - rvm: 2.4.0
28
+ gemfile: gemfiles/middleman_4.1.gemfile
data/Appraisals CHANGED
@@ -28,6 +28,10 @@ appraise 'middleman_4.1' do
28
28
  gem 'middleman', '~> 4.1.0'
29
29
  end
30
30
 
31
+ appraise 'middleman_4.2' do
32
+ gem 'middleman', '~> 4.2.0'
33
+ end
34
+
31
35
  appraise 'middleman_master' do
32
36
  gem 'middleman', github: 'middleman/middleman'
33
37
  end
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Dependency Status](https://gemnasium.com/bootstrap-ruby/middleman-bootstrap-navbar.png)](https://gemnasium.com/bootstrap-ruby/middleman-bootstrap-navbar)
6
6
  [![Code Climate](https://codeclimate.com/github/bootstrap-ruby/middleman-bootstrap-navbar.png)](https://codeclimate.com/github/bootstrap-ruby/middleman-bootstrap-navbar)
7
7
 
8
- [Middleman](http://middlemanapp.com/) extension to easily generate a [Bootstrap navbar](http://twitter.github.io/bootstrap/components.html#navbar)
8
+ [Middleman](http://middlemanapp.com/) extension to easily generate a [Bootstrap](https://getbootstrap.com/) navbar
9
9
 
10
10
  ## Installation
11
11
 
@@ -23,7 +23,15 @@ Or install it yourself as:
23
23
 
24
24
  ## Requirements
25
25
 
26
- The necessary files from Bootstrap >= 2.0 have to be included separately, they are not part of this gem.
26
+ ## Middleman
27
+
28
+ Middleman >= 3.1
29
+
30
+ ## Bootstrap
31
+
32
+ Bootstrap >= 2.0
33
+
34
+ The necessary Bootstrap files have to be included separately, they are not part of this gem.
27
35
 
28
36
  At least the CSS files for the navbar are required, and the JS files for dropdowns and responsive features, if you want to use those in the navbar.
29
37
 
@@ -39,11 +47,11 @@ activate :bootstrap_navbar
39
47
 
40
48
  ### Set Bootstrap version
41
49
 
42
- This extension needs to know which Bootstrap version you are using, because the navbar HTML looks different in different Bootstrap versions.
50
+ This gem needs to know which Bootstrap version you are using, because the navbar HTML looks different in different Bootstrap versions.
43
51
 
44
- If you're using [`bootstrap-sass`](https://github.com/twbs/bootstrap-sass), you're all set because the Boostrap version will be sniffed from that gem's version. Make sure to include the `bootstrap-sass` gem before `rails_bootstrap_navbar` in your Gemfile though.
52
+ If you're using either the [`bootstrap-sass`](https://github.com/twbs/bootstrap-sass) or [`bootstrap`](https://github.com/twbs/bootstrap-rubygem) gem, you're all set because the Boostrap version will be sniffed automatically from those gems' versions. Make sure to include the `bootstrap-sass` or `bootstrap` gem before `rails_bootstrap_navbar` in your Gemfile though.
45
53
 
46
- If you're not using `bootstrap-sass` but include the Bootstrap CSS and JS some other way, set the Bootstrap version when activating the extension:
54
+ If you include the Bootstrap CSS and JS some other way, you need to set the Bootstrap version when activating the extension:
47
55
 
48
56
  ```ruby
49
57
  activate :bootstrap_navbar do |bootstrap_navbar|
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org/"
4
+
5
+ gem "middleman", "~> 4.2.0"
6
+
7
+ gemspec :path => "../"
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module BootstrapNavbar
3
- VERSION = '3.0.2'
3
+ VERSION = '4.0.0'
4
4
  end
5
5
  end
@@ -25,6 +25,6 @@ Gem::Specification.new do |gem|
25
25
  gem.add_development_dependency 'cucumber', '~> 2.3'
26
26
  gem.add_development_dependency 'aruba', '~> 0.14'
27
27
 
28
- gem.add_runtime_dependency 'bootstrap-navbar', '~> 2.0'
28
+ gem.add_runtime_dependency 'bootstrap-navbar', '~> 3.0'
29
29
  gem.add_runtime_dependency 'middleman', '>= 3.1'
30
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-bootstrap-navbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Meurer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-23 00:00:00.000000000 Z
11
+ date: 2017-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '2.0'
89
+ version: '3.0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '2.0'
96
+ version: '3.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: middleman
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -131,6 +131,7 @@ files:
131
131
  - gemfiles/middleman_3_stable.gemfile
132
132
  - gemfiles/middleman_4.0.gemfile
133
133
  - gemfiles/middleman_4.1.gemfile
134
+ - gemfiles/middleman_4.2.gemfile
134
135
  - gemfiles/middleman_master.gemfile
135
136
  - lib/middleman-bootstrap-navbar.rb
136
137
  - lib/middleman-bootstrap-navbar/extension.rb
@@ -156,11 +157,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
157
  version: '0'
157
158
  requirements: []
158
159
  rubyforge_project:
159
- rubygems_version: 2.6.6
160
+ rubygems_version: 2.6.13
160
161
  signing_key:
161
162
  specification_version: 4
162
163
  summary: Middleman extension to easily generate a Bootstrap style navbar
163
164
  test_files:
164
165
  - features/navbar.feature
165
166
  - features/support/env.rb
166
- has_rdoc: