Sha256: 016142779212f3629118a8c007a4d962dc73a5ab2988e10f00b639683368a264
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 KB
Contents
# Aspose.Tasks Cloud SDK For Ruby This SDK lets you use [Aspose Cloud Tasks APIs](http://www.aspose.com/cloud/project-management-api.aspx) in your Ruby web apps. ## Installing You can simply install Aspose Tasks Cloud SDK with gem: `gem install aspose_tasks_cloud` ## Usage APIs of this SDK can be called as follows: ```ruby require 'aspose_tasks_cloud' class TasksUsage include AsposeTasksCloud include AsposeStorageCloud def initialize #Get App key and App SID from https://cloud.aspose.com AsposeApp.app_key_and_sid("APP_KEY", "APP_SID") @tasks_api = TasksApi.new end def upload_file(file_name) @storage_api = StorageApi.new response = @storage_api.put_create(file_name, File.open("data/" << file_name,"r") { |io| io.read } ) end def get_task_document_with_format #Get a project document in specified format. file_name = "sample-project.mpp" upload_file(file_name) format = "pdf" response = @tasks_api.get_task_document_with_format(file_name, format) end end ``` ## Unit Tests Aspose Tasks SDK includes a suite of unit tests within the [test](https://github.com/asposetasks/Aspose_Tasks_Cloud/blob/master/SDKs/Aspose.Tasks_Cloud_SDK_for_Ruby/test/tasks_tests.rb) subdirectory. These Unit Tests also serves as examples of how to use the Aspose Tasks SDK. ## Contact Your feedback is very important to us. Please email us all your queries and feedback at marketplace@aspose.com. ## License Aspose Tasks SDK is available under the MIT license. See the [LICENSE](https://github.com/asposetasks/Aspose_Tasks_Cloud/blob/master/SDKs/Aspose.Tasks_Cloud_SDK_for_Ruby/LICENSE) file for more info.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aspose_tasks_cloud-1.0.1 | README.md |
aspose_tasks_cloud-1.0.0 | README.md |