bixby-provision 0.1.1 → 0.1.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/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/bixby-provision.gemspec +2 -2
- data/lib/bixby/provision/dsl/scm/git.rb +1 -2
- 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: db4d0ededfc5a0b6d36c32f9e7d7cfee185f6c46
|
4
|
+
data.tar.gz: de7a32debeecca803ac62728aca97a1629046e80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db476128adaab503e365a90abe5b038cb10b180f41be65db3406bd1c24bda111d3a8f6d848e610c66dcf35eb61dc2a3b3dbbd5037b8e1a556d0971dc9f60e847
|
7
|
+
data.tar.gz: 94b3512e72bc915628f6453b29c014fc2283ba806e570aa3d8969567deae5b0599d239479651b20da2d038b636adb9288d6fb8589e7c8ca05ca50fe53d544c1c
|
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/bixby-provision.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bixby-provision 0.1.
|
5
|
+
# stub: bixby-provision 0.1.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bixby-provision"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.2"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
@@ -1,6 +1,4 @@
|
|
1
1
|
|
2
|
-
require "git"
|
3
|
-
|
4
2
|
module Bixby
|
5
3
|
module Provision
|
6
4
|
class SCM < Base
|
@@ -29,6 +27,7 @@ module Bixby
|
|
29
27
|
end
|
30
28
|
|
31
29
|
sys.package "git"
|
30
|
+
require "git" # lazy require here, because loading will try to run `git --version`
|
32
31
|
|
33
32
|
logger.info "[scm] cloning #{uri} into #{path}, branch: #{branch}"
|
34
33
|
g = ::Git.clone(uri, File.basename(path), :path => File.dirname(path))
|