ext 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ October 19, 2011 Version 1.0.6 released
2
+ - Replaced some useful program output that was removed in 1.0.5
3
+
1
4
  October 19, 2011 Version 1.0.5 released
2
5
  - Fixed a small bug preventing subprojects managed under git to update if they
3
6
  have a branch set in .externals.
@@ -9,7 +9,7 @@ Dir.entries(File.join(File.dirname(__FILE__), 'extensions')).each do |extension|
9
9
  end
10
10
 
11
11
  module Externals
12
- VERSION = '1.0.5'
12
+ VERSION = '1.0.6'
13
13
  PROJECT_TYPES_DIRECTORY = File.join(File.dirname(__FILE__), '..', 'externals','project_types')
14
14
 
15
15
  # Full commands operate on the main project as well as the externals
@@ -138,6 +138,7 @@ module Externals
138
138
  def ex *args
139
139
  do_clone "ex", "--depth 1"
140
140
 
141
+ puts "Exporting #{path}..."
141
142
  change_to_branch_revision "ex"
142
143
  end
143
144
 
@@ -166,6 +167,8 @@ module Externals
166
167
  path
167
168
  end
168
169
 
170
+ puts "Updating #{path}..."
171
+
169
172
  if !File.exists? project_path
170
173
  do_clone command
171
174
  end
@@ -72,6 +72,9 @@ module Externals
72
72
  assert !File.exists?(File.join(%w(vendor plugins ssl_requirement)))
73
73
  assert !File.exists?(File.join(%w(vendor plugins empty_plugin)))
74
74
 
75
+ #let's run update. This can expose certain errors.
76
+ Ext.run "update"
77
+
75
78
  `svn switch #{[source, "branches", "new_branch"].join("/")}`
76
79
  unless $? == 0
77
80
  raise
@@ -117,6 +120,9 @@ module Externals
117
120
  assert File.read(File.join('modules', 'modules.txt')) =~
118
121
  /line 2 of modules.txt ... this is branch2!/
119
122
 
123
+ #let's run update. This can expose certain errors.
124
+ Ext.run "update"
125
+
120
126
  `svn switch #{[source, "current"].join("/")}`
121
127
  ext = Ext.new
122
128
  main_project = ext.main_project
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ext
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 5
10
- version: 1.0.5
9
+ - 6
10
+ version: 1.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Miles Georgi