rocket_navigation 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +5 -5
- data/README.md +13 -2
- data/lib/rocket_navigation/version.rb +1 -1
- data/rocket_navigation.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bcc5a6383962ab18b75a89f3de3478557fccd07a9a52336f2a38b58525be39c
|
4
|
+
data.tar.gz: 16a24f2943f043a3da683d4a8b9aa0a0dafbaa97dbb3332b01878160be07c1f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7200edb138f28b055089e9cc4855a119111e6284774382aa83766cebba10fa1022848cf59cf2a3ca9ee48bf784402b9e7d55eaabdc7fa5c92210a3c6df44cd0f
|
7
|
+
data.tar.gz: 8d18d67a5b807c8c6350da559c6bae68b6487267d6324cc5a951ad83a47d10c7c2023842a9b4518d3bce25e7800e605f49bec9248c3aa68e7ec9adce337cdfc6
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rocket_navigation (0.2.
|
4
|
+
rocket_navigation (0.2.2)
|
5
5
|
actionpack (>= 5.0)
|
6
6
|
actionview (>= 5.0)
|
7
7
|
activesupport (>= 5.0)
|
@@ -54,20 +54,20 @@ GEM
|
|
54
54
|
public_suffix (>= 2.0.2, < 4.0)
|
55
55
|
arel (9.0.0)
|
56
56
|
builder (3.2.3)
|
57
|
-
capybara (3.
|
57
|
+
capybara (3.2.1)
|
58
58
|
addressable
|
59
59
|
mini_mime (>= 0.1.3)
|
60
60
|
nokogiri (~> 1.8)
|
61
61
|
rack (>= 1.6.0)
|
62
62
|
rack-test (>= 0.6.3)
|
63
|
-
xpath (~> 3.
|
63
|
+
xpath (~> 3.1)
|
64
64
|
coderay (1.1.2)
|
65
65
|
concurrent-ruby (1.0.5)
|
66
66
|
crass (1.0.4)
|
67
67
|
diff-lcs (1.3)
|
68
68
|
docile (1.3.1)
|
69
69
|
erubi (1.7.1)
|
70
|
-
ffi (1.9.
|
70
|
+
ffi (1.9.25)
|
71
71
|
formatador (0.2.5)
|
72
72
|
globalid (0.4.1)
|
73
73
|
activesupport (>= 4.2.0)
|
@@ -190,7 +190,7 @@ GEM
|
|
190
190
|
websocket-driver (0.7.0)
|
191
191
|
websocket-extensions (>= 0.1.0)
|
192
192
|
websocket-extensions (0.1.3)
|
193
|
-
xpath (3.
|
193
|
+
xpath (3.1.0)
|
194
194
|
nokogiri (~> 1.8)
|
195
195
|
|
196
196
|
PLATFORMS
|
data/README.md
CHANGED
@@ -1,12 +1,23 @@
|
|
1
1
|
# RocketNavigation
|
2
2
|
|
3
|
+
Master repository has moved to gitlab, all new code will be there:
|
4
|
+
|
5
|
+
https://gitlab.com/rocket-science/rocket_navigation
|
6
|
+
|
3
7
|
[![Build Status](https://travis-ci.org/rs-pro/rocket_navigation.svg?branch=master)](https://travis-ci.org/rs-pro/rocket_navigation)
|
4
8
|
[![Gem Version](https://badge.fury.io/rb/rocket_navigation.svg)](https://badge.fury.io/rb/rocket_navigation)
|
5
9
|
[![Maintainability](https://api.codeclimate.com/v1/badges/13260d4bf2e5969a12c6/maintainability)](https://codeclimate.com/github/rs-pro/rocket_navigation/maintainability)
|
6
10
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/13260d4bf2e5969a12c6/test_coverage)](https://codeclimate.com/github/rs-pro/rocket_navigation/test_coverage)
|
7
11
|
|
8
|
-
#
|
9
|
-
|
12
|
+
# Status
|
13
|
+
|
14
|
+
Currently beta quality, but we already use it in production for some projects.
|
15
|
+
|
16
|
+
Lots of tests (which were copied and adapted from SimpleNavigation) are failing, but the gem itself works and is somewhat tested in real world projects as a replacement for SimpleNavigation.
|
17
|
+
|
18
|
+
But anyway use at your own risk.
|
19
|
+
|
20
|
+
# About
|
10
21
|
|
11
22
|
This gem is heavily inspired by (and uses some code from) [simple-navigation](https://github.com/codeplant/simple-navigation) but it is NOT a drop-in replacement.
|
12
23
|
|
data/rocket_navigation.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{rocket_navigation is a gem for creating navigation / menu (for Rails).}
|
13
13
|
spec.description = %q{Currently alpha qualiy, use at your own risk.}
|
14
|
-
spec.homepage = "https://
|
14
|
+
spec.homepage = "https://gitlab.com/rocket-science/rocket_navigation"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rocket_navigation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gleb Tv
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05
|
11
|
+
date: 2018-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -229,7 +229,7 @@ files:
|
|
229
229
|
- lib/rocket_navigation/renderer/text.rb
|
230
230
|
- lib/rocket_navigation/version.rb
|
231
231
|
- rocket_navigation.gemspec
|
232
|
-
homepage: https://
|
232
|
+
homepage: https://gitlab.com/rocket-science/rocket_navigation
|
233
233
|
licenses:
|
234
234
|
- MIT
|
235
235
|
metadata: {}
|