Re: Build failed in Hudson: buildr-ci-build-jruby #49

2010-07-08 Thread Antoine Toulme
Created a follow up with a Jira issue (also with a better reproduction scenario): http://jira.codehaus.org/browse/JRUBY-4927 On Thu, Jul 8, 2010 at 15:14, Antoine Toulme wrote: > OK, I found a way to reproduce it! > > path = '/tmp/somewhere' > FileUtils.mkpath path > Dir.chdir path > > 1.upto(4)

Re: Build failed in Hudson: buildr-ci-build-jruby #49

2010-07-08 Thread Antoine Toulme
OK, I found a way to reproduce it! path = '/tmp/somewhere' FileUtils.mkpath path Dir.chdir path 1.upto(4) do |i| File.open("src/file#{i}", "w") {|f| f.write "file#{i} raw"} end Dir['src/*'].each { |file| p (File.stat(file).mode & 0o755) ; File.chmod(0o755, file) ; p (File.stat(file).mode & 0o75

Re: Build failed in Hudson: buildr-ci-build-jruby #49

2010-07-08 Thread Antoine Toulme
Yep, I tried that, and I tried checking File.chmod in a IRB session. I will try again by loading spec_helpers first. Sorry it's not an easy one. On Thu, Jul 8, 2010 at 01:14, Charles Oliver Nutter wrote: > Can you dig a bit more for me? It doesn't appear to be File.chmod or > Dir[] plus File.ch

Re: buildr website issue when browsing with IE

2010-07-08 Thread Assaf Arkin
On Thu, Jul 8, 2010 at 11:44 AM, Antoine Toulme wrote: > Greetings old man! > > I'm not so concerned about the width than the length, mind you :) > Everything looks shorter in IE. That's just the way it is. > > > On Thu, Jul 8, 2010 at 11:21, Assaf Arkin wrote: > >> On Thu, Jul 8, 2010 at 10:3

Re: buildr website issue when browsing with IE

2010-07-08 Thread Antoine Toulme
Greetings old man! I'm not so concerned about the width than the length, mind you :) On Thu, Jul 8, 2010 at 11:21, Assaf Arkin wrote: > On Thu, Jul 8, 2010 at 10:35 AM, Antoine Toulme > wrote: > >> Yes. The site feels very blog centric and 2007ish. Using the whole width >> is >> all the rage n

Re: buildr website issue when browsing with IE

2010-07-08 Thread Assaf Arkin
On Thu, Jul 8, 2010 at 10:35 AM, Antoine Toulme wrote: > Yes. The site feels very blog centric and 2007ish. Using the whole width is > all the rage now :) > Young kids Average 12 words is the ideal reading width. Or 980px: the default page width on mobile safari. > > On Thu, Jul 8, 2010 a

Re: buildr website issue when browsing with IE

2010-07-08 Thread Antoine Toulme
Yes. The site feels very blog centric and 2007ish. Using the whole width is all the rage now :) On Thu, Jul 8, 2010 at 09:32, Shane Witbeck wrote: > yeah, I think there's still room for improvement with the layout but the > patch takes care of the cutt off text. > > > On Thu, Jul 8, 2010 at 12:30

Re: buildr website issue when browsing with IE

2010-07-08 Thread Antoine Toulme
Thanks. I found the issue yesterday night but ran out of battery. The negative margin for h1, h2, h3, eh ? I'll use your patch. On Thu, Jul 8, 2010 at 08:26, Shane Witbeck wrote: > I submitted a patch for this. > > > On Wed, Jul 7, 2010 at 11:29 AM, Antoine Toulme > wrote: > >> I'll take a look

Re: Back to the grind for 1.4.2

2010-07-08 Thread Shane Witbeck
Done. I created a patch that removes the Nailgun section from the website. The new home on the wiki is here: https://cwiki.apache.org/confluence/display/BUILDR/How+to+run+buildr+using+nailgun On Thu, Jul 8, 2010 at 11:58 AM, Alex Boisvert wrote: > I suggest we move it to the wiki as second-tier

Re: Back to the grind for 1.4.2

2010-07-08 Thread Alex Boisvert
I suggest we move it to the wiki as second-tier documentation, with some mention of about marginal effectiveness. alex On Thursday, July 8, 2010, Shane Witbeck wrote: > I commented on the issue I reported about the Nailgun doc not being > accurate/up to date. I'm wondering if we should remove th

Re: Back to the grind for 1.4.2

2010-07-08 Thread Shane Witbeck
I commented on the issue I reported about the Nailgun doc not being accurate/up to date. I'm wondering if we should remove the reference altogether since the performance benefits for using it seems to be shrinking due to the faster startup times of the latest JRuby releases. https://issues.apache.

Re: buildr website issue when browsing with IE

2010-07-08 Thread Shane Witbeck
I submitted a patch for this. On Wed, Jul 7, 2010 at 11:29 AM, Antoine Toulme wrote: > I'll take a look but I'm no IE expert. I'll file a bug for it. > > On Wed, Jul 7, 2010 at 07:30, Shane Witbeck >wrote: > > > I just noticed some text is getting cut off on the buildr website when > > browsing

Re: Build failed in Hudson: buildr-ci-build-jruby #49

2010-07-08 Thread Charles Oliver Nutter
Can you dig a bit more for me? It doesn't appear to be File.chmod or Dir[] plus File.chmod, in a simple test I wrote based on your failing spec (latest OS X, Java 6): ~/projects/buildr ➔ touch foo.txt ~/projects/buildr ➔ ls -l foo.txt -rw-r--r-- 1 headius staff 0 Jul 8 03:07 foo.txt ~/projec

Fwd: Build failed in Hudson: buildr-ci-build-jruby #49

2010-07-08 Thread Antoine Toulme
It looks like we have a jruby problem. Charles, can you check out the Buildr trunk and run: jruby -S spec spec/core/common_spec.rb -l 547 It looks like the chmod we make line 544 doesn't change anything. You can change the line to this to see the problem: Dir['src/*'].each { |file| p (File.st