├── .github └── workflows │ ├── codeql-analysis.yml │ └── ruby.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── convertkit-ruby.gemspec ├── fixtures └── vcr_cassettes │ ├── account.yml │ ├── add_subscriber_to_form.yml │ ├── delete_custom_field.yml │ ├── forms.yml │ ├── get_custom_fields.yml │ ├── new_custom_field.yml │ └── update_custom_field.yml ├── lib ├── convertkit.rb └── convertkit │ ├── client.rb │ ├── client │ ├── account.rb │ ├── custom_fields.rb │ ├── forms.rb │ ├── sequences.rb │ ├── subscribers.rb │ ├── tags.rb │ └── webhooks.rb │ ├── configuration.rb │ ├── connection.rb │ ├── errors.rb │ └── version.rb └── spec ├── convertkit ├── client │ ├── account_spec.rb │ ├── custom_fields_spec.rb │ ├── forms_spec.rb │ ├── sequences_spec.rb │ ├── subscribers_spec.rb │ ├── tags_spec.rb │ └── webhook_spec.rb ├── client_spec.rb ├── connection_spec.rb └── convertkit_spec.rb └── spec_helper.rb /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/bin/setup -------------------------------------------------------------------------------- /convertkit-ruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/convertkit-ruby.gemspec -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/account.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/add_subscriber_to_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/add_subscriber_to_form.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/delete_custom_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/delete_custom_field.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/forms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/forms.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/get_custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/get_custom_fields.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/new_custom_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/new_custom_field.yml -------------------------------------------------------------------------------- /fixtures/vcr_cassettes/update_custom_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/fixtures/vcr_cassettes/update_custom_field.yml -------------------------------------------------------------------------------- /lib/convertkit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit.rb -------------------------------------------------------------------------------- /lib/convertkit/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client.rb -------------------------------------------------------------------------------- /lib/convertkit/client/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/account.rb -------------------------------------------------------------------------------- /lib/convertkit/client/custom_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/custom_fields.rb -------------------------------------------------------------------------------- /lib/convertkit/client/forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/forms.rb -------------------------------------------------------------------------------- /lib/convertkit/client/sequences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/sequences.rb -------------------------------------------------------------------------------- /lib/convertkit/client/subscribers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/subscribers.rb -------------------------------------------------------------------------------- /lib/convertkit/client/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/tags.rb -------------------------------------------------------------------------------- /lib/convertkit/client/webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/client/webhooks.rb -------------------------------------------------------------------------------- /lib/convertkit/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/configuration.rb -------------------------------------------------------------------------------- /lib/convertkit/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/connection.rb -------------------------------------------------------------------------------- /lib/convertkit/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/lib/convertkit/errors.rb -------------------------------------------------------------------------------- /lib/convertkit/version.rb: -------------------------------------------------------------------------------- 1 | module Convertkit 2 | VERSION = "1.0.0" 3 | end -------------------------------------------------------------------------------- /spec/convertkit/client/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/account_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/custom_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/custom_fields_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/forms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/forms_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/sequences_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/sequences_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/subscribers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/subscribers_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/tags_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client/webhook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client/webhook_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/client_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/connection_spec.rb -------------------------------------------------------------------------------- /spec/convertkit/convertkit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/convertkit/convertkit_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximadeka/convertkit-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------