GodaddyApi 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 744fbeef295434d8087b2b74c28ad054f4d28a36
4
+ data.tar.gz: 5df7d3913ffdbe9e65085d09a664d6c13a897674
5
+ SHA512:
6
+ metadata.gz: 433b5e657ae1fc9affa10b6afbf130fdfac8fe21d55d797caa775921cad13a103b4b8de89111c829a9ab447e4efb837b452eb65c4a79fd448e2929f057e0c529
7
+ data.tar.gz: 5e89cf2b42db0e0d56169573134416bf6345c934b61ab6ea3d92bdea648b61cc38054a8a79a084fd1e919b14f029e24a2cf12ecaaf7eeac4a942aed6efa9b1e7
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.5
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ gem "pry"
6
+ gem 'faraday'
7
+ gem 'kartograph'
8
+ gem 'virtus'
9
+ gem 'resource_kit'
10
+ gem 'activesupport'
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'GodaddyApi/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "GodaddyApi"
8
+ spec.version = GodaddyApi::VERSION
9
+ spec.authors = ["Connor Atherton"]
10
+ spec.email = ["c.liam.atherton@gmail.com"]
11
+
12
+ spec.summary = %q{A ruby library for interacting with the godaddy cloud api}
13
+ spec.description = %q{A ruby library for interacting with the godaddy cloud api}
14
+ spec.homepage = "http://github.com/ConnorAtherton/godaddy-api"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.8"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Connor Atherton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # GodaddyApi
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/GodaddyApi`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'GodaddyApi'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install GodaddyApi
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it ( https://github.com/[my-github-username]/GodaddyApi/fork )
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "GodaddyApi"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ require "pry"
11
+ Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,58 @@
1
+ require 'faraday'
2
+
3
+ module GodaddyApi
4
+ class Client
5
+ API_URL = 'https://api.godaddy.com'
6
+
7
+ attr_reader :key
8
+
9
+ def initialize(options)
10
+ @key = options[:key]
11
+ @secret = options[:secret]
12
+ @resources = {}
13
+ end
14
+
15
+ def connection
16
+ Faraday.new(connection_options) do |req|
17
+ req.adapter :net_http
18
+ end
19
+ end
20
+
21
+ def self.resources
22
+ {
23
+ images: ImageResource,
24
+ keys: KeyResource,
25
+ servers: ServerResource,
26
+ limits: LimitResource,
27
+ specs: SpecResource
28
+ }
29
+ end
30
+
31
+ def resources
32
+ @resources ||= {}
33
+ end
34
+
35
+ # This attaches resources to the client
36
+ # Resources map to a specific model
37
+ def method_missing(name, *args, &block)
38
+ if self.class.resources.keys.include?(name)
39
+ resources[name] ||= self.class.resources[name].new(connection: connection)
40
+ resources[name]
41
+ else
42
+ super
43
+ end
44
+ end
45
+
46
+ private
47
+
48
+ def connection_options
49
+ {
50
+ url: API_URL,
51
+ headers: {
52
+ content_type: 'application/json',
53
+ authorization: "sso-key #{@key}:#{@secret}"
54
+ }
55
+ }
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,18 @@
1
+ module GodaddyApi
2
+ class ActionMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Action
7
+ root_key plural: 'actions', singular: 'action', scopes: [:read]
8
+
9
+ property :imageId, scopes: [:read]
10
+ property :version, scopes: [:read]
11
+ property :status, scopes: [:read]
12
+ property :sizeMb, scopes: [:read]
13
+ property :sourceServer, scopes: [:read]
14
+ property :rootImage, scopes: [:read]
15
+ property :type, scopes: [:read]
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ module GodaddyApi
2
+ class ImageMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Image
7
+ root_key plural: 'images', singular: 'image', scopes: [:read]
8
+
9
+ property :imageId, scopes: [:read]
10
+ property :version, scopes: [:read]
11
+ property :status, scopes: [:read]
12
+ property :sizeMb, scopes: [:read]
13
+ property :sourceServer, scopes: [:read]
14
+ property :rootImage, scopes: [:read]
15
+ property :type, scopes: [:read]
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,13 @@
1
+ module GodaddyApi
2
+ class KeyMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Key
7
+ root_key plural: 'keys', singular: 'key', scopes: [:read]
8
+
9
+ property :keyId, scopes: [:read]
10
+ property :name, scopes: [:read]
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ module GodaddyApi
2
+ class LimitMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Limit
7
+ root_key plural: 'limits', singular: 'limits', scopes: [:read]
8
+
9
+ property :servers, scopes: [:read]
10
+ property :snapshots, scopes: [:read]
11
+ property :keys, scopes: [:read]
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,34 @@
1
+ module GodaddyApi
2
+ class ServerMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Server
7
+ # TODO this ignores pagination
8
+ root_key plural: 'results', scopes: [:read]
9
+
10
+ property :serverId, scopes: [:read]
11
+ property :image, scopes: [:read]
12
+ property :spec, scopes: [:read]
13
+ property :key, scopes: [:read]
14
+ property :privateIp, scopes: [:read]
15
+ property :username, scopes: [:read]
16
+ property :publicIp, scopes: [:read]
17
+ property :status, scopes: [:read]
18
+ property :taskState, scopes: [:read]
19
+ property :key, scopes: [:read]
20
+ property :hostname, scopes: [:read]
21
+ property :backups, scopes: [:read]
22
+
23
+ # creating a server
24
+ property :hostname, scopes: [:create]
25
+ property :spec, scopes: [:create]
26
+ property :image, scopes: [:create]
27
+ property :key, scopes: [:create]
28
+ property :username, scopes: [:create]
29
+ property :password, scopes: [:create]
30
+ property :backups, scopes: [:create]
31
+ property :bootScript, scopes: [:create]
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,17 @@
1
+ module GodaddyApi
2
+ class SpecMapping
3
+ include Kartograph::DSL
4
+
5
+ kartograph do
6
+ mapping Spec
7
+ root_key plural: 'specs', singular: 'spec', scopes: [:read]
8
+
9
+ property :specId, scopes: [:read]
10
+ property :name, scopes: [:read]
11
+ property :ramMb, scopes: [:read]
12
+ property :diskGb, scopes: [:read]
13
+ property :cpuCores, scopes: [:read]
14
+ property :status, scopes: [:read]
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ module GodaddyApi
2
+ class Action < Base
3
+ # TODO write..
4
+ end
5
+ end
@@ -0,0 +1,17 @@
1
+ require 'virtus'
2
+
3
+ module GodaddyApi
4
+ class Base
5
+ include Virtus.model
6
+ # include Virtus::Equalizer.new(name || inspect)
7
+
8
+ # def inspect
9
+ # values = Hash[instance_variables.map { |name| [name, instance_variable_get(name)] } ]
10
+ # "<#{self.class.name} #{values}>"
11
+ # end
12
+
13
+ # Shared by all json responses
14
+ attribute :createdAt
15
+ attribute :modifiedAt
16
+ end
17
+ end
@@ -0,0 +1,11 @@
1
+ module GodaddyApi
2
+ class Image < Base
3
+ attribute :imageId
4
+ attribute :version
5
+ attribute :status
6
+ attribute :sizeMb
7
+ attribute :sourceServer
8
+ attribute :rootImage
9
+ attribute :type
10
+ end
11
+ end
@@ -0,0 +1,6 @@
1
+ module GodaddyApi
2
+ class Key < Base
3
+ attribute :keyId
4
+ attribute :name
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ module GodaddyApi
2
+ class Limit < Base
3
+ attribute :servers
4
+ attribute :snapshots
5
+ attribute :keys
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ module GodaddyApi
2
+ class Server < Base
3
+ attribute :serverId
4
+ attribute :image
5
+ attribute :spec
6
+ attribute :privateIp
7
+ attribute :username
8
+ attribute :publicIp
9
+ attribute :status
10
+ attribute :taskState
11
+ attribute :key
12
+ attribute :hostname
13
+ attribute :backups
14
+ end
15
+ end
@@ -0,0 +1,10 @@
1
+ module GodaddyApi
2
+ class Spec < Base
3
+ attribute :specId
4
+ attribute :name
5
+ attribute :ramMb
6
+ attribute :diskGb
7
+ attribute :cpuCores
8
+ attribute :status
9
+ end
10
+ end
@@ -0,0 +1,28 @@
1
+ module GodaddyApi
2
+ class ImageResource < ResourceKit::Resource
3
+ resources do
4
+ action :all, 'GET /images' do
5
+ handler(200) { |response| ImageMapping.extract_collection(response.body, :read) }
6
+ end
7
+
8
+ action :find, 'GET /images/:id' do
9
+ handler(200) { |response| ImageMapping.extract_single(response.body, :read) }
10
+ end
11
+
12
+ action :create, 'POST /images' do
13
+ body { |object| ImageMapping.representation_for(:create, object) }
14
+ handler(201) { |response| ImageMapping.extract_single(response.body, :read) }
15
+ # Error handling
16
+ # handler(422) { |response| ErrorMapping.fail_with(FailedCreate, response.body) }
17
+ end
18
+
19
+ action :actions, 'GET /images/:id/actions' do
20
+ handler(200) { |response| ActionMapping.extract_collection(response.body, :read) }
21
+ end
22
+
23
+ action :destroy, 'POST /images/:id/destroy' do
24
+ handler(204) { |response| true }
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,24 @@
1
+ module GodaddyApi
2
+ class KeyResource < ResourceKit::Resource
3
+ resources do
4
+ action :all, 'GET /keys' do
5
+ handler(200) { |response| KeyMapping.extract_collection(response.body, :read) }
6
+ end
7
+
8
+ action :find, 'GET /keys/:id' do
9
+ handler(200) { |response| KeyMapping.extract_single(response.body, :read) }
10
+ end
11
+
12
+ action :create, 'POST /keys' do
13
+ body { |object| KeyMapping.representation_for(:create, object) }
14
+ handler(201) { |response| KeyMapping.extract_single(response.body, :read) }
15
+ # Error handling
16
+ # handler(422) { |response| ErrorMapping.fail_with(FailedCreate, response.body) }
17
+ end
18
+
19
+ action :destroy, 'DELETE /keys/:id' do
20
+ handler(204) { |response| true }
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,9 @@
1
+ module GodaddyApi
2
+ class LimitResource < ResourceKit::Resource
3
+ resources do
4
+ action :all, 'GET /limits' do
5
+ handler(200) { |response| LimitMapping.extract_single(response.body, :read) }
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,43 @@
1
+ module GodaddyApi
2
+ class ServerResource < ResourceKit::Resource
3
+ resources do
4
+ default_handler { |response| raise "Unexpected response status #{response.status}... #{response.body}" }
5
+
6
+ # TODO need to write this path version everywhere
7
+ action :all, 'GET /v1/cloud/servers' do
8
+ handler(200) { |response| GodaddyApi::ServerMapping.extract_collection(response.body, :read) }
9
+ end
10
+
11
+ action :find, 'GET servers/:id' do
12
+ handler(200) { |response| ServerMapping.extract_single(response.body, :read) }
13
+ end
14
+
15
+ action :create, 'POST servers' do
16
+ body { |object| ServerMapping.representation_for(:create, object) }
17
+ handler(201) { |response| ServerMapping.extract_single(response.body, :read) }
18
+ # Error handling
19
+ # handler(422) { |response| ErrorMapping.fail_with(FailedCreate, response.body) }
20
+ end
21
+
22
+ action :actions, 'GET servers/:id/actions' do
23
+ handler(200) { |response| ActionMapping.extract_collection(response.body, :read) }
24
+ end
25
+
26
+ action :destroy, 'POST servers/:id/destroy' do
27
+ handler(204) { |response| true }
28
+ end
29
+
30
+ action :start, 'POST servers/:id/start' do
31
+ handler(200) { |response| true }
32
+ end
33
+
34
+ action :stop, 'POST servers/:id/stop' do
35
+ handler(200) { |response| true }
36
+ end
37
+ end
38
+
39
+ # def all(*args)
40
+ # GodaddyApi::PaginatedResource.new(action(:all), self, *args)
41
+ # end
42
+ end
43
+ end
@@ -0,0 +1,13 @@
1
+ module GodaddyApi
2
+ class SpecResource < ResourceKit::Resource
3
+ resources do
4
+ action :all, 'GET /specs' do
5
+ handler(200) { |response| SpecMapping.extract_collection(response.body, :read) }
6
+ end
7
+
8
+ action :find, 'GET /specs/:id' do
9
+ handler(200) { |response| SpecMapping.extract_single(response.body, :read) }
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module GodaddyApi
2
+ VERSION = "0.1.0"
3
+ end
data/lib/GodaddyApi.rb ADDED
@@ -0,0 +1,33 @@
1
+ require 'GodaddyApi/version'
2
+ require 'resource_kit'
3
+ require 'kartograph'
4
+ require 'active_support/all'
5
+
6
+ module GodaddyApi
7
+ # client
8
+ autoload :Client, 'GodaddyApi/client'
9
+
10
+ # models
11
+ autoload :Base, 'GodaddyApi/models/base'
12
+ autoload :Action, 'GodaddyApi/models/action'
13
+ autoload :Image, 'GodaddyApi/models/image'
14
+ autoload :Key, 'GodaddyApi/models/key'
15
+ autoload :Limit, 'GodaddyApi/models/limit'
16
+ autoload :Server, 'GodaddyApi/models/server'
17
+ autoload :Spec, 'GodaddyApi/models/spec'
18
+
19
+ # mappings
20
+ autoload :ActionMapping, 'GodaddyApi/mappings/action_mapping'
21
+ autoload :ImageMapping, 'GodaddyApi/mappings/image_mapping'
22
+ autoload :KeyMapping, 'GodaddyApi/mappings/key_mapping'
23
+ autoload :LimitMapping, 'GodaddyApi/mappings/limit_mapping'
24
+ autoload :ServerMapping, 'GodaddyApi/mappings/server_mapping'
25
+ autoload :SpecMapping, 'GodaddyApi/mappings/spec_mapping'
26
+
27
+ # resources
28
+ autoload :ImageResource, 'GodaddyApi/resources/image_resource'
29
+ autoload :KeyResource, 'GodaddyApi/resources/key_resource'
30
+ autoload :LimitResource, 'GodaddyApi/resources/limit_resource'
31
+ autoload :ServerResource, 'GodaddyApi/resources/server_resource'
32
+ autoload :SpecResource, 'GodaddyApi/resources/spec_resource'
33
+ end
data/todo.md ADDED
@@ -0,0 +1,10 @@
1
+ #TODOS
2
+
3
+ ##lib/GodaddyApi/mappings/server_mapping.rb
4
+ - this ignores pagination
5
+
6
+ ##lib/GodaddyApi/models/action.rb
7
+ - write..
8
+
9
+ ##lib/GodaddyApi/resources/server_resource.rb
10
+ - need to write this path version everywhere
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: GodaddyApi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Connor Atherton
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: A ruby library for interacting with the godaddy cloud api
42
+ email:
43
+ - c.liam.atherton@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".travis.yml"
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - GodaddyApi.gemspec
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - bin/console
58
+ - lib/GodaddyApi.rb
59
+ - lib/GodaddyApi/client.rb
60
+ - lib/GodaddyApi/mappings/action_mapping.rb
61
+ - lib/GodaddyApi/mappings/image_mapping.rb
62
+ - lib/GodaddyApi/mappings/key_mapping.rb
63
+ - lib/GodaddyApi/mappings/limit_mapping.rb
64
+ - lib/GodaddyApi/mappings/server_mapping.rb
65
+ - lib/GodaddyApi/mappings/spec_mapping.rb
66
+ - lib/GodaddyApi/models/action.rb
67
+ - lib/GodaddyApi/models/base.rb
68
+ - lib/GodaddyApi/models/image.rb
69
+ - lib/GodaddyApi/models/key.rb
70
+ - lib/GodaddyApi/models/limit.rb
71
+ - lib/GodaddyApi/models/server.rb
72
+ - lib/GodaddyApi/models/spec.rb
73
+ - lib/GodaddyApi/resources/image_resource.rb
74
+ - lib/GodaddyApi/resources/key_resource.rb
75
+ - lib/GodaddyApi/resources/limit_resource.rb
76
+ - lib/GodaddyApi/resources/server_resource.rb
77
+ - lib/GodaddyApi/resources/spec_resource.rb
78
+ - lib/GodaddyApi/version.rb
79
+ - todo.md
80
+ homepage: http://github.com/ConnorAtherton/godaddy-api
81
+ licenses:
82
+ - MIT
83
+ metadata: {}
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 2.2.2
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: A ruby library for interacting with the godaddy cloud api
104
+ test_files: []