civo 0.3.0 → 0.3.1

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: ea2509d6c02d31cebecc5fc3cae2d86401045dcf
4
- data.tar.gz: 6816b5db23b7ca3ae4ace89f2e527bf4683c4bea
3
+ metadata.gz: 517970d35b7f7a4ca90356cf5eee5a32084c55de
4
+ data.tar.gz: 61aec5afd63ea2b425450907bce058d62c26ff14
5
5
  SHA512:
6
- metadata.gz: a509cd939ee66d00d4a1ba3987633e0aa24f0cff234a855b69646c1c5740fbaa9432f4afcccb01b58edd4b1b52030bace8caf92c6ed7829bc777e354a271bef9
7
- data.tar.gz: 4bf17cf814ca53d4d0c9f134e2f6f54935466fd675c4964adbd49d7a56c33f41cb9b26f2db3b4b32fc017c7fe2f76f67c28628ae7d58632262769a5d9eedc512
6
+ metadata.gz: 30a9a64e04b3fce16e94b4ba1320de2bb1fcde1eebf8221c521fddd0bb6b802eb59a499000de32ee4dd2f0d663a568c725d4c2285c34f3f07f20ab8997d40dbc
7
+ data.tar.gz: 8f06d066230839aaf4e3f56fe8f29a00135cc0be6a4b82cbd52a0d21cea5d07a259262d6fd38fddafdf8c520f6b934377cc0d7eea651957a2744d4e09796271a
@@ -6,6 +6,8 @@ module Civo
6
6
  defaults: {public_ip: true, template: "ubuntu-14.04", initial_user: "civo"}
7
7
  delete :remove, "/v1/instances/:id", requires: [:id]
8
8
  post :reboot, "/v1/instances/:id/reboots", requires: [:id]
9
+ post :hard_reboot, "/v1/instances/:id/hard_reboots", requires: [:id]
10
+ post :soft_reboot, "/v1/instances/:id/soft_reboots", requires: [:id]
9
11
  put :stop, "/v1/instances/:id/stop", requires: [:id]
10
12
  put :start, "/v1/instances/:id/start", requires: [:id]
11
13
  post :reboot, "/v1/instances/:id/reboots", requires: [:id]
@@ -1,3 +1,3 @@
1
1
  module Civo
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: civo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries