autobuild 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/autobuild/subcommand.rb +1 -1
- data/lib/autobuild/version.rb +1 -1
- metadata +4 -4
data/Rakefile
CHANGED
@@ -4,7 +4,7 @@ Utilrb::Rake.hoe do
|
|
4
4
|
Hoe.spec 'autobuild' do
|
5
5
|
developer "Sylvain Joyeux", "sylvain.joyeux@m4x.org"
|
6
6
|
|
7
|
-
self.urls = ["http://rock-robotics.org/stable/autoproj"]
|
7
|
+
self.urls = ["http://rock-robotics.org/stable/documentation/autoproj"]
|
8
8
|
self.summary = 'Library to handle build systems and import mechanisms'
|
9
9
|
self.description = "Collection of classes to handle build systems (CMake, autotools, ...) and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj) integrated software project management tool."
|
10
10
|
self.email = %q{rock-dev@dfki.de}
|
data/lib/autobuild/subcommand.rb
CHANGED
@@ -208,7 +208,7 @@ module Autobuild::Subprocess
|
|
208
208
|
cwrite.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
209
209
|
|
210
210
|
pid = fork do
|
211
|
-
if options[:working_directory]
|
211
|
+
if options[:working_directory] && (options[:working_directory] != Dir.pwd)
|
212
212
|
Dir.chdir(options[:working_directory])
|
213
213
|
end
|
214
214
|
logfile.puts "in directory #{Dir.pwd}"
|
data/lib/autobuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autobuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 1.6.
|
9
|
+
- 1
|
10
|
+
version: 1.6.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Sylvain Joyeux
|
@@ -133,7 +133,7 @@ files:
|
|
133
133
|
- test/test_subcommand.rb
|
134
134
|
- test/tools.rb
|
135
135
|
- .gemtest
|
136
|
-
homepage: http://rock-robotics.org/stable/autoproj
|
136
|
+
homepage: http://rock-robotics.org/stable/documentation/autoproj
|
137
137
|
licenses: []
|
138
138
|
|
139
139
|
post_install_message:
|