sct 0.1.18 → 0.1.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/bin/sct +3 -4
  3. data/{.DS_Store → cluster/lib/.DS_Store} +0 -0
  4. data/cluster/lib/cluster.rb +6 -0
  5. data/cluster/lib/cluster/commands_generator.rb +95 -0
  6. data/cluster/lib/cluster/module.rb +7 -0
  7. data/{lib/sct/commands/cluster.rb → cluster/lib/cluster/runner.rb} +96 -118
  8. data/{lib → sct/lib}/.DS_Store +0 -0
  9. data/sct/lib/sct.rb +17 -0
  10. data/sct/lib/sct/.DS_Store +0 -0
  11. data/sct/lib/sct/cli_tools_distributor.rb +46 -0
  12. data/{lib → sct/lib}/sct/command.rb +0 -0
  13. data/{lib → sct/lib}/sct/commands/hostfile.rb +7 -23
  14. data/sct/lib/sct/commands/init.rb +37 -0
  15. data/sct/lib/sct/commands/mysqlproxy.rb +20 -0
  16. data/sct/lib/sct/commands_generator.rb +56 -0
  17. data/sct/lib/sct/tools.rb +12 -0
  18. data/sct/lib/sct/version.rb +3 -0
  19. data/sct_core/lib/.DS_Store +0 -0
  20. data/sct_core/lib/sct_core.rb +13 -0
  21. data/{lib/sct → sct_core/lib/sct_core}/.DS_Store +0 -0
  22. data/sct_core/lib/sct_core/command_executor.rb +104 -0
  23. data/{lib/sct → sct_core/lib/sct_core}/config.rb +3 -3
  24. data/sct_core/lib/sct_core/core_ext/string.rb +9 -0
  25. data/{lib/sct/setup/helpers.rb → sct_core/lib/sct_core/helper.rb} +2 -2
  26. data/sct_core/lib/sct_core/module.rb +0 -0
  27. data/sct_core/lib/sct_core/sct_pty.rb +53 -0
  28. data/sct_core/lib/sct_core/ui/implementations/shell.rb +129 -0
  29. data/sct_core/lib/sct_core/ui/interface.rb +120 -0
  30. data/sct_core/lib/sct_core/ui/ui.rb +26 -0
  31. data/shell/README.md +0 -0
  32. data/shell/lib/shell.rb +3 -0
  33. data/{lib/sct → shell/lib/shell}/ClassLevelInheritableAttributes.rb +0 -0
  34. data/shell/lib/shell/commands_generator.rb +14 -0
  35. data/{lib/sct → shell/lib/shell}/docker/composer.rb +4 -3
  36. data/{lib/sct → shell/lib/shell}/docker/docker.rb +7 -10
  37. data/{lib/sct → shell/lib/shell}/docker/php.rb +3 -2
  38. data/{lib/sct → shell/lib/shell}/docker/yarn.rb +4 -3
  39. data/shell/lib/shell/module.rb +9 -0
  40. data/shell/lib/shell/runner.rb +34 -0
  41. data/shell/lib/shell/tools.rb +7 -0
  42. metadata +89 -53
  43. data/.gitignore +0 -12
  44. data/.gitlab/merge_request_templates/DefinitionOfDone.md +0 -14
  45. data/.rspec +0 -3
  46. data/.travis.yml +0 -7
  47. data/CODE_OF_CONDUCT.md +0 -74
  48. data/Gemfile +0 -4
  49. data/Gemfile.lock +0 -48
  50. data/LICENSE.txt +0 -21
  51. data/README.md +0 -134
  52. data/Rakefile +0 -6
  53. data/lib/sct.rb +0 -61
  54. data/lib/sct/command_interface.rb +0 -18
  55. data/lib/sct/command_option.rb +0 -14
  56. data/lib/sct/commands/composer.rb +0 -29
  57. data/lib/sct/commands/init.rb +0 -51
  58. data/lib/sct/commands/mysqlproxy.rb +0 -38
  59. data/lib/sct/commands/php.rb +0 -37
  60. data/lib/sct/commands/yarn.rb +0 -26
  61. data/lib/sct/version.rb +0 -3
  62. data/resources/corefile.yml +0 -45
  63. data/sct.gemspec +0 -40
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reshad Farid
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-19 00:00:00.000000000 Z
11
+ date: 2020-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: class_interface
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 0.1.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.1
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: colored
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +66,46 @@ dependencies:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
68
  version: '1.8'
