rubylexer 0.7.6 → 0.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile DELETED
@@ -1,37 +0,0 @@
1
- # Copyright (C) 2008 Caleb Clausen
2
- # Distributed under the terms of Ruby's license.
3
- require 'rubygems'
4
- require 'hoe'
5
-
6
- if $*==["test"]
7
- #hack to get 'rake test' to stay in one process
8
- #which keeps netbeans happy
9
- # Object.send :remove_const, :RubyLexer
10
- $:<<"lib"
11
- require 'rubylexer.rb'
12
- require "test/unit"
13
- require "test/code/regression.rb"
14
- Test::Unit::AutoRunner.run
15
- exit
16
- end
17
-
18
- require 'lib/rubylexer/version.rb'
19
-
20
- readme=open("README.txt")
21
- readme.readline("\n=== DESCRIPTION:")
22
- readme.readline("\n\n")
23
- desc=readme.readline("\n\n")
24
-
25
- hoe=Hoe.new("rubylexer", RubyLexer::VERSION) do |_|
26
- _.author = "Caleb Clausen"
27
- _.email = "rubylexer-owner @at@ inforadical .dot. net"
28
- _.url = ["http://github.com/coatl/rubylexer/", "http://rubyforge.org/projects/rubylexer/"]
29
- _.extra_deps << ['sequence', '>= 0.2.0']
30
- _.test_globs=["test/code/regression.rb"]
31
- _.description=desc
32
- _.summary=desc[/\A[^.]+\./]
33
- _.spec_extras={:bindir=>'',:rdoc_options=>'-x lib/rubylexer/test/oneliners.rb'}
34
- #_.rdoc_pattern=/\A(howtouse\.txt|testing\.txt|README\.txt|lib\/[^\/]*\.rb|lib\/rubylexer\/[^\d][^\/]*\.rb)\Z/
35
- end
36
-
37
-