autobuild 1.7.11.rc5 → 1.7.11.rc6

Sign up to get free protection for your applications and to get access to all the features.
@@ -252,6 +252,14 @@ module Autobuild
252
252
  end
253
253
  end
254
254
 
255
+ # The name of all build phases that Autobuild knows about
256
+ #
257
+ # @return [Array<String>]
258
+ def self.all_phases
259
+ %w{import prepare build} +
260
+ utilities.keys
261
+ end
262
+
255
263
  def self.apply(packages, buildname = "autobuild", phases = [])
256
264
  if Autobuild.mail[:to]
257
265
  if !Autobuild::HAS_RMAIL
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.7.11.rc5" unless defined? Autobuild::VERSION
2
+ VERSION = "1.7.11.rc6" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.11.rc5
4
+ version: 1.7.11.rc6
5
5
  prerelease: 7
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: 2014-05-23 00:00:00.000000000 Z
12
+ date: 2014-06-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -183,9 +183,9 @@ signing_key:
183
183
  specification_version: 3
184
184
  summary: Library to handle build systems and import mechanisms
185
185
  test_files:
186
- - test/test_import_tar.rb
187
- - test/test_config.rb
188
- - test/test_subcommand.rb
189
- - test/test_reporting.rb
190
186
  - test/test_import_svn.rb
187
+ - test/test_subcommand.rb
188
+ - test/test_config.rb
191
189
  - test/test_import_cvs.rb
190
+ - test/test_reporting.rb
191
+ - test/test_import_tar.rb