autobuild 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == Version 1.3.1
2
+ * 1.3.* now depend on utilrb, add it to the gem dependency list
3
+
1
4
  == Version 1.3.0
2
5
  * major update of the user interaction. Autobuild is now much less verbose, and
3
6
  (hopefully) displays more useful error messages in most cases.
data/Rakefile CHANGED
@@ -7,11 +7,12 @@ Hoe.spec 'autobuild' do
7
7
  self.summary = 'Rake-based utility to build and install multiple packages with dependencies'
8
8
  self.description = self.paragraphs_of('README.txt', 2..5).join("\n\n")
9
9
  self.url = self.paragraphs_of('README.txt', 1).first.split(/\n/)[1..-1].map { |s| s.gsub('* ', '') }
10
- self.changes = self.paragraphs_of('Changes.txt', 0).join("\n\n")
10
+ self.changes = self.paragraphs_of('Changes.txt', 0..1).join("\n\n")
11
11
 
12
12
  self.extra_deps <<
13
13
  ['rake', '>= 0.7.0'] <<
14
14
  ['rmail', '>= 1.0'] <<
15
- ['daemons', '>= 0.0']
15
+ ['daemons', '>= 0.0'] <<
16
+ ['utilrb', '>= 1.3.3']
16
17
  end
17
18
 
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.3.0" unless defined? Autobuild::VERSION
2
+ VERSION = "1.3.1" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
  require 'autobuild/config'
@@ -68,7 +68,7 @@ module Autobuild
68
68
  # repository
69
69
  def validates_git_repository
70
70
  if !File.directory?('.git')
71
- raise ConfigException, "#{package.srcdir} is not a git repository"
71
+ raise ConfigException, "#{Dir.pwd} is not a git repository"
72
72
  end
73
73
  end
74
74
 
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.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvain Joyeux
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-14 00:00:00 +02:00
12
+ date: 2009-10-15 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -42,6 +42,16 @@ dependencies:
42
42
  - !ruby/object:Gem::Version
43
43
  version: "0.0"
44
44
  version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: utilrb
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 1.3.3
54
+ version:
45
55
  - !ruby/object:Gem::Dependency
46
56
  name: hoe
47
57
  type: :development