arcanus 0.10.0 → 0.10.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.
- checksums.yaml +4 -4
- data/lib/arcanus/command/unlock.rb +1 -0
- data/lib/arcanus/repo.rb +4 -1
- data/lib/arcanus/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2e5e53cc28e796acf5fb491a39fda2150351c76
|
|
4
|
+
data.tar.gz: 60032a08f66b98db7f96d2e7b5632055ff7f235e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 279f8b1d5229999b6de7f8dbaef6cdd9dcca0109eaf711b89d103ba45cafc155492c2a3313f24c1fa6694fd9a2e7c969a3e83764c9b2ba177d15ec62fe73f50d
|
|
7
|
+
data.tar.gz: 218868b47a3f6fb08571c02400d97b13fc133557e37ad6343de4ea450b5f96322f22a7a926ce58e0ac5ed6c2fe348a677921f74a0e4b62a360947379c26b53c7
|
data/lib/arcanus/repo.rb
CHANGED
|
@@ -20,7 +20,10 @@ module Arcanus
|
|
|
20
20
|
arc_dir = Pathname.new(File.expand_path('.'))
|
|
21
21
|
.enum_for(:ascend)
|
|
22
22
|
.find do |path|
|
|
23
|
-
|
|
23
|
+
# We check for .arcanus first since most repos will have that but
|
|
24
|
+
# not necessarily have .git. However, when running `arcanus setup`,
|
|
25
|
+
# the .arcanus directory won't exist yet, so check for .git
|
|
26
|
+
(path + '.arcanus').exist? || (path + '.git').exist?
|
|
24
27
|
end
|
|
25
28
|
|
|
26
29
|
unless arc_dir
|
data/lib/arcanus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arcanus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shane da Silva
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-02-
|
|
11
|
+
date: 2016-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: childprocess
|