winton-externals 0.1.2 → 0.1.3

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/README.markdown CHANGED
@@ -33,4 +33,13 @@ externals unfreeze
33
33
 
34
34
  The usual flow is to unfreeze, commit to the external, freeze, and commit to the parent project.
35
35
 
36
- Your .git directories will be zipped and stored in /tmp when frozen, and moved back to the external when unfrozen.
36
+ Your .git directories will be zipped and stored in /tmp when frozen, and moved back to the external when unfrozen.
37
+
38
+ Are my externals frozen?
39
+ ------------------------
40
+
41
+ When you want to know the status of your externals:
42
+
43
+ <pre>
44
+ externals status
45
+ </pre>
data/externals.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'externals'
3
- s.version = '0.1.2'
3
+ s.version = '0.1.3'
4
4
  s.date = '2008-03-11'
5
5
 
6
6
  s.summary = "Work on git externals without affecting others"
@@ -37,7 +37,7 @@ module Externals
37
37
  end
38
38
 
39
39
  def status
40
- puts "#{@name} is #{frozen? ? "frozen" : "not frozen"}"
40
+ puts "#{@name} is #{can_be_frozen? ? "not frozen" : "frozen"}"
41
41
  end
42
42
 
43
43
  def unfreezify
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: winton-externals
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Winton Welsh