69
+ - !ruby/object:Gem::Dependency
70
+ name: tty-screen
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.6.3
76
+ - - "<"
77
+ - !ruby/object:Gem::Version
78
+ version: 1.0.0
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 0.6.3
86
+ - - "<"
87
+ - !ruby/object:Gem::Version
88
+ version: 1.0.0
89
+ - !ruby/object:Gem::Dependency
90
+ name: tty-spinner
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 0.8.0
96
+ - - "<"
97
+ - !ruby/object:Gem::Version
98
+ version: 1.0.0
99
+ type: :runtime
100
+ prerelease: false
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: 0.8.0
106
+ - - "<"
107
+ - !ruby/object:Gem::Version
108
+ version: 1.0.0
83
109
  - !ruby/object:Gem::Dependency
84
110
  name: bundler
85
111
  requirement: !ruby/object:Gem::Requirement
@@ -127,47 +153,54 @@ description: Spend Cloud Tool enables to setup a local development environment f
127
153
  email:
128
154
  - reshad.farid@visma.com
129
155
  executables:
156
+ - console
130
157
  - sct
158
+ - setup
131
159
  extensions: []
132
160
  extra_rdoc_files: []
133
161
  files:
134
- - ".DS_Store"
135
- - ".gitignore"
136
- - ".gitlab/merge_request_templates/DefinitionOfDone.md"
137
- - ".rspec"
138
- - ".travis.yml"
139
- - CODE_OF_CONDUCT.md
140
- - Gemfile
141
- - Gemfile.lock
142
- - LICENSE.txt
143
- - README.md
144
- - Rakefile
145
162
  - bin/console
146
163
  - bin/sct
147
164
  - bin/setup
148
- - lib/.DS_Store
149
- - lib/sct.rb
150
- - lib/sct/.DS_Store
151
- - lib/sct/ClassLevelInheritableAttributes.rb
152
- - lib/sct/command.rb
153
- - lib/sct/command_interface.rb
154
- - lib/sct/command_option.rb
155
- - lib/sct/commands/cluster.rb
156
- - lib/sct/commands/composer.rb
157
- - lib/sct/commands/hostfile.rb
158
- - lib/sct/commands/init.rb
159
- - lib/sct/commands/mysqlproxy.rb
160
- - lib/sct/commands/php.rb
161
- - lib/sct/commands/yarn.rb
162
- - lib/sct/config.rb
163
- - lib/sct/docker/composer.rb
164
- - lib/sct/docker/docker.rb
165
- - lib/sct/docker/php.rb
166
- - lib/sct/docker/yarn.rb
167
- - lib/sct/setup/helpers.rb
168
- - lib/sct/version.rb
169
- - resources/corefile.yml
170
- - sct.gemspec
165
+ - cluster/lib/.DS_Store
166
+ - cluster/lib/cluster.rb
167
+ - cluster/lib/cluster/commands_generator.rb
168
+ - cluster/lib/cluster/module.rb
169
+ - cluster/lib/cluster/runner.rb
170
+ - sct/lib/.DS_Store
171
+ - sct/lib/sct.rb
172
+ - sct/lib/sct/.DS_Store
173
+ - sct/lib/sct/cli_tools_distributor.rb
174
+ - sct/lib/sct/command.rb
175
+ - sct/lib/sct/commands/hostfile.rb
176
+ - sct/lib/sct/commands/init.rb
177
+ - sct/lib/sct/commands/mysqlproxy.rb
178
+ - sct/lib/sct/commands_generator.rb
179
+ - sct/lib/sct/tools.rb
180
+ - sct/lib/sct/version.rb
181
+ - sct_core/lib/.DS_Store
182
+ - sct_core/lib/sct_core.rb
183
+ - sct_core/lib/sct_core/.DS_Store
184
+ - sct_core/lib/sct_core/command_executor.rb
185
+ - sct_core/lib/sct_core/config.rb
186
+ - sct_core/lib/sct_core/core_ext/string.rb
187
+ - sct_core/lib/sct_core/helper.rb
188
+ - sct_core/lib/sct_core/module.rb
189
+ - sct_core/lib/sct_core/sct_pty.rb
190
+ - sct_core/lib/sct_core/ui/implementations/shell.rb
191
+ - sct_core/lib/sct_core/ui/interface.rb
192
+ - sct_core/lib/sct_core/ui/ui.rb
193
+ - shell/README.md
194
+ - shell/lib/shell.rb
195
+ - shell/lib/shell/ClassLevelInheritableAttributes.rb
196
+ - shell/lib/shell/commands_generator.rb
197
+ - shell/lib/shell/docker/composer.rb
198
+ - shell/lib/shell/docker/docker.rb
199
+ - shell/lib/shell/docker/php.rb
200
+ - shell/lib/shell/docker/yarn.rb
201
+ - shell/lib/shell/module.rb
202
+ - shell/lib/shell/runner.rb
203
+ - shell/lib/shell/tools.rb
171
204
  homepage: https://gitlab.com/proactive-software/packages/sct
