├── .gitignore ├── .rspec ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── hellosign-ruby-sdk.gemspec ├── lib ├── hello_sign.rb ├── hello_sign │ ├── .error.rb.swp │ ├── api.rb │ ├── api │ │ ├── account.rb │ │ ├── api_app.rb │ │ ├── bulk_send_job.rb │ │ ├── embedded.rb │ │ ├── oauth.rb │ │ ├── signature_request.rb │ │ ├── team.rb │ │ ├── template.rb │ │ └── unclaimed_draft.rb │ ├── client.rb │ ├── configuration.rb │ ├── error.rb │ ├── resource.rb │ ├── resource │ │ ├── account.rb │ │ ├── api_app.rb │ │ ├── base_resource.rb │ │ ├── bulk_send_job.rb │ │ ├── embedded.rb │ │ ├── resource_array.rb │ │ ├── signature_request.rb │ │ ├── team.rb │ │ ├── template.rb │ │ ├── template_draft.rb │ │ └── unclaimed_draft.rb │ └── version.rb └── hellosign-ruby-sdk.rb └── spec ├── fixtures ├── account.json ├── api_app.json ├── api_apps.json ├── bulk_send_job.json ├── bulk_send_jobs.json ├── embedded.json ├── empty.pdf ├── error.json ├── file.json ├── headers.json ├── nda.pdf ├── signature_request.json ├── signature_requests.json ├── team.json ├── template.json ├── templates.json ├── token.json └── unclaimed_draft.json ├── hello_sign ├── .error_spec.rb.swp ├── api │ ├── account_spec.rb │ ├── api_app_spec.rb │ ├── bulk_send_job_spec.rb │ ├── embedded_spec.rb │ ├── oauth_spec.rb │ ├── signature_request_spec.rb │ ├── team_spec.rb │ ├── template_spec.rb │ └── unclaimed_draft_spec.rb ├── client_spec.rb ├── error_spec.rb └── resource │ └── base_resource_spec.rb ├── hello_sign_spec.rb ├── scenarios └── uploads_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/Rakefile -------------------------------------------------------------------------------- /hellosign-ruby-sdk.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/hellosign-ruby-sdk.gemspec -------------------------------------------------------------------------------- /lib/hello_sign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign.rb -------------------------------------------------------------------------------- /lib/hello_sign/.error.rb.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/.error.rb.swp -------------------------------------------------------------------------------- /lib/hello_sign/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/account.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/api_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/api_app.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/bulk_send_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/bulk_send_job.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/embedded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/embedded.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/oauth.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/signature_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/signature_request.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/team.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/template.rb -------------------------------------------------------------------------------- /lib/hello_sign/api/unclaimed_draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/api/unclaimed_draft.rb -------------------------------------------------------------------------------- /lib/hello_sign/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/client.rb -------------------------------------------------------------------------------- /lib/hello_sign/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/configuration.rb -------------------------------------------------------------------------------- /lib/hello_sign/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/error.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/account.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/api_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/api_app.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/base_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/base_resource.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/bulk_send_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/bulk_send_job.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/embedded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/embedded.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/resource_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/resource_array.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/signature_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/signature_request.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/team.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/template.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/template_draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/template_draft.rb -------------------------------------------------------------------------------- /lib/hello_sign/resource/unclaimed_draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/resource/unclaimed_draft.rb -------------------------------------------------------------------------------- /lib/hello_sign/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hello_sign/version.rb -------------------------------------------------------------------------------- /lib/hellosign-ruby-sdk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/lib/hellosign-ruby-sdk.rb -------------------------------------------------------------------------------- /spec/fixtures/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/account.json -------------------------------------------------------------------------------- /spec/fixtures/api_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/api_app.json -------------------------------------------------------------------------------- /spec/fixtures/api_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/api_apps.json -------------------------------------------------------------------------------- /spec/fixtures/bulk_send_job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/bulk_send_job.json -------------------------------------------------------------------------------- /spec/fixtures/bulk_send_jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/bulk_send_jobs.json -------------------------------------------------------------------------------- /spec/fixtures/embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/embedded.json -------------------------------------------------------------------------------- /spec/fixtures/empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/empty.pdf -------------------------------------------------------------------------------- /spec/fixtures/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/error.json -------------------------------------------------------------------------------- /spec/fixtures/file.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/headers.json -------------------------------------------------------------------------------- /spec/fixtures/nda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/nda.pdf -------------------------------------------------------------------------------- /spec/fixtures/signature_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/signature_request.json -------------------------------------------------------------------------------- /spec/fixtures/signature_requests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/signature_requests.json -------------------------------------------------------------------------------- /spec/fixtures/team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/team.json -------------------------------------------------------------------------------- /spec/fixtures/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/template.json -------------------------------------------------------------------------------- /spec/fixtures/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/templates.json -------------------------------------------------------------------------------- /spec/fixtures/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/token.json -------------------------------------------------------------------------------- /spec/fixtures/unclaimed_draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/fixtures/unclaimed_draft.json -------------------------------------------------------------------------------- /spec/hello_sign/.error_spec.rb.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/.error_spec.rb.swp -------------------------------------------------------------------------------- /spec/hello_sign/api/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/account_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/api_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/api_app_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/bulk_send_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/bulk_send_job_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/embedded_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/embedded_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/oauth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/oauth_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/signature_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/signature_request_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/team_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/template_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/api/unclaimed_draft_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/api/unclaimed_draft_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/client_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/error_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign/resource/base_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign/resource/base_resource_spec.rb -------------------------------------------------------------------------------- /spec/hello_sign_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/hello_sign_spec.rb -------------------------------------------------------------------------------- /spec/scenarios/uploads_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/scenarios/uploads_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosign/hellosign-ruby-sdk/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------