Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nicksieger/warbler
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Jan 11, 2011
2 parents e7d8b2b + ea9886a commit 642f0f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -2,10 +2,10 @@ GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.2)
hoe (2.6.2)
hoe (2.7.0)
rake (>= 0.8.7)
rubyforge (>= 2.0.4)
jruby-jars (1.5.3)
jruby-jars (1.5.5)
jruby-rack (1.0.3)
json_pure (1.4.6)
rake (0.8.7)
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -20,7 +20,7 @@ MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "Gemfile",
].to_a.reject{|f| f=~%r{spec/sample/(MANIFEST|link|web.xml)}}.sort.uniq

begin
File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
File.open("Manifest.txt", "wb") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
require 'hoe'
require File.dirname(__FILE__) + '/lib/warbler/version'
hoe = Hoe.spec("warbler") do |p|
Expand Down
2 changes: 1 addition & 1 deletion spec/warbler/task_spec.rb
Expand Up @@ -114,7 +114,7 @@ def run_task(t)

context "where symlinks are available" do
begin
ln_s "README.txt", "r.txt.symlink"
ln_s "README.txt", "r.txt.symlink", :verbose => false
it "should process symlinks by storing a file in the archive that has the same contents as the source" do
File.open("config/special.txt", "wb") {|f| f << "special"}
Dir.chdir("config") { ln_s "special.txt", "link.txt" }
Expand Down

0 comments on commit 642f0f6

Please sign in to comment.