gits 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 (7) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +17 -0
  4. data/bin/gits +7 -0
  5. data/lib/gits.rb +5 -0
  6. data/lib/gits/version.rb +4 -0
  7. metadata +51 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0e7f92371c1607c979be3f45566121049eabf4c9e0862f5d5e7a575de8184f03
4
+ data.tar.gz: b6d39d8a3d1d5effed2e9958af993a6f148bd870842ef5299bb9333ab630db59
5
+ SHA512:
6
+ metadata.gz: f5a23401b778655105ebee549f86a7aa6f7bf2ee336a926ac0b8010434030a2b815fbbe0c0eae5a017bb84022b6345db513c7025ffc8177afb009cc571258ae6
7
+ data.tar.gz: 52868fad2e2632d219e5c597230d115521ac0d01e926207220dc9e65951f260409ab2c9a6fc286cabe169dec964619d02f0572eafa642861014134f2999f34d6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Borislav Stanimirov
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,17 @@
1
+ # gits
2
+
3
+ <!-- [![Gem Version](https://badge.fury.io/rb/gits.svg)](https://badge.fury.io/rb/gits) -->
4
+
5
+ A dev-oriented project-local package manager. An alternative to git submodules.
6
+
7
+ *Gits is still an experimental phase of development. Features and usage will change dramatically with no regard for backwards compatibility.*
8
+
9
+ ## Contributing
10
+
11
+ Issues, suggestions, and pull requests are welcome.
12
+
13
+ ## License
14
+
15
+ This software is distributed under the MIT Software License. See accompanying LICENSE file or copy [here](https://opensource.org/licenses/MIT).
16
+
17
+ Copyright &copy; 2020 [Borislav Stanimirov](http://github.com/iboB)
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.expand_path("../lib", __dir__) # For use/testing when no gem is installed
4
+ require "gits"
5
+
6
+ puts "gits v#{Gits::VERSION} #{Gits::VERSION_TYPE}"
7
+ puts "This is a placeholder. Nothing is implemented yet"
@@ -0,0 +1,5 @@
1
+ $LOAD_PATH.unshift __dir__ # For use/testing when no gem is installed
2
+
3
+ module Gits
4
+ autoload :VERSION, "gits/version"
5
+ end
@@ -0,0 +1,4 @@
1
+ module Gits
2
+ VERSION = '0.0.1'
3
+ VERSION_TYPE = 'experimental'
4
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gits
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Borislav Stanimirov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-11-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'A dev-oriented project-local package manager. An alternative to git
14
+ submodules.
15
+
16
+ '
17
+ email: b.stanimirov@abv.bg
18
+ executables:
19
+ - gits
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - LICENSE
24
+ - README.md
25
+ - bin/gits
26
+ - lib/gits.rb
27
+ - lib/gits/version.rb
28
+ homepage: https://github.com/iboB/gits
29
+ licenses:
30
+ - MIT
31
+ metadata: {}
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.1.4
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: A dev-oriented project-local package manager
51
+ test_files: []