growth 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/templates/growth.rb +4 -4
- data/lib/growth/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: 6634f7260b3b959ced939622d3b4721238250107
|
4
|
+
data.tar.gz: 77fb066075139f0d1b069f4a67b09a4419f44bc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 378dbdf5e2dff3848649bc78ca3f7c59c3bd51be6cf0d139560ae06a685a5687c4cbb32ac43398ba36cf2e592199a9e1d6bc6315afa47443a8ae7a24c2a44323
|
7
|
+
data.tar.gz: 69a26608ea45788e7fd7d97cbf8719efbd2dba2419eaa4f4718e344bad94cdfa37bc2f0a107f08a56c8acc7d12746f31b9faf3010411f65cda6e1cf188b94c87
|
@@ -2,20 +2,20 @@ Growth.setup do |config|
|
|
2
2
|
# Default: Measures all models.
|
3
3
|
# models_to_measure takes an array of Rails models, for example:
|
4
4
|
#
|
5
|
-
# Growth.models_to_measure = [User, Product, Order, Payment]
|
5
|
+
# Growth.models_to_measure = [ User, Product, Order, Payment ]
|
6
6
|
|
7
7
|
# Default: Prevent specific models from being measured
|
8
8
|
# model_blacklist takes an array of Rails models, for example:
|
9
9
|
#
|
10
|
-
# Growth.model_blacklist = [AdminUser]
|
10
|
+
# Growth.model_blacklist = [ AdminUser ]
|
11
11
|
|
12
|
-
# This is your username for securing the '/
|
12
|
+
# This is your username for securing the '/growth' route
|
13
13
|
# You will be prompted to enter this when viewing the page
|
14
14
|
# This value would be better stored in an environment variabe
|
15
15
|
#
|
16
16
|
# Growth.username = ENV.fetch[:growth_username]
|
17
17
|
|
18
|
-
# This is your password for securing the /
|
18
|
+
# This is your password for securing the '/growth' route
|
19
19
|
# You will be prompted to enter this when viewing the page
|
20
20
|
# This value would be better stored in an environment variabe
|
21
21
|
#
|
data/lib/growth/version.rb
CHANGED