modulesync 0.6.0 → 0.6.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.
- data/CHANGELOG.md +10 -0
- data/lib/modulesync/git.rb +1 -1
- data/modulesync.gemspec +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/lib/modulesync/git.rb
CHANGED
|
@@ -36,7 +36,7 @@ module ModuleSync
|
|
|
36
36
|
end
|
|
37
37
|
|
|
38
38
|
# Repo needs to be cloned in the cwd
|
|
39
|
-
if ! Dir.exists?("#{
|
|
39
|
+
if ! Dir.exists?("#{project_root}/#{name}") || ! Dir.exists?("#{project_root}/#{name}/.git")
|
|
40
40
|
puts "Cloning repository fresh"
|
|
41
41
|
remote = opts[:remote] || (git_base.start_with?('file://') ? "#{git_base}/#{name}" : "#{git_base}/#{name}.git")
|
|
42
42
|
local = "#{project_root}/#{name}"
|
data/modulesync.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'modulesync'
|
|
7
|
-
spec.version = '0.6.
|
|
7
|
+
spec.version = '0.6.1'
|
|
8
8
|
spec.authors = ['Colleen Murphy']
|
|
9
9
|
spec.email = ['colleen@puppetlabs.com']
|
|
10
10
|
spec.summary = %q{Puppet Module Synchronizer}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modulesync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-08-
|
|
12
|
+
date: 2015-08-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|