construqt 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/lib/construqt/addresses.rb +204 -0
  3. data/lib/construqt/bgps.rb +164 -0
  4. data/lib/construqt/cables.rb +47 -0
  5. data/lib/construqt/firewalls.rb +247 -0
  6. data/lib/construqt/flavour/ciscian/ciscian.rb +687 -0
  7. data/lib/construqt/flavour/ciscian/dialect_dlink-dgs15xx.rb +235 -0
  8. data/lib/construqt/flavour/ciscian/dialect_hp-2510g.rb +114 -0
  9. data/lib/construqt/flavour/delegates.rb +448 -0
  10. data/lib/construqt/flavour/flavour.rb +97 -0
  11. data/lib/construqt/flavour/mikrotik/flavour_mikrotik.rb +417 -0
  12. data/lib/construqt/flavour/mikrotik/flavour_mikrotik_bgp.rb +134 -0
  13. data/lib/construqt/flavour/mikrotik/flavour_mikrotik_interface.rb +79 -0
  14. data/lib/construqt/flavour/mikrotik/flavour_mikrotik_ipsec.rb +65 -0
  15. data/lib/construqt/flavour/mikrotik/flavour_mikrotik_result.rb +182 -0
  16. data/lib/construqt/flavour/mikrotik/flavour_mikrotik_schema.rb +355 -0
  17. data/lib/construqt/flavour/plantuml/plantuml.rb +462 -0
  18. data/lib/construqt/flavour/ubuntu/flavour_ubuntu.rb +381 -0
  19. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_bgp.rb +117 -0
  20. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_dns.rb +97 -0
  21. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_firewall.rb +300 -0
  22. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_ipsec.rb +144 -0
  23. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_opvn.rb +60 -0
  24. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_result.rb +537 -0
  25. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_services.rb +115 -0
  26. data/lib/construqt/flavour/ubuntu/flavour_ubuntu_vrrp.rb +52 -0
  27. data/lib/construqt/flavour/unknown/unknown.rb +175 -0
  28. data/lib/construqt/hostid.rb +42 -0
  29. data/lib/construqt/hosts.rb +98 -0
  30. data/lib/construqt/interfaces.rb +166 -0
  31. data/lib/construqt/ipsecs.rb +64 -0
  32. data/lib/construqt/networks.rb +81 -0
  33. data/lib/construqt/regions.rb +32 -0
  34. data/lib/construqt/resource.rb +42 -0
  35. data/lib/construqt/services.rb +53 -0
  36. data/lib/construqt/tags.rb +61 -0
  37. data/lib/construqt/templates.rb +37 -0
  38. data/lib/construqt/tests/test_addresses.rb +50 -0
  39. data/lib/construqt/tests/test_bgps.rb +24 -0
  40. data/lib/construqt/tests/test_hostid.rb +32 -0
  41. data/lib/construqt/tests/test_hosts.rb +23 -0
  42. data/lib/construqt/tests/test_utils.rb +76 -0
  43. data/lib/construqt/users.rb +19 -0
  44. data/lib/construqt/util.rb +163 -0
  45. data/lib/construqt/version.rb +3 -0
  46. data/lib/construqt/vlans.rb +51 -0
  47. data/lib/construqt.rb +92 -0
  48. metadata +105 -0
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: construqt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Meno Abels
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '10.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '10.0'
27
+ description: Construqt me
28
+ email:
29
+ - meno.abels@construqt.me
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - lib/construqt.rb
35
+ - lib/construqt/addresses.rb
36
+ - lib/construqt/bgps.rb
37
+ - lib/construqt/cables.rb
38
+ - lib/construqt/firewalls.rb
39
+ - lib/construqt/flavour/ciscian/ciscian.rb
40
+ - lib/construqt/flavour/ciscian/dialect_dlink-dgs15xx.rb
41
+ - lib/construqt/flavour/ciscian/dialect_hp-2510g.rb
42
+ - lib/construqt/flavour/delegates.rb
43
+ - lib/construqt/flavour/flavour.rb
44
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik.rb
45
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik_bgp.rb
46
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik_interface.rb
47
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik_ipsec.rb
48
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik_result.rb
49
+ - lib/construqt/flavour/mikrotik/flavour_mikrotik_schema.rb
50
+ - lib/construqt/flavour/plantuml/plantuml.rb
51
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu.rb
52
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_bgp.rb
53
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_dns.rb
54
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_firewall.rb
55
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_ipsec.rb
56
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_opvn.rb
57
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_result.rb
58
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_services.rb
59
+ - lib/construqt/flavour/ubuntu/flavour_ubuntu_vrrp.rb
60
+ - lib/construqt/flavour/unknown/unknown.rb
61
+ - lib/construqt/hostid.rb
62
+ - lib/construqt/hosts.rb
63
+ - lib/construqt/interfaces.rb
64
+ - lib/construqt/ipsecs.rb
65
+ - lib/construqt/networks.rb
66
+ - lib/construqt/regions.rb
67
+ - lib/construqt/resource.rb
68
+ - lib/construqt/services.rb
69
+ - lib/construqt/tags.rb
70
+ - lib/construqt/templates.rb
71
+ - lib/construqt/tests/test_addresses.rb
72
+ - lib/construqt/tests/test_bgps.rb
73
+ - lib/construqt/tests/test_hostid.rb
74
+ - lib/construqt/tests/test_hosts.rb
75
+ - lib/construqt/tests/test_utils.rb
76
+ - lib/construqt/users.rb
77
+ - lib/construqt/util.rb
78
+ - lib/construqt/version.rb
79
+ - lib/construqt/vlans.rb
80
+ homepage: http://github.com/mabels/construqt
81
+ licenses:
82
+ - Apache License Version 2.0, January 2004
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.0.14
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: Construqt me
104
+ test_files: []
105
+ has_rdoc: