soaring 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +49 -0
- data/.rspec +2 -0
- data/LICENSE.txt +21 -0
- data/README.md +19 -0
- data/bin/soaring +7 -0
- data/lib/soaring/cli.rb +7 -0
- data/lib/soaring/version.rb +3 -0
- data/lib/soaring.rb +5 -0
- data/soaring.gemspec +27 -0
- metadata +13 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 334c777312a5924c3a86961818e299c3ade61414
|
4
|
+
data.tar.gz: 4dacc30d2aa57112f3f8881b4fad28c8febfe8f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2582c5799ad54dbd94100b2c53695e8fecd4fc3d11d1bb9ed2abb4e03ace8c2917c6d5ecd01ad6933733068e0202a72738a1d9f836ccc4f7327382353f37adca
|
7
|
+
data.tar.gz: ee563cb9d38c8b17b4093fcbf921990b01390a266222b4beb5e69f6161e777273df85fc827f5a653c01b97dbee1de101727687d32804bde4a2f62c64dff73fcd
|
data/.gitignore
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
.byebug_history
|
2
|
+
*tgz
|
3
|
+
left
|
4
|
+
test_tfa.sh
|
5
|
+
test_production.sh
|
6
|
+
iut-list
|
7
|
+
juddi-distro-*
|
8
|
+
*.swo
|
9
|
+
*.zip
|
10
|
+
*.tar.gz
|
11
|
+
*.swp
|
12
|
+
*.gem
|
13
|
+
*.rbc
|
14
|
+
Gemfile.lock
|
15
|
+
/.config
|
16
|
+
/coverage/
|
17
|
+
/InstalledFiles
|
18
|
+
/pkg/
|
19
|
+
/spec/reports/
|
20
|
+
/spec/examples.txt
|
21
|
+
/test/tmp/
|
22
|
+
/test/version_tmp/
|
23
|
+
/tmp/
|
24
|
+
.DS_Store
|
25
|
+
|
26
|
+
## Specific to RubyMotion:
|
27
|
+
.dat*
|
28
|
+
.repl_history
|
29
|
+
build/
|
30
|
+
|
31
|
+
## Documentation cache and generated files:
|
32
|
+
/.yardoc/
|
33
|
+
/_yardoc/
|
34
|
+
/doc/
|
35
|
+
/rdoc/
|
36
|
+
|
37
|
+
## Environment normalisation:
|
38
|
+
/.bundle/
|
39
|
+
/vendor/bundle
|
40
|
+
/lib/bundler/man/
|
41
|
+
|
42
|
+
# for a library or gem, you might want to ignore these files since the code is
|
43
|
+
# intended to run in multiple environments; otherwise, check them in:
|
44
|
+
# Gemfile.lock
|
45
|
+
# .ruby-version
|
46
|
+
# .ruby-gemset
|
47
|
+
|
48
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
49
|
+
.rvmrc
|
data/.rspec
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Barney de Villiers
|
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
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# Soaring
|
2
|
+
|
3
|
+
This gem provides a collection of command line tools that simplifies the creation, development and packaging of a soar project for deployment at Hetzner.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'soaring'
|
11
|
+
```
|
12
|
+
|
13
|
+
## Contributing
|
14
|
+
|
15
|
+
Bug reports and feature requests are welcome by email to barney dot de dot villiers at hetzner dot co dot za. This gem is sponsored by Hetzner (Pty) Ltd (http://hetzner.co.za)
|
16
|
+
|
17
|
+
## License
|
18
|
+
|
19
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/bin/soaring
ADDED
data/lib/soaring/cli.rb
ADDED
data/lib/soaring.rb
ADDED
data/soaring.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'soaring/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "soaring"
|
8
|
+
spec.version = Soaring::VERSION
|
9
|
+
spec.authors = ["Barney de Villiers"]
|
10
|
+
spec.email = ["barney.de.villiers@hetzner.co.za"]
|
11
|
+
|
12
|
+
spec.summary = %q{Tooling for soaring with the soar architecture}
|
13
|
+
spec.description = %q{A collection of command line tools that simplifies the creation, development and packaging of a soar project for deployment at Hetzner}
|
14
|
+
spec.homepage = "https://github.com/hetznerZA/soaring"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "bin"
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
25
|
+
spec.add_development_dependency "byebug", "~> 9"
|
26
|
+
|
27
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soaring
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Barney de Villiers
|
@@ -70,10 +70,20 @@ description: A collection of command line tools that simplifies the creation, de
|
|
70
70
|
and packaging of a soar project for deployment at Hetzner
|
71
71
|
email:
|
72
72
|
- barney.de.villiers@hetzner.co.za
|
73
|
-
executables:
|
73
|
+
executables:
|
74
|
+
- soaring
|
74
75
|
extensions: []
|
75
76
|
extra_rdoc_files: []
|
76
|
-
files:
|
77
|
+
files:
|
78
|
+
- ".gitignore"
|
79
|
+
- ".rspec"
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- bin/soaring
|
83
|
+
- lib/soaring.rb
|
84
|
+
- lib/soaring/cli.rb
|
85
|
+
- lib/soaring/version.rb
|
86
|
+
- soaring.gemspec
|
77
87
|
homepage: https://github.com/hetznerZA/soaring
|
78
88
|
licenses:
|
79
89
|
- MIT
|