dev 2.0.131 → 2.0.132
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/commands/add.rb +3 -3
- data/lib/commands.rb +1 -0
- 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: f3aaa20df5feb9937713ca0112583b283f2feb98
|
|
4
|
+
data.tar.gz: 8915e66d835045f1344e53cffcd6e4d1e4b929c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c71c4108f74a563406549864b8c82bbf380042ced61a8070ba20065219d732e62f3e94f01bc0b45d48e25a10956e9c0e4e8ef848bae5f149f58d09159547ccba
|
|
7
|
+
data.tar.gz: 30ff78e9b8814e00538dfc1dea46f930da4f8c01629feebcee61a4f7837e89a11638a795262feebc44a9f0d06c51270e4a033ae48e992ee18dd7f8fb4bf2ba23
|
data/lib/commands/add.rb
CHANGED
|
@@ -13,8 +13,8 @@ class Add < Array
|
|
|
13
13
|
puts "svn add #{f} --parents"
|
|
14
14
|
add "svn add #{f} --parents"
|
|
15
15
|
else
|
|
16
|
-
puts "#{status}" if status.strip.length > 0
|
|
17
|
-
puts " #{f}" if status.strip.length == 0
|
|
16
|
+
#puts "#{status}" if status.strip.length > 0
|
|
17
|
+
#puts " #{f}" if status.strip.length == 0
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
}
|
|
@@ -27,7 +27,7 @@ class Add < Array
|
|
|
27
27
|
puts "git add #{f} -v"
|
|
28
28
|
add "git add #{f} -v"
|
|
29
29
|
else
|
|
30
|
-
puts status if status.strip.length > 0
|
|
30
|
+
#puts status if status.strip.length > 0
|
|
31
31
|
end
|
|
32
32
|
}
|
|
33
33
|
end
|
data/lib/commands.rb
CHANGED
|
@@ -15,6 +15,7 @@ SOURCE.include('**/*.{xcodeproj}')
|
|
|
15
15
|
SOURCE.include('**/*.{csproj,sln,nuspec,config}')
|
|
16
16
|
SOURCE.exclude('**/obj/**/*.*')
|
|
17
17
|
SOURCE.exclude('**/bin/**/*.*')
|
|
18
|
+
SOURCE.exclude('commit.message')
|
|
18
19
|
|
|
19
20
|
Dir.glob("#{File.dirname(__FILE__)}/commands/*.rb").each{|rb|
|
|
20
21
|
require(rb)
|