Skip to content

Commit

Permalink
Integrate LBAAS (#12)
Browse files Browse the repository at this point in the history
* Integrate LBAAS
* Update version to 1.5.8 to allow for new release
  • Loading branch information
tahsin352 authored Jan 19, 2022
1 parent 3408de1 commit 9898b62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
civo (1.5.7)
civo (1.5.8)
commander
flexirest (>= 1.10.8)
toml
Expand Down
4 changes: 2 additions & 2 deletions app/models/civo/load_balancer.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Civo
class LoadBalancer < Base
get :all, "/v2/loadbalancers", fake: :loadbalancers
get :find, "/v2/loadbalancers/:id", fake: :get_loadbalancer
get :all, "/v2/loadbalancers"
get :find, "/v2/loadbalancers/:id"
post :create, "/v2/loadbalancers", required: [:hostname], fake: :get_loadbalancer
put :update, "/v2/loadbalancers/:id", fake: :get_loadbalancer
delete :remove, "/v2/loadbalancers/:id", required: [:id], fake: :delete_loadbalancer
Expand Down
2 changes: 1 addition & 1 deletion lib/civo/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Civo
VERSION = "1.5.7"
VERSION = "1.5.8"
end

0 comments on commit 9898b62

Please sign in to comment.