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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06f71b3935bbf31808204ba8d6d2ab9f1641e028
4
- data.tar.gz: 6c856d1bb9a2e76b70f9fbddd3deb701c93662b1
3
+ metadata.gz: 6634f7260b3b959ced939622d3b4721238250107
4
+ data.tar.gz: 77fb066075139f0d1b069f4a67b09a4419f44bc6
5
5
  SHA512:
6
- metadata.gz: 53a0947ea53850496f0d35ed2ab6be78dd2056d39ec2012eb8be4affeb5d2ccc78ed6a124f2353c14fbb8f281588e1ec0a0becb443d1ad05f30dd6845a6d30ac
7
- data.tar.gz: db3095350810c721358ff4d2b0d48838ae40c16dfdcded50b1b5f47cc6aaa286fb4ad21d13c4dc48a8ce80e7bd49c2d2cd9dc0fcfab9670f5c6ebc21d576a774
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 '/stats' URL
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 /stats page
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
  #
@@ -1,3 +1,3 @@
1
1
  module Growth
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: growth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Friedman