growth 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/lib/growth/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ba8b1b8f700eeb7023acc5887291e1534bb4b0e
|
4
|
+
data.tar.gz: 9a308a22a52ce728e940dddea1b6f1b1a2c286e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96c974b5c2e6011e22690d90bf04b003ccf4018014aadcb4f117f3a167103d7835658e14259ab2809a2224bfde2499f6dea455e706292f2b30aefdecc1ecedca
|
7
|
+
data.tar.gz: 3ce8f0a21c318302b50fa1bdc872b339d226ad87c1177a8edaf34366c00d9df8208d0c344bd769f711b6a9c1e37e4e4315806c3040b144ed149cfbb722b122eb
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# GrowthEngine
|
2
2
|
Measure the yearly and monthly growth of your Rails models with a dashboard mounted on your Rails app. Specify the models you'd like to measure in a single initializer file and that's it, the gem will handle the rest.
|
3
3
|
|
4
|
-
A more advanced feature in the gem allows you to better understand the associations between your models. For example, let's say you have a Users model that has_many Posts. Over time you might wonder, how many users have only created one post? Which user has created the most posts? Rather than write these database queries each time, the growth gem will automatically generate these reports for you.
|
5
|
-
|
6
4
|
## Installation
|
7
5
|
Add the following line to your Gemfile:
|
8
6
|
```ruby
|
@@ -51,5 +49,13 @@ Options in your config file are:
|
|
51
49
|
|
52
50
|
```Growth.password``` is your password for http_basic_auth
|
53
51
|
|
52
|
+
## Screenshots
|
53
|
+
|
54
|
+
<img src="https://github.com/RyanFriedman/growth-engine/blob/master/examples/growth.png" style="max-width:100%;">
|
55
|
+
|
56
|
+
A more advanced feature in the gem allows you to better understand the associations between your models. For example, let's say you have a Users model that has_many Posts. Over time you might wonder, how many users have only created one post? Which user has created the most posts? Rather than write these database queries each time, the growth gem will automatically generate these reports for you.
|
57
|
+
|
58
|
+
<img src="https://github.com/RyanFriedman/growth-engine/blob/master/examples/associations.png" style="max-width:100%;">
|
59
|
+
|
54
60
|
## License
|
55
61
|
Please see <a href="https://github.com/VibrantLight/growth/blob/master/LICENSE">LICENSE</a> for licensing details.
|
data/lib/growth/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: growth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Friedman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -120,9 +120,9 @@ files:
|
|
120
120
|
- lib/growth/transactions/generate_retention_report.rb
|
121
121
|
- lib/growth/version.rb
|
122
122
|
- lib/tasks/growth_tasks.rake
|
123
|
-
homepage: https://github.com/
|
123
|
+
homepage: https://github.com/RyanFriedman/growth-engine
|
124
124
|
licenses:
|
125
|
-
-
|
125
|
+
- LGPL-3.0
|
126
126
|
metadata: {}
|
127
127
|
post_install_message:
|
128
128
|
rdoc_options: []
|