1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/**/*.rb: removed unnecessary shbang lines.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-03-06 04:23:05 +00:00
parent 60d2f945fb
commit f378f10473
19 changed files with 2 additions and 34 deletions

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby -w
# encoding: UTF-8
# = csv.rb -- CSV Reading and Writing
#

View file

@ -1,5 +1,3 @@
#!/usr/local/bin/ruby
#
# multi.rb -
# $Release Version: 0.9.5$
# $Revision$

View file

@ -1,5 +1,3 @@
#!/usr/local/bin/ruby
#
# save-history.rb -
# $Release Version: 0.9.5$
# $Revision$
@ -83,4 +81,3 @@ module IRB
end
end
end

View file

@ -1,4 +1,3 @@
#!/usr/local/bin/ruby
#--
# matrix.rb -
# $Release Version: 1.0$

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright (c) 2003, 2004, 2005, 2006, 2007 Jim Weirich

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
# The 'rake/clean' file defines two file lists (CLEAN and CLOBBER) and
# two rake tasks (:clean and :clobber).
#

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
# Define a package task library to aid in the definition of GEM
# packages.

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
module Rake
# Makefile loader to be used with the import file loader.

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
# Define a package task libarary to aid in the definition of
# redistributable package files.

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
require 'rake'
require 'rake/tasklib'

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
require 'test/unit'
require 'test/unit/assertions'

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
require 'rake'
module Rake

View file

@ -1,5 +1,3 @@
#!/usr/bin/env ruby
# Define a task library for running unit tests.
require 'rake'

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
@ -37,4 +36,4 @@ module Gem
@digest_class.new(string).digest
end
end
end
end

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
@ -20,4 +19,3 @@ module Gem
end
end
# :startdoc:

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
@ -14,4 +13,4 @@ module Gem
require 'rubygems/digest/digest_adapter'
SHA1 = DigestAdapter.new(Digest::SHA1)
end
end
end

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.

View file

@ -1,4 +1,3 @@
#!/usr/bin/env ruby
#--
# tsort.rb - provides a module for topological sorting and strongly connected components.
#++