tunemygc 1.0.31 → 1.0.32
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/Gemfile.lock +1 -1
- data/lib/tunemygc/syncer.rb +1 -2
- data/lib/tunemygc/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: eada0c05f9039579213cc0929d88d888d73fdfa3
|
|
4
|
+
data.tar.gz: 8495c9b0d5c073b4a6b88ca08a50814ca4a4ce3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6a688cb885d69388f15894463fe6cb20320c84829aad3ccdb6bb827bd131e45aff560f572e24054be818dfec74a243407262507d308cee7ab323dbfcd9cc3c2
|
|
7
|
+
data.tar.gz: 9c7f0614ce486ac84e0dd9218b6c4bd312832a80df2efdd31327f1adfe68c80ac7d3af69cf76f5855f747d255442c031e65dc8f39de8231e6353e7ca0373dcfc
|
data/Gemfile.lock
CHANGED
data/lib/tunemygc/syncer.rb
CHANGED
|
@@ -93,9 +93,8 @@ module TuneMyGc
|
|
|
93
93
|
end
|
|
94
94
|
|
|
95
95
|
def process_config_callback(response)
|
|
96
|
-
report_url = nil
|
|
97
|
-
config = client.get(URI(response.body).path)
|
|
98
96
|
report_url = response.body.gsub(/\.json$/, '')
|
|
97
|
+
config = client.get(URI(response.body).path)
|
|
99
98
|
ActiveSupport::JSON.decode(config.body).merge('report' => report_url)
|
|
100
99
|
rescue Exception => e
|
|
101
100
|
TuneMyGc.log "Please visit #{report_url} to view your configuration and other Garbage Collector insights"
|
data/lib/tunemygc/version.rb
CHANGED