Skip to content

Commit

Permalink
changing rex to rexical. ugh
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jun 7, 2009
1 parent 03d5ca6 commit b00ee52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ HOE = Hoe.new('nokogiri', Nokogiri::VERSION) do |p|
]

p.extra_dev_deps << "racc"
p.extra_dev_deps << "rex"
p.extra_dev_deps << "rexical"
p.extra_dev_deps << "rake-compiler"

p.spec_extras = { :extensions => ["ext/nokogiri/extconf.rb"] }
Expand Down Expand Up @@ -129,7 +129,7 @@ file GENERATED_TOKENIZER => "lib/nokogiri/css/tokenizer.rex" do |t|
begin
sh "rex --independent -o #{t.name} #{t.prerequisites.first}"
rescue
abort "need rex, sudo gem install rex"
abort "need rexical, sudo gem install rexical"
end
end

Expand Down Expand Up @@ -191,14 +191,14 @@ end

namespace :install do
desc "Install rex and racc for development"
task :deps => %w(rex racc)
task :deps => %w(rexical racc)

task :racc do |t|
sh "sudo gem install racc"
end

task :rex do
sh "sudo gem install rex"
task :rexical do
sh "sudo gem install rexical"
end
end

Expand Down

0 comments on commit b00ee52

Please sign in to comment.