172
205
  licenses:
173
206
  - MIT
@@ -178,19 +211,22 @@ metadata:
178
211
  post_install_message:
179
212
  rdoc_options: []
180
213
  require_paths:
181
- - lib
214
+ - cluster/lib
215
+ - shell/lib
216
+ - sct/lib
217
+ - sct_core/lib
182
218
  required_ruby_version: !ruby/object:Gem::Requirement
183
219
  requirements:
184
220
  - - ">="
185
221
  - !ruby/object:Gem::Version
186
- version: '0'
222
+ version: 2.0.0
187
223
  required_rubygems_version: !ruby/object:Gem::Requirement
188
224
  requirements:
189
225
  - - ">="
190
226
  - !ruby/object:Gem::Version
191
227
  version: '0'
192
228
  requirements: []
193
- rubygems_version: 3.0.3
229
+ rubygems_version: 3.0.8
194
230
  signing_key:
195
231
  specification_version: 4
196
232
  summary: Spend Cloud Tool.
data/.gitignore DELETED
@@ -1,12 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
- .idea/
10
-
11
- # rspec failure tracking
12
- .rspec_status
@@ -1,14 +0,0 @@
1
- The Definition of a Done Code Review
2
- ====================================
3
- | by _The Team_ |
4
- |---------------------------------:|
5
-
6
- - [ ] Verified if it worked on all operating systems.
7
- - [ ] Windows
8
- - [ ] Ubuntu
9
- - [ ] MacOs
10
- - [ ] Verified if it solved the problem.
11
- - [ ] Verified if the help section is updated.
12
- - [ ] Verified if it complied with Ruby code standards.
13
- - [ ] Documentation is updated, 100% complete.
14
- - [ ] SCT documentation.
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.6.2
7
- before_install: gem install bundler -v 2.0.2
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at reshad@proactive.nl. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in sct.gemspec
4
- gemspec
@@ -1,48 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- sct (0.1.16)
5
- class_interface (~> 0.1.1)
6
- colored (~> 1.2)
7
- commander (~> 4.4.7)
8
- highline (>= 1.7.2)
9
- terminal-table (~> 1.8)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- class_interface (0.1.2)
15
- colored (1.2)
16
- commander (4.4.7)
17
- highline (~> 2.0.0)
18
- diff-lcs (1.3)
19
- highline (2.0.3)
20
- rake (10.5.0)
21
- rspec (3.9.0)
22
- rspec-core (~> 3.9.0)
23
- rspec-expectations (~> 3.9.0)
24
- rspec-mocks (~> 3.9.0)
25
- rspec-core (3.9.1)
26
- rspec-support (~> 3.9.1)
27
- rspec-expectations (3.9.0)
28
- diff-lcs (>= 1.2.0, < 2.0)
29
- rspec-support (~> 3.9.0)
30
- rspec-mocks (3.9.1)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.9.0)
33
- rspec-support (3.9.2)
34
- terminal-table (1.8.0)
35
- unicode-display_width (~> 1.1, >= 1.1.1)
36
- unicode-display_width (1.7.0)
37
-
38
- PLATFORMS
39
- ruby
40
-
41
- DEPENDENCIES
42
- bundler (~> 2.0)
43
- rake (~> 10.0)
44
- rspec (~> 3.0)
45
- sct!
46
-
47
- BUNDLED WITH
48
- 2.1.4
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 Reshad Farid
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 DELETED
@@ -1,134 +0,0 @@
1
- # SCT
2
- The **SCT** command line tool helps developers set up and maintain a Kubernetes (k8s) cluster on their development machine which closely resembles the production setup.
3
-
4
- The tool is geared towards the implementation of a local development environment in compliance with the [*Visma Cloud Delivery Model*](https://www.visma.com/blog/our-large-scale-devops-transformation/) (SCT) to be deployed on *Google Cloud Services*.
5
-
6
- The SCT tool is a collection of commands that can be run from your local development environment. These commands will take care of some steps necessary to initialize the development environment, but also of some recurring tasks to keep this environment going on a daily base.
7
-
8
- This README will provide an installation guide, an overview of the available commands and a brief guide for developers that need to contribute to the **SCT** CLI tool.
9
-
10
- The tool is written in Ruby and is meant to run on *Windows, Linux and Mac* environments.
11
-
12
- ## Installation
13
-
14
- 1) Open a terminal or bash window and make sure [**Ruby**](https://www.ruby-lang.org/en/documentation/installation/) is installed on your machine with _version >= 2.6.*_
15
-
16
- $ which ruby
17
- $ ruby --version
18
-
19
- 2) As this Ruby Gem is not yet published, you will need to install the *SCT* tool from this repository and use Ruby [**bundler**](https://bundler.io/) to manage dependencies.
20
-
21
- $ gem install bundler
22
-
23
- 3) Navigate to a (new) folder where you want the SCT code, and clone this repository:
24
-
25
- $ git clone https://github.com/reshadf/sct.git
26
-
27
- 4) Then let **bundler** manage the dependencies:
28
-
29
- $ bundle
30
-
31
- 5) And let **gem** create a binary:
32
-
33
- $ gem install sct
34
-
35
- 6) Now, the **sct** tool is available anywhere from the command line
36
-
37
- $ sct --help
38
-
39
-
40
- ## Usage
41
-
42
- SCT offers a number of commands to help developers set up a local development environment for Visma Cloud To get an overview of what **sct** can do, run
43
-
44
- $ sct --help
45
-
46
- To initialize a **sct** configuration file
47
-
48
- $ sct init
49
-
50
- To patch the hostfile with the local IP of the k8s cluster:
51
-
52
- $ sct hostfile
53
-
54
- To add the secret for the MySQL proxy:
55
-
56
- $ sct mysql_proxy
57
-
58
-
59
- ## Development
60
-
61
- For development of the **sct** tool, the installation needs to be a bit different.
62
-
63
- Repeat steps 1-3 from the installation instruction above.
64
-
65
- 4) We will use [**rake**](https://github.com/ruby/rake) as a Ruby develoment tool for running tests and generating binaries:
66
-
67
- $ gem install rake
68
-
69
- 5) Use the setup script from the repo to install dependencies:
70
-
71
- $ bin/setup
72
-
73
- 5) Do tests to make sure everything works fine before you start:
74
-
75
- $ rake spec
76
-
77
- 6) Install dependency gems:
78
-
79
- $ bundle exec rake install
80
-
81
- 7) Your development environment is now ready. After you have made edits to the code, you can generate a new binary to test the code like this:
82
-
83
- $ rake install
84
-
85
- 8) You can then run the binary directly from the command line:
86
-
87
- $ sct --help
88
-
89
- ### Development tips
90
-
91
- - To release a new version, update the version number in `version.rb`, and then run:
92
-
93
- $ bundle exec rake release
94
-
95
- This will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
96
-
97
- ### Adding commands
98
-
99
- Adding a new command is as simple as adding a new 'Command' Class to the *lib/sct/commands* folder. As long as you implement the constants and methods of *lib/sct/command_interface.rb*, your new Command will automatically appear in the CLI Help and can be called. Use the *lib/sct/command_option.rb* to define command options. Examples of Command Classes can be found inside the *lib/sct/commands* folder.
100
-
101
-
102
- ## Contributing
103
-
104
- Bug reports and pull requests are welcome on GitHub at https://gitlab.com/proactive-software/packages/sct. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
105
-
106
- ## Releasing
107
-
108
- #### Ownership
109
- Owners of the Ruby Gem project are able to release a new version. You can check the ownership status at https://rubygems.org/gems/sct. If you are an owner you can continue with the following steps. If not you may request to become an owner, or ask an existing owner to do the release for you.
110
-
111
- #### Authentication
112
- Owners should update their credentials once before they can actually release new versions. The steps to do this are:
113
- ```$bash
114
- curl -u [YOUR-RUBYGEM-USERNAME] https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials
115
- chmod 0600 ~/.gem/credentials
116
- ```
117
-
118
- ### Release steps
119
- #### Update version
120
- Before releasing you are required to update the version of the new release. You can do this manually by incrementing the value in the file `./sct/lib/sct/version.rb`. After this you need to commit this change and push it to the master branch.
121
-
122
- #### Release
123
- You are now ready to release. You can do this with a simple command in the SCT repository's root directory:
124
- ```$xslt
125
- rake release
126
- ```
127
-
128
- ## License
129
-
130
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
131
-
132
- ## Code of Conduct
133
-
134
- Everyone interacting in the Sct project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://gitlab.com/proactive-software/packages/sct/blob/master/CODE_OF_CONDUCT.md).