soaring 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7393ea83787084245d583d254410c4297d97438d
4
- data.tar.gz: 87feaed9fc368e3053e46ebf46e23bab7054b2ca
3
+ metadata.gz: 334c777312a5924c3a86961818e299c3ade61414
4
+ data.tar.gz: 4dacc30d2aa57112f3f8881b4fad28c8febfe8f0
5
5
  SHA512:
6
- metadata.gz: 8a44f557497e1a6fc812a833b245c85bbdf2e806214364005da8e30be744902163a132ce3fa743546b8de62bf28265f86cc0d6d66be92dfbc298ef9b0b987ee9
7
- data.tar.gz: 3a9ed3f448513bcc8a7b38658e90d2e5a0a7d551e19a8573e141a859503843f0859967e5a87a143b50cf5e82659ddc5cc8ba3513d7dec96849bdb91e760a139a
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
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
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
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ require "pathname"
3
+ bin_file = Pathname.new(__FILE__).realpath
4
+ $:.unshift File.expand_path("../../lib", bin_file)
5
+
6
+ require 'soaring'
7
+ Soaring::CLI.start(ARGV)
@@ -0,0 +1,7 @@
1
+ module Soaring
2
+ class CLI
3
+ def self.start(argv)
4
+ puts "Started with the following args <#{argv}>"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Soaring
2
+ VERSION = "0.0.2"
3
+ end
data/lib/soaring.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'soaring/version'
2
+ require 'soaring/cli'
3
+
4
+ module Soaring
5
+ end
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.1
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