gitmain 0.0.1

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: 85ad05c833f4687ccbec027180463cd8688bbba6
4
+ data.tar.gz: 569d4e4d60c96b2ef31a849df646a3762131f0c3
5
+ SHA512:
6
+ metadata.gz: cf3ee75273b0446355fce6068d7d07f6515deeae0034010af8ee501b833febe2f07f57e5ada01382a4f1ed8c7d1fbcb64981d2272cfe18bf812d86c3c7e67148
7
+ data.tar.gz: 25bdf94720db09de0ae119874b9aa3d35049ed445ec00a791fa8367fc532f2ae79dfe7cdd95230bc4b96dcf22e35b9f85c3db870ea3de86f73f75dd8bc805b50
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2016 Theodore Kimble
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # Gitmain – Build Ruby Domain Models backed by Git Repositories
@@ -0,0 +1,4 @@
1
+ module Gitmain
2
+ module Blob
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Gitmain
2
+ module Branch
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Gitmain
2
+ module Commit
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Gitmain
2
+ module Repository
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Gitmain
2
+ module Tree
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module Gitmain
2
+ VERSION = '0.0.1'
3
+ end
data/lib/gitmain.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'gitmain/blob'
2
+ require 'gitmain/branch'
3
+ require 'gitmain/commit'
4
+ require 'gitmain/repository'
5
+ require 'gitmain/tree'
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitmain
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Theodore Kimble
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-12-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |2
14
+ Gitmain is a collection of Ruby mixins that allow your plain old ruby
15
+ objects to infer their attributes from git repositories.
16
+ email:
17
+ - mail@theodorekimble.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - MIT-LICENSE
23
+ - README.md
24
+ - lib/gitmain.rb
25
+ - lib/gitmain/blob.rb
26
+ - lib/gitmain/branch.rb
27
+ - lib/gitmain/commit.rb
28
+ - lib/gitmain/repository.rb
29
+ - lib/gitmain/tree.rb
30
+ - lib/gitmain/version.rb
31
+ homepage: https://github.com/theodorekimble/gitmain
32
+ licenses:
33
+ - MIT
34
+ metadata: {}
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubyforge_project:
51
+ rubygems_version: 2.4.5.1
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: Build Ruby Domain Models backed by Git Repositories
55
+ test_files: []