cloudflare 1.1.0 → 1.1.1
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.
- data/README.md +2 -8
- data/lib/cloudflare.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
NOTICE
|
|
2
|
-
|
|
2
|
+
------
|
|
3
3
|
|
|
4
|
-
In version
|
|
5
|
-
|
|
6
|
-
- threat_score -> ip_lkup
|
|
7
|
-
- set_cache_lvl -> cache_lvl
|
|
8
|
-
- set_security_lvl -> sec_lvl
|
|
9
|
-
- purge_cache -> fpurge_ts
|
|
10
|
-
- update_image -> zone_grab
|
|
4
|
+
In version 1.1.0 some functions were renamed. Please see documentation.
|
|
11
5
|
|
|
12
6
|
|
|
13
7
|
CloudFlare
|
data/lib/cloudflare.rb
CHANGED
|
@@ -460,7 +460,7 @@ class CloudFlare
|
|
|
460
460
|
# @param id [Integer] child_id
|
|
461
461
|
|
|
462
462
|
def host_child_stop(id)
|
|
463
|
-
send_req({act: host_child_stop, child_id: id})
|
|
463
|
+
send_req({act: :host_child_stop, child_id: id})
|
|
464
464
|
end
|
|
465
465
|
|
|
466
466
|
# This function lists the domains currently active on CloudFlare for the given host.
|