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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e38f8e29debafdfa34fa918c39c0b455a98fdfe3
4
- data.tar.gz: 86ad83a3e6098a11ab2a415a47a0ddc17e312950
3
+ metadata.gz: db9e1345266fbac6786865795e678a50e4cdff6f
4
+ data.tar.gz: 06c20f2821abaebc19bbe71b9e44a1aa2da0209e
5
5
  SHA512:
6
- metadata.gz: 7aa4bee65d5e3855210ec61792837f9491bb86cc57e14bfc4a6b5480fe5ca344f3363b737b77582c80e63e747a395a4358874892e634ad5b82db3d6ff16ede45
7
- data.tar.gz: 92ff03bbd6e0ca03dd8e65e3f67971b767d472dbdc1335015db7ed7455b55c7590f6e55827ef9cb4fc9f775987c7e229bbb9a2ded6b067404cb2a8d9b2f59ee5
6
+ metadata.gz: 6a54936416a8fba70abf665bbf795c83d564429c52809d7d222570fd3dfe9f7e03e78ce2b9f7eae9ad1baeb417a2e58a56c2a1725913d4c39794088d371496e8
7
+ data.tar.gz: 9994be4e9350e9b4f86d74a62d7253fe6407a4e9bb30c472255f9625e52a797abd264b4b9a2c9300132e40e208b8aaf3421adaa092b9bc896ebb29479cebec1b
data/changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ 6.3.1 - 2017-06-06
2
+ --
3
+ * Removes the Udongo::Search::ResultObjects::Frontend::Page class so projects
4
+ building Frontend search have an easier time doing so.
5
+
6
+
1
7
  6.3.0 - 2017-06-05
2
8
  --
3
9
  * The tagbox autocomplete now orders its results alphabetically.
@@ -67,6 +67,9 @@ module Udongo
67
67
  def unpublished?
68
68
  searchable.respond_to?(:published?) && searchable.unpublished?
69
69
  end
70
+
71
+ def url
72
+ end
70
73
  end
71
74
  end
72
75
  end
@@ -1,3 +1,3 @@
1
1
  module Udongo
2
- VERSION = '6.3.0'
2
+ VERSION = '6.3.1'
3
3
  end
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.0
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-05 00:00:00.000000000 Z
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