examples/backups.rb in discourse_api-0.11.0 vs examples/backups.rb in discourse_api-0.12.0

- old
+ new

@@ -1,18 +1,18 @@ -$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -require File.expand_path('../../lib/discourse_api', __FILE__) - -client = DiscourseApi::Client.new("http://localhost:3000") -client.api_key = "YOUR_API_KEY" -client.api_username = "YOUR_USERNAME" - -# get list of backup files -puts client.backups() - -# create backup -puts client.create_backup() - -# restore backup -puts client.restore_backup("backup_file_name.tar.gz") - -# download backup -puts client.download_backup("backup_file_name.tar.gz", "/tmp/") +$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) +require File.expand_path('../../lib/discourse_api', __FILE__) + +client = DiscourseApi::Client.new("http://localhost:3000") +client.api_key = "YOUR_API_KEY" +client.api_username = "YOUR_USERNAME" + +# get list of backup files +puts client.backups() + +# create backup +puts client.create_backup() + +# restore backup +puts client.restore_backup("backup_file_name.tar.gz") + +# download backup +puts client.download_backup("backup_file_name.tar.gz", "/tmp/")