gloac 0.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +24 -0
  3. data/bin/gloac +3 -0
  4. data/bin/gloac.rb +28 -0
  5. metadata +100 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e84e3801ad124f6baf3818cd460aaf7e069468569243dd5a738a045a67fbbe64
4
+ data.tar.gz: cd665be3aa768d5da1456a6e67d3d3d10daa2d0865223adc6d692e065e1128bb
5
+ SHA512:
6
+ metadata.gz: c9d0381ccb225cfad2c241c862d514500a228814a962cd66d563a45fbca2af55f6be811c1917addaa46d52659e7eb16f7ca8f4eae3392f8bc2707f1e35a519ce
7
+ data.tar.gz: 0cf569220c4883342a8c575c6c87304b8325a785a8904db5ea24fb430aa9bece968d5638b13cb0eaf172d596e43a1100af715d58a961b28fd9f912ddcfb77b64
data/README.md ADDED
@@ -0,0 +1,24 @@
1
+ ## WIP WIP WIP WIP
2
+
3
+ **TL;DR**
4
+
5
+ ```shell
6
+ # install the gem
7
+ gem install gloac
8
+
9
+ # initialize default configuration
10
+ gloac init -d config --defaults
11
+
12
+ # deploy
13
+ gloac deploy -d config
14
+ ```
15
+
16
+ ## Intro
17
+
18
+ Gloac (GitLab on Aws Cloud) is tool for building and deploying highly
19
+ configurable GitLab installations in the AWS Cloud.
20
+
21
+
22
+ Gloac is powered by [cfhighlander](https://github.com/theonestack/cfhighlander), a
23
+ CloudFormation template compiler, sitting on top of the [cfndsl](https://github.com/cfndsl/cfndsl)
24
+
data/bin/gloac ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative('./gloac')
data/bin/gloac.rb ADDED
@@ -0,0 +1,28 @@
1
+ require 'thor'
2
+
3
+ class GloacCli < Thor
4
+
5
+ package_name "gloac"
6
+
7
+ desc 'init', 'Create and initialise new gloac configuration location'
8
+ method_option :directory, :type => :string, :required => true, :default => nil, :aliases => '-d',
9
+ :desc => 'Version to compile by which subcomponents are referenced'
10
+ method_option :defaults, :type => :boolean, :default => false,
11
+ :desc => 'Use default recommended configuration'
12
+
13
+ def init()
14
+
15
+
16
+ end
17
+
18
+ desc 'deploy', 'Deploy Gloac to AWS cloud using given configuration'
19
+ method_option :directory, :type => :string, :required => true, :default => nil, :aliases => '-d',
20
+ :desc => 'Version to compile by which subcomponents are referenced'
21
+
22
+ def deploy()
23
+
24
+ end
25
+ end
26
+
27
+
28
+ GloacCli.start
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gloac
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nikola Tosic
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-02-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.20'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '0.20'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '1'
33
+ - !ruby/object:Gem::Dependency
34
+ name: aws-sdk-cloudformation
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '2'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '2'
53
+ - !ruby/object:Gem::Dependency
54
+ name: cfhighlander
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ description: ''
68
+ email:
69
+ executables:
70
+ - gloac
71
+ extensions: []
72
+ extra_rdoc_files: []
73
+ files:
74
+ - README.md
75
+ - bin/gloac
76
+ - bin/gloac.rb
77
+ homepage: https://github.com/toshke/gloac
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.0.3
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: GitLab on AWS Cloud
100
+ test_files: []