searchjoy 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/layouts/searchjoy/application.html.erb +2 -2
- data/app/views/searchjoy/searches/overview.html.erb +2 -2
- data/app/views/searchjoy/searches/recent.html.erb +1 -1
- data/app/views/searchjoy/searches/stream.html.erb +1 -1
- data/lib/searchjoy/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94ec250ddb2ed912d965eaf163d69969872d3ba6
|
4
|
+
data.tar.gz: 261b226311c7333cf26eac83680458317751611e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 569a7a546a04becaefcb7ac51a48a5ac3b33f69377df35f5aeb8f8f3a7b010f89095e90a1c37ff2a077cc9d36939f74389181c4363e3fa613a95c5b3dadeda1c
|
7
|
+
data.tar.gz: 501321dcc4f5ebdf958f69c0d1c0ac8613513bf2d3d44d03829b184be4e3026b360b33f9c309308f6a00474b9dd3485c15f282f6a13c432eaaff8a34c63bbd14
|
@@ -290,9 +290,9 @@
|
|
290
290
|
<div class="col-1-2">
|
291
291
|
<ul class="nav">
|
292
292
|
<li id="brand">Searchjoy</li>
|
293
|
-
<li><%= link_to "Live Stream",
|
293
|
+
<li><%= link_to "Live Stream", root_path, class: ("active" if !@search_type) %></li>
|
294
294
|
<% @search_types.each do |search_type| %>
|
295
|
-
<li><%= link_to search_type,
|
295
|
+
<li><%= link_to search_type, overview_searches_path(search_type: search_type), class: ("active" if @search_type == search_type) %></li>
|
296
296
|
<% end %>
|
297
297
|
</ul>
|
298
298
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<thead>
|
7
7
|
<tr>
|
8
8
|
<th>Top Searches</th>
|
9
|
-
<th class="num"><%= link_to "View all",
|
9
|
+
<th class="num"><%= link_to "View all", searches_path(search_type: @search_type) %></th>
|
10
10
|
</tr>
|
11
11
|
</thead>
|
12
12
|
<tbody>
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<thead>
|
25
25
|
<tr>
|
26
26
|
<th>Low Conversions</th>
|
27
|
-
<th class="num"><%= link_to "View all",
|
27
|
+
<th class="num"><%= link_to "View all", searches_path(search_type: @search_type, sort: "conversion_rate") %></th>
|
28
28
|
</tr>
|
29
29
|
</thead>
|
30
30
|
<tbody>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% @searches.each do |search| %>
|
2
2
|
<tr>
|
3
3
|
<td style="width: 15%;">
|
4
|
-
<%= link_to search.search_type,
|
4
|
+
<%= link_to search.search_type, overview_searches_path(search_type: search.search_type), class: "type-link type-link-#{@search_types.index(search.search_type)}" %>
|
5
5
|
</td>
|
6
6
|
<td><%= search.query %></td>
|
7
7
|
<td style="width: 35%; color: #5cb85c;">
|
data/lib/searchjoy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: searchjoy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chartkick
|
@@ -113,8 +113,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
113
|
version: '0'
|
114
114
|
requirements: []
|
115
115
|
rubyforge_project:
|
116
|
-
rubygems_version: 2.
|
116
|
+
rubygems_version: 2.6.1
|
117
117
|
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Search analytics made easy
|
120
120
|
test_files: []
|
121
|
+
has_rdoc:
|