lbp 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 +4 -4
- data/.gitignore +1 -0
- data/bin/lbp +3 -3
- data/lib/lbp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d49f877ac5360958e5c62b4701c97b2a897112be
|
|
4
|
+
data.tar.gz: 3fc110f62a9545f20785e8b8b01d609c7ab12e68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4113fffbc328ab020d952eb88dfaf2ebe01bd12abdc929473052f3b2d307b606f00536702b87c45a68b2d1f36c98df5c5c20d268cd5bb54178079b2ba23f740a
|
|
7
|
+
data.tar.gz: d2d3535865aaf51cfd8abd3af442bc2d6b830a2f2c97419ad5416c6ed1fe0e9acd4ae10be71140197eed348cd00f30d956b6a4f18177ec89ea7d2abcc44010f8
|
data/.gitignore
CHANGED
data/bin/lbp
CHANGED
|
@@ -31,7 +31,7 @@ class LbpCli < Thor
|
|
|
31
31
|
data = graph.data
|
|
32
32
|
title = data.query(:predicate => RDF::DC11.title).first.object
|
|
33
33
|
itemarray = []
|
|
34
|
-
|
|
34
|
+
###Warning Directories in Header need some specification or the user needs to be direct to modify these acoordingly
|
|
35
35
|
headerdata = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
|
|
36
36
|
<lbpProjectFile>
|
|
37
37
|
<header>
|
|
@@ -102,9 +102,9 @@ class LbpCli < Thor
|
|
|
102
102
|
end
|
|
103
103
|
end
|
|
104
104
|
desc "loaed_text_files", "clone collection repos"
|
|
105
|
-
def load_text_files(projectfile)
|
|
105
|
+
def load_text_files(projectfile, username=nil, password=nil)
|
|
106
106
|
collection = Lbp::Collection.new(projectfile)
|
|
107
|
-
collection.git_clone
|
|
107
|
+
collection.git_clone(username: username, password: password)
|
|
108
108
|
end
|
|
109
109
|
end
|
|
110
110
|
|
data/lib/lbp/version.rb
CHANGED