domrobot 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/README.md +39 -0
- data/Rakefile +1 -0
- data/bin/console +6 -0
- data/bin/setup +7 -0
- data/domrobot.gemspec +32 -0
- data/domrobot.tmp +1 -0
- data/exe/domrobot +6 -0
- data/lib/domrobot/address.rb +9 -0
- data/lib/domrobot/cli.rb +70 -0
- data/lib/domrobot/config.rb +65 -0
- data/lib/domrobot/sections/nameserver.rb +71 -0
- data/lib/domrobot/sections.rb +1 -0
- data/lib/domrobot/subdomain.rb +17 -0
- data/lib/domrobot/types/record.rb +33 -0
- data/lib/domrobot/types.rb +1 -0
- data/lib/domrobot/version.rb +3 -0
- data/lib/domrobot.rb +28 -0
- metadata +192 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fcc0936c2b9f95893106070ad50a5544d8903897
|
4
|
+
data.tar.gz: bcd2f0bf38d1ee5915d6332a72d9b2e5d9249c3d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d4c33db067335116501a23e5cded43c85d3739702fb240c946133aadc2d02d4e7924158b05b160c7381f3646cc72f8f1cf6fa08396bc7396a0d4970b1bc69b50
|
7
|
+
data.tar.gz: afcd7ecfb6ed5142bc0d25662d6261fbd9177c8bdbbd52c461acaccb2071408cdc635db1dd1403495f912913e2c3ab9a7399cd9fbe734d771c3e2118add4c434
|
data/.gitignore
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
domrobot
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.2.2
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Domrobot
|
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/domrobot`. 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 'domrobot'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install domrobot
|
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]/domrobot/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 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
data/bin/setup
ADDED
data/domrobot.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'domrobot/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "domrobot"
|
8
|
+
spec.version = Domrobot::VERSION
|
9
|
+
spec.authors = ["Mathias Kaufmann"]
|
10
|
+
spec.email = ["me@stei.gr"]
|
11
|
+
|
12
|
+
spec.summary = %q{Domrobot Script for managing inwx ote interface.}
|
13
|
+
spec.description = %q{Domrobot Script for managing inwx ote interface.}
|
14
|
+
spec.homepage = "https://domrobot.stei.gr"
|
15
|
+
|
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_dependency "inwx-rb","~> 0.1"
|
23
|
+
spec.add_dependency "recursive-open-struct"
|
24
|
+
spec.add_dependency "toml-rb"
|
25
|
+
spec.add_dependency "activesupport"
|
26
|
+
spec.add_dependency "thor"
|
27
|
+
spec.add_dependency "bundler", "~> 1.9"
|
28
|
+
spec.add_dependency "reachable-under"
|
29
|
+
|
30
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
31
|
+
spec.add_development_dependency "pry"
|
32
|
+
end
|
data/domrobot.tmp
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
domrobot=4ca2a1a7114b0b211e43ec8205a8fd28
|
data/exe/domrobot
ADDED
data/lib/domrobot/cli.rb
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
require "thor"
|
2
|
+
require "domrobot"
|
3
|
+
|
4
|
+
module Domrobot
|
5
|
+
class Cli < Thor
|
6
|
+
desc "configure","configure domrobot credentials"
|
7
|
+
method_option :username, type: :string
|
8
|
+
method_option :password, type: :string
|
9
|
+
method_option :server, type: :string
|
10
|
+
def configure file=nil
|
11
|
+
config = file and Config.load file
|
12
|
+
config ||= Config
|
13
|
+
config.general.username = options["username"] if options["username"]
|
14
|
+
config.general.password = options["password"] if options["password"]
|
15
|
+
config.general.server = options["server"] if options["server"]
|
16
|
+
if file
|
17
|
+
config.save(file)
|
18
|
+
else
|
19
|
+
config.save
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "updateRecord","updateRecord Domrobot Nameserver data"
|
24
|
+
method_option :type, type: :string, required: true, enum: %w{A AAAA CNAME}
|
25
|
+
method_option :default_address, type: :boolean
|
26
|
+
method_option :address, type: :string
|
27
|
+
method_option :subdomain, type: :array
|
28
|
+
method_option :domain, type: :string, required: true
|
29
|
+
method_option :touch, type: :string
|
30
|
+
|
31
|
+
def updateRecord name
|
32
|
+
success_callbacks = []
|
33
|
+
if options["touch"]
|
34
|
+
require "fileutils"
|
35
|
+
success_callbacks << Proc.new do |message,data|
|
36
|
+
FileUtils.mkdir_p File.dirname options["touch"]
|
37
|
+
File.write options["touch"], [message,data].join("\n")
|
38
|
+
end
|
39
|
+
end
|
40
|
+
if options["default_address"]
|
41
|
+
require "domrobot/address"
|
42
|
+
address = Domrobot::Address.default
|
43
|
+
else
|
44
|
+
address = options["address"]
|
45
|
+
end
|
46
|
+
raise Exceptions unless address
|
47
|
+
subdomain = Subdomain.construct options["subdomain"]
|
48
|
+
domain = options["domain"]
|
49
|
+
name = [name,subdomain,domain].join(".")
|
50
|
+
type = options["type"]
|
51
|
+
record = Record.find_by domain:domain, name:name
|
52
|
+
unless record
|
53
|
+
puts "NEW"
|
54
|
+
record = Record.new domain:domain,name:name,type:type,content:address
|
55
|
+
result = record.save
|
56
|
+
if result["code"].to_i = 1000
|
57
|
+
m,d = "OK NOOP","#{address} A #{name}."
|
58
|
+
puts m
|
59
|
+
success_callbacks.map{|cb| cb.call(m,d)} and exit 0
|
60
|
+
end
|
61
|
+
exit 1
|
62
|
+
end
|
63
|
+
if record.content == address
|
64
|
+
m,d = "OK NOOP","#{address} A #{name}."
|
65
|
+
puts m
|
66
|
+
success_callbacks.map{|cb| cb.call(m,d) } and exit 0
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require "fileutils"
|
2
|
+
require "toml"
|
3
|
+
require "recursive-open-struct"
|
4
|
+
require "active_support/core_ext/hash/deep_merge"
|
5
|
+
|
6
|
+
module Domrobot
|
7
|
+
class Config < RecursiveOpenStruct
|
8
|
+
class << self
|
9
|
+
def load src=nil
|
10
|
+
src ||= load_file
|
11
|
+
data = File.exists?(src) ? TOML.load_file(src,symbolize_keys:true) : {} rescue {}
|
12
|
+
data = defaults.deep_merge(data)
|
13
|
+
@current = self.new(data)
|
14
|
+
end
|
15
|
+
def save dst=nil
|
16
|
+
dst ||= save_file
|
17
|
+
File.write dst, TOML.dump(current.to_h)
|
18
|
+
end
|
19
|
+
private
|
20
|
+
def method_missing method, *args, &block
|
21
|
+
current.send( method, *args, &block )
|
22
|
+
end
|
23
|
+
def load_file
|
24
|
+
[global_file, user_file].each do |f|
|
25
|
+
next unless File.exists?(f)
|
26
|
+
return File.expand_path(f)
|
27
|
+
end
|
28
|
+
nil
|
29
|
+
end
|
30
|
+
def save_file
|
31
|
+
[global_file, user_file].each do |f|
|
32
|
+
FileUtils.touch(f) rescue next
|
33
|
+
File.chmod(0600,f)
|
34
|
+
return File.expand_path(f)
|
35
|
+
end
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
def user_file
|
39
|
+
File.expand_path("~/.domrobot.tml")
|
40
|
+
end
|
41
|
+
def global_file
|
42
|
+
File.expand_path(Domrobot::CONFIG_FILE)
|
43
|
+
end
|
44
|
+
def current
|
45
|
+
return @current if @current
|
46
|
+
load
|
47
|
+
end
|
48
|
+
def defaults
|
49
|
+
{
|
50
|
+
general: {
|
51
|
+
username: 'inwx-username',
|
52
|
+
password: 'please-change-at-etc-domrobot-tml',
|
53
|
+
server: 'api.ote.domrobot.com'
|
54
|
+
}
|
55
|
+
}
|
56
|
+
end
|
57
|
+
end
|
58
|
+
def keys
|
59
|
+
@table.keys
|
60
|
+
end
|
61
|
+
def each *args, &block
|
62
|
+
@table.each(*args,&block)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
module Domrobot
|
2
|
+
module Sections
|
3
|
+
class Nameserver
|
4
|
+
class << self
|
5
|
+
def check *args
|
6
|
+
args = stringify_keys args.first
|
7
|
+
return false unless args["domain"]
|
8
|
+
return false unless args["ns"]
|
9
|
+
run __method__, args
|
10
|
+
end
|
11
|
+
|
12
|
+
def create *args
|
13
|
+
args = stringify_keys args.first
|
14
|
+
return false unless args["domain"]
|
15
|
+
return false unless args["type"]
|
16
|
+
run __method__, args
|
17
|
+
end
|
18
|
+
|
19
|
+
def createRecord *args
|
20
|
+
args = stringify_keys args.first
|
21
|
+
return false unless args["domain"]
|
22
|
+
return false unless args["type"]
|
23
|
+
run __method__, args
|
24
|
+
end
|
25
|
+
|
26
|
+
def info *args
|
27
|
+
args = stringify_keys args.first
|
28
|
+
run __method__, args
|
29
|
+
end
|
30
|
+
|
31
|
+
def list *args
|
32
|
+
args = stringify_keys args.first
|
33
|
+
run __method__, args
|
34
|
+
end
|
35
|
+
|
36
|
+
def update *args
|
37
|
+
args = stringify_keys args.first
|
38
|
+
run __method__, args
|
39
|
+
end
|
40
|
+
|
41
|
+
def delete *args
|
42
|
+
args = stringify_keys args.first
|
43
|
+
run __method__, args
|
44
|
+
end
|
45
|
+
|
46
|
+
def updateRecord *args
|
47
|
+
args = stringify_keys args.first
|
48
|
+
return false unless args["id"]
|
49
|
+
run __method__, args
|
50
|
+
end
|
51
|
+
def deleteRecord *args
|
52
|
+
args = stringify_keys args.first
|
53
|
+
return false unless args["id"]
|
54
|
+
run __method__, args
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
def run method, params
|
59
|
+
Domrobot.login
|
60
|
+
Domrobot.run(object,method,params.map{|k,v|["#{k}",v]}.to_h)
|
61
|
+
end
|
62
|
+
def object
|
63
|
+
"nameserver"
|
64
|
+
end
|
65
|
+
def stringify_keys params
|
66
|
+
params.map{|k,v|["#{k}",v]}.to_h
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require "domrobot/sections/nameserver"
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Domrobot
|
2
|
+
module Subdomain
|
3
|
+
class << self
|
4
|
+
def construct elements
|
5
|
+
elements.collect do |element|
|
6
|
+
uri = URI element
|
7
|
+
case uri.scheme
|
8
|
+
when "file"
|
9
|
+
File.read(uri.path).strip
|
10
|
+
else
|
11
|
+
uri.path
|
12
|
+
end
|
13
|
+
end.join(".")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require "ostruct"
|
2
|
+
|
3
|
+
module Domrobot
|
4
|
+
class Record < OpenStruct
|
5
|
+
class << self
|
6
|
+
def where params={}
|
7
|
+
return unless params[:domain]
|
8
|
+
Domrobot.nameserver.info(domain: params[:domain])["resData"]["record"].select do |record_data|
|
9
|
+
params.reject{|k,v|k==:domain}.collect do |property,value|
|
10
|
+
record_data[property.to_s].match(value) != nil
|
11
|
+
end.reduce(:&)
|
12
|
+
end.collect do |record|
|
13
|
+
self.new record.merge(domain:params[:domain])
|
14
|
+
end
|
15
|
+
end
|
16
|
+
def find_by params={}
|
17
|
+
where(params).first
|
18
|
+
end
|
19
|
+
end
|
20
|
+
def save
|
21
|
+
Domrobot.nameserver.createRecord request.reject{|k,v|k=="id"}
|
22
|
+
end
|
23
|
+
def update
|
24
|
+
Domrobot.nameserver.updateRecord request.reject{|k,v|%w{type domain}.include? k}
|
25
|
+
end
|
26
|
+
def delete
|
27
|
+
Domrobot.nameserver.deleteRecord({"id":self.id})
|
28
|
+
end
|
29
|
+
def request
|
30
|
+
self.to_h.map{|k,v| ["#{k}",v] }.to_h
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require "domrobot/types/record"
|
data/lib/domrobot.rb
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
require "domrobot/version"
|
2
|
+
require "domrobot/config"
|
3
|
+
require "inwx/domrobot"
|
4
|
+
|
5
|
+
require "domrobot/types"
|
6
|
+
require "domrobot/sections"
|
7
|
+
require "domrobot/subdomain"
|
8
|
+
|
9
|
+
module Domrobot
|
10
|
+
CONFIG_FILE="/etc/domrobot.tml"
|
11
|
+
class << self
|
12
|
+
def robot
|
13
|
+
@robot ||= INWX::Domrobot.new(Config.general.server)
|
14
|
+
end
|
15
|
+
def login
|
16
|
+
return @login if @login
|
17
|
+
result = robot.login(Config.general.username,Config.general.password)
|
18
|
+
@login = result["code"] == 1000
|
19
|
+
end
|
20
|
+
def run object, method, params
|
21
|
+
params = params.map{|k,v|["#{k}",v]}.to_h
|
22
|
+
robot.call(object.to_s, method.to_s, params)
|
23
|
+
end
|
24
|
+
def nameserver
|
25
|
+
Domrobot::Sections::Nameserver
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,192 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: domrobot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mathias Kaufmann
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-04-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: inwx-rb
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: recursive-open-struct
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: toml-rb
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activesupport
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: thor
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bundler
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.9'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.9'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: reachable-under
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rake
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '10.0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '10.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: pry
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: Domrobot Script for managing inwx ote interface.
|
140
|
+
email:
|
141
|
+
- me@stei.gr
|
142
|
+
executables:
|
143
|
+
- domrobot
|
144
|
+
extensions: []
|
145
|
+
extra_rdoc_files: []
|
146
|
+
files:
|
147
|
+
- ".gitignore"
|
148
|
+
- ".ruby-gemset"
|
149
|
+
- ".ruby-version"
|
150
|
+
- ".travis.yml"
|
151
|
+
- Gemfile
|
152
|
+
- README.md
|
153
|
+
- Rakefile
|
154
|
+
- bin/console
|
155
|
+
- bin/setup
|
156
|
+
- domrobot.gemspec
|
157
|
+
- domrobot.tmp
|
158
|
+
- exe/domrobot
|
159
|
+
- lib/domrobot.rb
|
160
|
+
- lib/domrobot/address.rb
|
161
|
+
- lib/domrobot/cli.rb
|
162
|
+
- lib/domrobot/config.rb
|
163
|
+
- lib/domrobot/sections.rb
|
164
|
+
- lib/domrobot/sections/nameserver.rb
|
165
|
+
- lib/domrobot/subdomain.rb
|
166
|
+
- lib/domrobot/types.rb
|
167
|
+
- lib/domrobot/types/record.rb
|
168
|
+
- lib/domrobot/version.rb
|
169
|
+
homepage: https://domrobot.stei.gr
|
170
|
+
licenses: []
|
171
|
+
metadata: {}
|
172
|
+
post_install_message:
|
173
|
+
rdoc_options: []
|
174
|
+
require_paths:
|
175
|
+
- lib
|
176
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - ">="
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: '0'
|
186
|
+
requirements: []
|
187
|
+
rubyforge_project:
|
188
|
+
rubygems_version: 2.4.6
|
189
|
+
signing_key:
|
190
|
+
specification_version: 4
|
191
|
+
summary: Domrobot Script for managing inwx ote interface.
|
192
|
+
test_files: []
|