transip 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.rdoc +2 -2
- data/lib/transip.rb +1 -1
- data/lib/transip/version.rb +3 -0
- data/transip.gemspec +29 -0
- metadata +11 -7
- data/VERSION.yml +0 -4
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.gem
|
data/README.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
= TransIP API
|
2
2
|
|
3
|
-
Ruby gem to use the full TransIP API (v4.2).
|
4
|
-
|
3
|
+
Ruby gem to use the full TransIP API (v4.2).
|
4
|
+
Uses an updated version of savon, and implements the new request signing method that the guys at TransIP have introduced into their api. So far, i have only tested the :get_domain_names, :get_info and :set_dns_entries calls.
|
5
5
|
|
6
6
|
The transip API makes use of public/private key encryption. You need to use the TransIP
|
7
7
|
control panel to give your server access to the api, and to generate a key. You can then
|
data/lib/transip.rb
CHANGED
data/transip.gemspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'transip/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = %q{transip}
|
8
|
+
spec.version = Transip::VERSION
|
9
|
+
spec.authors = ["Joost Hietbrink", "Richard Bronkhorst"]
|
10
|
+
spec.email = ["joost@joopp.com"]
|
11
|
+
spec.description = %q{Ruby gem to use the full TransIP API (v4.2).}
|
12
|
+
spec.summary = %q{Ruby gem to use the full TransIP API (v4.2).}
|
13
|
+
spec.homepage = %q{http://github.com/joost/transip}
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.require_paths = ["lib"]
|
18
|
+
|
19
|
+
spec.add_dependency('savon', '>= 2.3.0')
|
20
|
+
spec.add_dependency('curb', '>= 0.8.4')
|
21
|
+
spec.add_dependency('facets', '>= 2.9.3')
|
22
|
+
|
23
|
+
spec.extra_rdoc_files = [
|
24
|
+
"MIT-LICENSE",
|
25
|
+
"README.rdoc"
|
26
|
+
]
|
27
|
+
spec.has_rdoc = true
|
28
|
+
spec.rdoc_options = ["--charset=UTF-8"]
|
29
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-09-
|
13
|
+
date: 2013-09-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: savon
|
@@ -61,21 +61,25 @@ dependencies:
|
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 2.9.3
|
63
63
|
description: Ruby gem to use the full TransIP API (v4.2).
|
64
|
-
email:
|
64
|
+
email:
|
65
|
+
- joost@joopp.com
|
65
66
|
executables: []
|
66
67
|
extensions: []
|
67
68
|
extra_rdoc_files:
|
68
69
|
- MIT-LICENSE
|
69
70
|
- README.rdoc
|
70
71
|
files:
|
71
|
-
-
|
72
|
-
- README.rdoc
|
73
|
-
- VERSION.yml
|
72
|
+
- .gitignore
|
74
73
|
- Gemfile
|
75
74
|
- Gemfile.lock
|
75
|
+
- MIT-LICENSE
|
76
|
+
- README.rdoc
|
76
77
|
- lib/transip.rb
|
78
|
+
- lib/transip/version.rb
|
79
|
+
- transip.gemspec
|
77
80
|
homepage: http://github.com/joost/transip
|
78
|
-
licenses:
|
81
|
+
licenses:
|
82
|
+
- MIT
|
79
83
|
post_install_message:
|
80
84
|
rdoc_options:
|
81
85
|
- --charset=UTF-8
|
data/VERSION.yml
DELETED