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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +12 -2
- data/lib/hightop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c663a3196a056d66875c95ac2ba74bd54f37671a
|
|
4
|
+
data.tar.gz: 6c0e8e59cafcfc7e9efa5e3680e55f093bff9758
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbcb31e2cd64bf75a8ba6352321d3d85bc93a43548281c3d158cc7132c5aee732c8b065506cc22c248811109f24970df5571f842427bcf6ef169d5fb30020445
|
|
7
|
+
data.tar.gz: fdcd9b045ba3782787714d38f502d53e991af8f2f5ed26832fddf4610b8d1dfebc15c03fedc253d6b305eefaed965c3e859048d07e5dbe79ee8c4143803911e6
|
data/CHANGELOG.md
CHANGED
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(:
|
|
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, :
|
|
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:
|
data/lib/hightop/version.rb
CHANGED