indocker 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7be87d422b3b08f1387554c0eea9824254ab0fc6
4
+ data.tar.gz: 5b4122b752a58078fdf16ff960050d76f5944cfa
5
+ SHA512:
6
+ metadata.gz: d28df954032d69e1d108054bfee34b0f7b3d5376d75a35be145469c9ed4dfdb734b88586e9532e040ae731cabc04ebf847dde3d236fed8b57f47ea99132c7f3c
7
+ data.tar.gz: 00f0a7cf60712d31b45d51369df0a78ba390fde250ea1adbc21a795e73cf51e8db404dad16eaf69533a3ebc865304ec8a1e8d7204146f87c778cbb68dec996ee
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_Store
2
+ .byebug_history
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ indocker (0.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ byebug (9.1.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ byebug
16
+ indocker!
17
+
18
+ BUNDLED WITH
19
+ 1.15.4
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2016-2017 Droidlabs
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ DSL for build, run and deploy docker containers
data/indocker.gemspec ADDED
@@ -0,0 +1,19 @@
1
+ require_relative 'lib/indocker/version'
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'indocker'
5
+ s.version = InDocker::VERSION
6
+ s.summary = "InDocker"
7
+ s.description = "DSL for build, run and deploy docker containers"
8
+ s.authors = ["Droid Labs"]
9
+ s.email = 'hello@droidlabs.pro'
10
+
11
+ s.files = `git ls-files`.split($/)
12
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
13
+ s.test_files = s.files.grep(%r{^(spec)/})
14
+
15
+ s.add_development_dependency "byebug"
16
+
17
+ s.homepage = 'https://github.com/droidlabs/indocker'
18
+ s.license = 'MIT'
19
+ end
@@ -0,0 +1,3 @@
1
+ module InDocker
2
+ VERSION = '0.0.0'.freeze
3
+ end
data/lib/indocker.rb ADDED
@@ -0,0 +1,2 @@
1
+ module InDocker
2
+ end
data/spec/.gitkeep ADDED
File without changes
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: indocker
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Droid Labs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-08-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: byebug
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: DSL for build, run and deploy docker containers
28
+ email: hello@droidlabs.pro
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - ".gitignore"
34
+ - Gemfile
35
+ - Gemfile.lock
36
+ - LICENSE.txt
37
+ - README.md
38
+ - indocker.gemspec
39
+ - lib/indocker.rb
40
+ - lib/indocker/version.rb
41
+ - spec/.gitkeep
42
+ homepage: https://github.com/droidlabs/indocker
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.6.12
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: InDocker
66
+ test_files:
67
+ - spec/.gitkeep