locomotivecms-search 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/locomotive/search/engine.rb +8 -4
- data/lib/locomotive/search/version.rb +1 -1
- data/lib/locomotive/search/wagon.rb +31 -0
- data/lib/locomotive/search/wagon/liquid/drops/page.rb +16 -0
- data/lib/locomotive/search/wagon/liquid/drops/site.rb +7 -0
- data/lib/locomotive/search/wagon/liquid/tags/search_for.rb +72 -0
- data/lib/locomotive/search/wagon/searchable_content_entry.rb +9 -0
- data/lib/locomotive/search/wagon/searchable_content_field.rb +15 -0
- data/lib/locomotive/search/wagon/searchable_page.rb +15 -0
- data/spec/dummy/log/test.log +6774 -8871
- data/spec/wagon/Gemfile +25 -0
- data/spec/wagon/Gemfile.lock +154 -0
- data/spec/wagon/app/content_types/categories.yml +56 -0
- data/spec/wagon/app/content_types/emails.yml +35 -0
- data/spec/wagon/app/content_types/projects.yml +59 -0
- data/spec/wagon/app/views/pages/404.liquid.haml +11 -0
- data/spec/wagon/app/views/pages/email-registered.liquid.haml +13 -0
- data/spec/wagon/app/views/pages/index.liquid.haml +93 -0
- data/spec/wagon/app/views/pages/projects/content_type_template.liquid.haml +32 -0
- data/spec/wagon/app/views/pages/search.liquid.haml +31 -0
- data/spec/wagon/app/views/snippets/newsletter_form.liquid.haml +14 -0
- data/spec/wagon/app/views/snippets/projects.liquid.haml +17 -0
- data/spec/wagon/app/views/snippets/social_links.liquid.haml +19 -0
- data/spec/wagon/config.ru +3 -0
- data/spec/wagon/config/site.yml +33 -0
- data/spec/wagon/config/translations.yml +8 -0
- data/spec/wagon/data/categories.yml +8 -0
- data/spec/wagon/data/emails.yml +2 -0
- data/spec/wagon/data/projects.yml +39 -0
- data/spec/wagon/log/wagon.log +541 -0
- metadata +49 -16
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: locomotivecms-search
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rodrigo Alvarez
|
@@ -9,22 +9,8 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-04-
|
12
|
+
date: 2014-04-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: locomotive_cms
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
requirements:
|
18
|
-
- - '>='
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: '2.4'
|
21
|
-
type: :runtime
|
22
|
-
prerelease: false
|
23
|
-
version_requirements: !ruby/object:Gem::Requirement
|
24
|
-
requirements:
|
25
|
-
- - '>='
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
version: '2.4'
|
28
14
|
- !ruby/object:Gem::Dependency
|
29
15
|
name: activesearch
|
30
16
|
requirement: !ruby/object:Gem::Requirement
|
@@ -169,6 +155,13 @@ files:
|
|
169
155
|
- lib/locomotive/search/engine.rb
|
170
156
|
- lib/locomotive/search/mongoid.rb
|
171
157
|
- lib/locomotive/search/version.rb
|
158
|
+
- lib/locomotive/search/wagon/liquid/drops/page.rb
|
159
|
+
- lib/locomotive/search/wagon/liquid/drops/site.rb
|
160
|
+
- lib/locomotive/search/wagon/liquid/tags/search_for.rb
|
161
|
+
- lib/locomotive/search/wagon/searchable_content_entry.rb
|
162
|
+
- lib/locomotive/search/wagon/searchable_content_field.rb
|
163
|
+
- lib/locomotive/search/wagon/searchable_page.rb
|
164
|
+
- lib/locomotive/search/wagon.rb
|
172
165
|
- lib/locomotive/search.rb
|
173
166
|
- vendor/assets/javascripts/locomotive/typeahead.js
|
174
167
|
- MIT-LICENSE
|
@@ -2287,6 +2280,26 @@ files:
|
|
2287
2280
|
- spec/support/helpers.rb
|
2288
2281
|
- spec/support/shared_examples.rb
|
2289
2282
|
- spec/support/sucker_punch.rb
|
2283
|
+
- spec/wagon/app/content_types/categories.yml
|
2284
|
+
- spec/wagon/app/content_types/emails.yml
|
2285
|
+
- spec/wagon/app/content_types/projects.yml
|
2286
|
+
- spec/wagon/app/views/pages/404.liquid.haml
|
2287
|
+
- spec/wagon/app/views/pages/email-registered.liquid.haml
|
2288
|
+
- spec/wagon/app/views/pages/index.liquid.haml
|
2289
|
+
- spec/wagon/app/views/pages/projects/content_type_template.liquid.haml
|
2290
|
+
- spec/wagon/app/views/pages/search.liquid.haml
|
2291
|
+
- spec/wagon/app/views/snippets/newsletter_form.liquid.haml
|
2292
|
+
- spec/wagon/app/views/snippets/projects.liquid.haml
|
2293
|
+
- spec/wagon/app/views/snippets/social_links.liquid.haml
|
2294
|
+
- spec/wagon/config/site.yml
|
2295
|
+
- spec/wagon/config/translations.yml
|
2296
|
+
- spec/wagon/config.ru
|
2297
|
+
- spec/wagon/data/categories.yml
|
2298
|
+
- spec/wagon/data/emails.yml
|
2299
|
+
- spec/wagon/data/projects.yml
|
2300
|
+
- spec/wagon/Gemfile
|
2301
|
+
- spec/wagon/Gemfile.lock
|
2302
|
+
- spec/wagon/log/wagon.log
|
2290
2303
|
homepage: https://github.com/Papipo/locomotivecms-search
|
2291
2304
|
licenses:
|
2292
2305
|
- MIT
|
@@ -4425,3 +4438,23 @@ test_files:
|
|
4425
4438
|
- spec/support/helpers.rb
|
4426
4439
|
- spec/support/shared_examples.rb
|
4427
4440
|
- spec/support/sucker_punch.rb
|
4441
|
+
- spec/wagon/app/content_types/categories.yml
|
4442
|
+
- spec/wagon/app/content_types/emails.yml
|
4443
|
+
- spec/wagon/app/content_types/projects.yml
|
4444
|
+
- spec/wagon/app/views/pages/404.liquid.haml
|
4445
|
+
- spec/wagon/app/views/pages/email-registered.liquid.haml
|
4446
|
+
- spec/wagon/app/views/pages/index.liquid.haml
|
4447
|
+
- spec/wagon/app/views/pages/projects/content_type_template.liquid.haml
|
4448
|
+
- spec/wagon/app/views/pages/search.liquid.haml
|
4449
|
+
- spec/wagon/app/views/snippets/newsletter_form.liquid.haml
|
4450
|
+
- spec/wagon/app/views/snippets/projects.liquid.haml
|
4451
|
+
- spec/wagon/app/views/snippets/social_links.liquid.haml
|
4452
|
+
- spec/wagon/config/site.yml
|
4453
|
+
- spec/wagon/config/translations.yml
|
4454
|
+
- spec/wagon/config.ru
|
4455
|
+
- spec/wagon/data/categories.yml
|
4456
|
+
- spec/wagon/data/emails.yml
|
4457
|
+
- spec/wagon/data/projects.yml
|
4458
|
+
- spec/wagon/Gemfile
|
4459
|
+
- spec/wagon/Gemfile.lock
|
4460
|
+
- spec/wagon/log/wagon.log
|