zuora_connect_ui 0.2.9 → 0.2.10
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/README.md +6 -3
- data/app/assets/stylesheets/zuora_connect_ui/buttons.scss +0 -4
- data/lib/zuora_connect_ui/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 240fdf4190ed4c3d3a7d42180f7bfc6a946b7d3d
|
|
4
|
+
data.tar.gz: 93db8237305f72e72b0bd67c7959244b67f29393
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e7f851483abca43be4b2911e381aa5d4dc35c20df639280cf488ebbc84947ff111e97d7f2d35760a9e8770569b1968d3f67ceec13726f9b51bfd80b5828e97c
|
|
7
|
+
data.tar.gz: 2347f4f96225dfbcbde4cbcd8e156399269667859d0770225c788612fcf44b0ed2e1608d2f6dc1cdd836a9a90c8314d9860839b3da18a01e0d9838ae1219fa2a
|
data/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Add the peek initializer in `config/initializers/peek.rb`:
|
|
|
61
61
|
```ruby
|
|
62
62
|
# List of Peek Views shown in the container
|
|
63
63
|
require 'peek'
|
|
64
|
-
Peek.into Peek::Views::Git if Rails.env
|
|
64
|
+
Peek.into Peek::Views::Git if Rails.env.development?
|
|
65
65
|
Peek.into Peek::Views::PerformanceBar
|
|
66
66
|
Peek.into Peek::Views::PG
|
|
67
67
|
Peek.into Peek::Views::Redis
|
|
@@ -72,9 +72,12 @@ Peek::Railtie.configure do
|
|
|
72
72
|
config.peek.adapter = :redis
|
|
73
73
|
end
|
|
74
74
|
```
|
|
75
|
-
and the peek route in `config/routes.rb`
|
|
75
|
+
and the peek route in `config/routes.rb` under the `app_admin` constraint
|
|
76
76
|
```ruby
|
|
77
|
-
|
|
77
|
+
constraints app_admin do
|
|
78
|
+
...
|
|
79
|
+
mount Peek::Railtie => '/peek'
|
|
80
|
+
end
|
|
78
81
|
```
|
|
79
82
|
|
|
80
83
|
## Layout
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zuora_connect_ui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Connect Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bootstrap-sass
|