retreat 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.
- data/lib/coderetreat/retreat.rb +1 -1
- data/retreat.gemspec +1 -1
- metadata +2 -2
data/lib/coderetreat/retreat.rb
CHANGED
|
@@ -67,7 +67,7 @@ module CodeRetreat
|
|
|
67
67
|
def self.pull(local_repo)
|
|
68
68
|
local_repo.flip_into_and_run do
|
|
69
69
|
%x{git pull origin master}
|
|
70
|
-
raise EnvError.new("Could not pull origin into #{local_repo}") unless $? == 0
|
|
70
|
+
raise EnvError.new("Could not pull origin master into #{local_repo}") unless $? == 0
|
|
71
71
|
end
|
|
72
72
|
end
|
|
73
73
|
end
|
data/retreat.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: retreat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
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: 2011-
|
|
12
|
+
date: 2011-11-11 00:00:00.000000000Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: ! 'retreat allows you to easily start new coderetreat iterations in different
|
|
15
15
|
languges. Starting point "skeletons" are held in a git repo and copied as needed.
|