udongo 6.3.0 → 6.3.1
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/changelog.md +6 -0
- data/lib/udongo/search/result_objects/base.rb +3 -0
- data/lib/udongo/version.rb +1 -1
- metadata +2 -3
- data/lib/udongo/search/result_objects/frontend/page.rb +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db9e1345266fbac6786865795e678a50e4cdff6f
|
4
|
+
data.tar.gz: 06c20f2821abaebc19bbe71b9e44a1aa2da0209e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a54936416a8fba70abf665bbf795c83d564429c52809d7d222570fd3dfe9f7e03e78ce2b9f7eae9ad1baeb417a2e58a56c2a1725913d4c39794088d371496e8
|
7
|
+
data.tar.gz: 9994be4e9350e9b4f86d74a62d7253fe6407a4e9bb30c472255f9625e52a797abd264b4b9a2c9300132e40e208b8aaf3421adaa092b9bc896ebb29479cebec1b
|
data/changelog.md
CHANGED
data/lib/udongo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: udongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.3.
|
4
|
+
version: 6.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Davy Hellemans
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-06-
|
12
|
+
date: 2017-06-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -864,7 +864,6 @@ files:
|
|
864
864
|
- lib/udongo/search/frontend.rb
|
865
865
|
- lib/udongo/search/result_objects/backend/page.rb
|
866
866
|
- lib/udongo/search/result_objects/base.rb
|
867
|
-
- lib/udongo/search/result_objects/frontend/page.rb
|
868
867
|
- lib/udongo/search/term.rb
|
869
868
|
- lib/udongo/version.rb
|
870
869
|
- lib/udongo/will_paginate/options.rb
|
@@ -1,22 +0,0 @@
|
|
1
|
-
require_relative '../base'
|
2
|
-
|
3
|
-
module Udongo::Search::ResultObjects
|
4
|
-
module Frontend
|
5
|
-
# This class should be used to further manipulate any of the data provided
|
6
|
-
# through #search_context or Udongo::Search::ResultObjects::Base.
|
7
|
-
#
|
8
|
-
# A search context class is accessible through #search_context. This
|
9
|
-
# gives you access to #search_context.controller, which can be used to
|
10
|
-
# call routes upon.
|
11
|
-
#
|
12
|
-
# Example of: If an autocomplete requires additional data to be rendered in
|
13
|
-
# the partial (think another model, or an API call), one could override
|
14
|
-
# the #locals method to include more variables. You could do this directly
|
15
|
-
# in the partial as well, but this way we have separation of concerns.
|
16
|
-
class Page < Udongo::Search::ResultObjects::Base
|
17
|
-
def url
|
18
|
-
# TODO: We don't have methods to build frontend URLs for pages yet?
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|