hightop 0.0.4 → 0.1.0

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: 846b498786282576ab175fcf91cf24bfb9b86034
4
- data.tar.gz: 8392b028241d3b03f59c62dec5b46f694cb8a33d
3
+ metadata.gz: c663a3196a056d66875c95ac2ba74bd54f37671a
4
+ data.tar.gz: 6c0e8e59cafcfc7e9efa5e3680e55f093bff9758
5
5
  SHA512:
6
- metadata.gz: 8c1f11dd88fcc63423a3d927c13c2ab4ded446bb062dd104aa2f08d1580bd8dbca9907835aab2cc220e6e06c394747e2f76863c460f029626254d22345715952
7
- data.tar.gz: debd4bc6b2a97302db73b08c313a30cfa6825509b838c7bc90acbebb62439518f003108df241b6a52621982f015c319084c17859d5c13afd0b8d248212048274
6
+ metadata.gz: fbcb31e2cd64bf75a8ba6352321d3d85bc93a43548281c3d158cc7132c5aee732c8b065506cc22c248811109f24970df5571f842427bcf6ef169d5fb30020445
7
+ data.tar.gz: fdcd9b045ba3782787714d38f502d53e991af8f2f5ed26832fddf4610b8d1dfebc15c03fedc253d6b305eefaed965c3e859048d07e5dbe79ee8c4143803911e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.0
2
+
3
+ - No changes, just bump
4
+
1
5
  ## 0.0.4
2
6
 
3
7
  - Added support for multiple groups
@@ -10,3 +14,7 @@
10
14
  ## 0.0.2
11
15
 
12
16
  - Added `limit` parameter
17
+
18
+ ## 0.0.1
19
+
20
+ - First release
data/README.md CHANGED
@@ -23,13 +23,19 @@ Visit.top(:referring_domain, 10)
23
23
  Include nil values
24
24
 
25
25
  ```ruby
26
- Visit.top(:referring_domain, nil: true)
26
+ Visit.top(:search_keyword, nil: true)
27
27
  ```
28
28
 
29
29
  Works with multiple groups
30
30
 
31
31
  ```ruby
32
- Visit.top([:city, :referring_domain])
32
+ Visit.top([:city, :browser])
33
+ ```
34
+
35
+ And expressions
36
+
37
+ ```ruby
38
+ Visit.top("LOWER(referring_domain)")
33
39
  ```
34
40
 
35
41
  ## Installation
@@ -46,6 +52,10 @@ And then execute:
46
52
  bundle
47
53
  ```
48
54
 
55
+ ## History
56
+
57
+ View the [changelog](https://github.com/ankane/hightop/blob/master/CHANGELOG.md)
58
+
49
59
  ## Contributing
50
60
 
51
61
  Everyone is encouraged to help improve this project. Here are a few ways you can help:
@@ -1,3 +1,3 @@
1
1
  module Hightop
2
- VERSION = "0.0.4"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hightop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane