structured_warnings 0.1.3 → 0.1.4
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/History.txt +5 -0
- data/License.txt +1 -1
- data/README.rdoc +20 -11
- data/Rakefile +46 -29
- data/doc/DeprecatedMethodWarning.html +170 -0
- data/doc/DeprecatedSignatureWarning.html +171 -0
- data/doc/DeprecationWarning.html +171 -0
- data/doc/Dynamic.html +172 -0
- data/doc/Object.html +186 -0
- data/doc/README_rdoc.html +296 -0
- data/doc/StandardWarning.html +169 -0
- data/doc/StructuredWarnings.html +187 -0
- data/doc/StructuredWarnings/ClassMethods.html +254 -0
- data/doc/StructuredWarnings/Kernel.html +274 -0
- data/doc/StructuredWarnings/Test.html +176 -0
- data/doc/StructuredWarnings/Test/Assertions.html +322 -0
- data/doc/StructuredWarnings/Test/Warner.html +271 -0
- data/doc/StructuredWarnings/Warner.html +226 -0
- data/doc/Warning.html +460 -0
- data/doc/Warning/ClassMethods.html +334 -0
- data/doc/created.rid +10 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +120 -0
- data/doc/js/darkfish.js +116 -0
- data/doc/js/jquery.js +32 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/structured_warnings/dynamic_rb.html +65 -0
- data/doc/lib/structured_warnings/kernel_rb.html +52 -0
- data/doc/lib/structured_warnings/test/assertions_rb.html +52 -0
- data/doc/lib/structured_warnings/test/warner_rb.html +52 -0
- data/doc/lib/structured_warnings/test_rb.html +56 -0
- data/doc/lib/structured_warnings/warner_rb.html +52 -0
- data/doc/lib/structured_warnings/warning_rb.html +64 -0
- data/doc/lib/structured_warnings_rb.html +62 -0
- data/doc/rdoc.css +763 -0
- data/lib/structured_warnings.rb +6 -9
- data/lib/structured_warnings/dynamic.rb +6 -6
- data/lib/structured_warnings/kernel.rb +9 -9
- data/lib/structured_warnings/test.rb +2 -3
- data/lib/structured_warnings/test/assertions.rb +21 -9
- data/lib/structured_warnings/test/warner.rb +2 -2
- data/lib/structured_warnings/warner.rb +1 -1
- data/lib/structured_warnings/warning.rb +11 -11
- data/structured_warnings.gemspec +15 -58
- data/test/structured_warnings_test.rb +7 -6
- metadata +85 -62
- data/.gitignore +0 -2
- data/test/test_helper.rb +0 -4
- data/version.yml +0 -4
data/History.txt
CHANGED
data/License.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= Structured Warnings
|
1
|
+
= Structured Warnings
|
2
2
|
|
3
3
|
This is an implementation of Daniel Berger's {proposal of structured warnings
|
4
4
|
for Ruby}[http://www.oreillynet.com/ruby/blog/2008/02/structured_warnings_now.html]. They provide dynamic suppression and activation, as well as, an
|
@@ -7,14 +7,23 @@ inheritance hierarchy to model their relations. This library preserves the old
|
|
7
7
|
use.
|
8
8
|
|
9
9
|
For more information on the usage and benefits of this library have a look at
|
10
|
-
the inspiring article at O'Reilly.
|
10
|
+
the inspiring article at O'Reilly.
|
11
11
|
|
12
12
|
http://www.oreillynet.com/ruby/blog/2008/02/structured_warnings_now.html
|
13
13
|
|
14
|
-
== Installation
|
14
|
+
== Installation & Compatibility
|
15
15
|
|
16
16
|
gem install structured_warnings
|
17
17
|
|
18
|
+
structured_warnings works with all interpreters, it was tested with.
|
19
|
+
|
20
|
+
* Ruby 1.8.5 and later
|
21
|
+
* Ruby 1.9.1 and later
|
22
|
+
* JRuby 1.x
|
23
|
+
|
24
|
+
Please let me know, of any other compatibilities or file a bug for any
|
25
|
+
incompatibilities.
|
26
|
+
|
18
27
|
== Example Usage
|
19
28
|
|
20
29
|
To get you started - here is a short example
|
@@ -51,9 +60,9 @@ may add your own types by subclassing Warning if you like.
|
|
51
60
|
Client code of your library will look as follows:
|
52
61
|
|
53
62
|
require "foo"
|
54
|
-
|
63
|
+
|
55
64
|
foo = Foo.new
|
56
|
-
foo.old_method # => will print
|
65
|
+
foo.old_method # => will print
|
57
66
|
# ... `old_method' : This method is deprecated. Use new_method instead (DeprecatedMethodWarning)
|
58
67
|
|
59
68
|
But the main difference to the standard warning concept shipped with ruby, is
|
@@ -61,9 +70,9 @@ that the client is able to selectively disable certain warnings s/he is aware
|
|
61
70
|
of and not willing to fix.
|
62
71
|
|
63
72
|
DeprecatedMethodWarning.disable # Globally disable warnings about deprecated methods!
|
64
|
-
|
73
|
+
|
65
74
|
foo.old_method # => will print nothing
|
66
|
-
|
75
|
+
|
67
76
|
DeprecatedMethodWarning.enable # Reenable warnings again.
|
68
77
|
|
69
78
|
And there is an even more powerful option for your clients, the can selectively
|
@@ -81,7 +90,7 @@ block scope) and automatically reset after the block.
|
|
81
90
|
|
82
91
|
== Detailed Documentation
|
83
92
|
|
84
|
-
Have closer look at the RDoc of StructuredWarnings::Kernel, Warning and
|
93
|
+
Have closer look at the RDoc of StructuredWarnings::Kernel, Warning and
|
85
94
|
Warning::ClassMethods.
|
86
95
|
|
87
96
|
Part of this library is a set of different warnings:
|
@@ -98,8 +107,8 @@ feedback to your users as possible.
|
|
98
107
|
|
99
108
|
== Resources
|
100
109
|
|
101
|
-
* {Initial announcement}[http://www.nach-vorne.de/2008/2/21/ann-structured_warnings-0-1-0-released]
|
102
110
|
* {Inspiring article}[http://www.oreillynet.com/ruby/blog/2008/02/structured_warnings_now.html]
|
111
|
+
* {Implementation Highlights}[http://www.nach-vorne.de/2008/2/22/structured_warnings-highlights]
|
103
112
|
* {Project's website}[http://github.com/schmidt/structured_warnings/]
|
104
113
|
* {API doc}[http://rdoc.info/projects/schmidt/structured_warnings]
|
105
114
|
* {Build Status on RunCodeRun}[http://runcoderun.com/schmidt/structured_warnings]
|
@@ -116,13 +125,13 @@ Bug reports or general feature requests should be added using GitHub Issues.
|
|
116
125
|
|
117
126
|
== Known Issues
|
118
127
|
|
119
|
-
Although the library transparently coorperates with Ruby's built-in
|
128
|
+
Although the library transparently coorperates with Ruby's built-in
|
120
129
|
<code>Kernel#warn</code>, it may not override +rb_warn+ which is used internally to emit
|
121
130
|
"method redefined", "void context", and "parenthesis" warnings. They may not be
|
122
131
|
manipulated by structured_warnings.
|
123
132
|
|
124
133
|
== License
|
125
134
|
|
126
|
-
This code is free to use under the terms of the MIT license.
|
135
|
+
This code is free to use under the terms of the MIT license.
|
127
136
|
|
128
137
|
:include: License.txt
|
data/Rakefile
CHANGED
@@ -1,38 +1,55 @@
|
|
1
1
|
require 'rake'
|
2
|
-
require 'rake/
|
2
|
+
require 'rake/clean'
|
3
|
+
require 'rake/testtask'
|
3
4
|
|
4
|
-
|
5
|
-
require 'jeweler'
|
6
|
-
Jeweler::Tasks.new do |gemspec|
|
7
|
-
gemspec.name = "structured_warnings"
|
8
|
-
gemspec.summary = "Provides structured warnings for Ruby, using an exception-like interface and hierarchy."
|
9
|
-
gemspec.description = "This is an implementation of Daniel Berger's proposal of structured warnings for Ruby."
|
10
|
-
gemspec.email = "ruby@schmidtwisser.de"
|
11
|
-
gemspec.homepage = "http://github.com/schmidt/structured_warnings"
|
12
|
-
gemspec.authors = ["Gregor Schmidt"]
|
13
|
-
|
14
|
-
gemspec.add_development_dependency('rake')
|
15
|
-
gemspec.add_development_dependency('jeweler', '>= 1.4.0')
|
16
|
-
end
|
5
|
+
CLEAN.include('**/*.gem', '**/*.rbx', '**/*.rbc')
|
17
6
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
7
|
+
namespace :gem do
|
8
|
+
desc "Create the structured_warnings gem"
|
9
|
+
task :create => [:clean] do
|
10
|
+
spec = eval(IO.read('structured_warnings.gemspec'))
|
11
|
+
Gem::Builder.new(spec).build
|
12
|
+
end
|
22
13
|
|
23
|
-
desc "
|
24
|
-
task :
|
25
|
-
|
26
|
-
|
14
|
+
desc "Install the structured_warnings gem"
|
15
|
+
task :install => [:create] do
|
16
|
+
file = Dir['*.gem'].first
|
17
|
+
sh "gem install #{file}"
|
18
|
+
end
|
27
19
|
end
|
28
20
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
doc.options << '--line-numbers' << '--inline-source'
|
34
|
-
doc.rdoc_files.include('README.rdoc')
|
35
|
-
doc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
Rake::TestTask.new do |t|
|
22
|
+
t.verbose = true
|
23
|
+
t.warning = true
|
24
|
+
t.test_files = Dir['test/*.rb']
|
36
25
|
end
|
37
26
|
|
38
27
|
task :default => :test
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
begin
|
32
|
+
require 'rdoc/task'
|
33
|
+
Rake::RDocTask.new(:doc) do |doc|
|
34
|
+
doc.rdoc_dir = 'doc'
|
35
|
+
doc.title = 'structured_warnings'
|
36
|
+
doc.options << '--line-numbers' << '--inline-source'
|
37
|
+
doc.rdoc_files.include('README.rdoc')
|
38
|
+
doc.rdoc_files.include('lib/**/*.rb')
|
39
|
+
end
|
40
|
+
|
41
|
+
rescue LoadError
|
42
|
+
desc 'Remove RDoc HTML files'
|
43
|
+
task :clobber_doc => :rdoc_warning
|
44
|
+
|
45
|
+
desc 'Build RDoc HTML files'
|
46
|
+
task :doc => :rdoc_warning
|
47
|
+
|
48
|
+
desc 'Rebuild RDoc HTML files'
|
49
|
+
task :redoc => :rdoc_warning
|
50
|
+
|
51
|
+
task :rdoc_warning do
|
52
|
+
puts "To run the rdoc task, you need to install the rdoc gem"
|
53
|
+
puts " gem install rdoc"
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,170 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Class: DeprecatedMethodWarning</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
|
13
|
+
<script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
|
14
|
+
<script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
|
15
|
+
<script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body id="top" class="class">
|
19
|
+
|
20
|
+
<div id="metadata">
|
21
|
+
<div id="home-metadata">
|
22
|
+
<div id="home-section" class="section">
|
23
|
+
<h3 class="section-header">
|
24
|
+
<a href="./index.html">Home</a>
|
25
|
+
<a href="./index.html#classes">Classes</a>
|
26
|
+
<a href="./index.html#methods">Methods</a>
|
27
|
+
</h3>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<div id="file-metadata">
|
32
|
+
<div id="file-list-section" class="section">
|
33
|
+
<h3 class="section-header">In Files</h3>
|
34
|
+
<div class="section-body">
|
35
|
+
<ul>
|
36
|
+
|
37
|
+
<li><a href="./lib/structured_warnings/warning_rb.html?TB_iframe=true&height=550&width=785"
|
38
|
+
class="thickbox" title="lib/structured_warnings/warning.rb">lib/structured_warnings/warning.rb</a></li>
|
39
|
+
|
40
|
+
</ul>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div id="class-metadata">
|
48
|
+
|
49
|
+
<!-- Parent Class -->
|
50
|
+
<div id="parent-class-section" class="section">
|
51
|
+
<h3 class="section-header">Parent</h3>
|
52
|
+
|
53
|
+
<p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a></p>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
</div>
|
66
|
+
|
67
|
+
<div id="project-metadata">
|
68
|
+
|
69
|
+
|
70
|
+
<div id="fileindex-section" class="section project-section">
|
71
|
+
<h3 class="section-header">Files</h3>
|
72
|
+
<ul>
|
73
|
+
|
74
|
+
<li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
|
75
|
+
|
76
|
+
</ul>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
|
80
|
+
<div id="classindex-section" class="section project-section">
|
81
|
+
<h3 class="section-header">Class/Module Index
|
82
|
+
<span class="search-toggle"><img src="./images/find.png"
|
83
|
+
height="16" width="16" alt="[+]"
|
84
|
+
title="show/hide quicksearch" /></span></h3>
|
85
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
86
|
+
<fieldset>
|
87
|
+
<legend>Quicksearch</legend>
|
88
|
+
<input type="text" name="quicksearch" value=""
|
89
|
+
class="quicksearch-field" />
|
90
|
+
</fieldset>
|
91
|
+
</form>
|
92
|
+
|
93
|
+
<ul class="link-list">
|
94
|
+
|
95
|
+
<li><a href="./StructuredWarnings.html">StructuredWarnings</a></li>
|
96
|
+
|
97
|
+
<li><a href="./StructuredWarnings/ClassMethods.html">StructuredWarnings::ClassMethods</a></li>
|
98
|
+
|
99
|
+
<li><a href="./StructuredWarnings/Kernel.html">StructuredWarnings::Kernel</a></li>
|
100
|
+
|
101
|
+
<li><a href="./StructuredWarnings/Test.html">StructuredWarnings::Test</a></li>
|
102
|
+
|
103
|
+
<li><a href="./StructuredWarnings/Test/Assertions.html">StructuredWarnings::Test::Assertions</a></li>
|
104
|
+
|
105
|
+
<li><a href="./StructuredWarnings/Test/Warner.html">StructuredWarnings::Test::Warner</a></li>
|
106
|
+
|
107
|
+
<li><a href="./StructuredWarnings/Warner.html">StructuredWarnings::Warner</a></li>
|
108
|
+
|
109
|
+
<li><a href="./Warning.html">Warning</a></li>
|
110
|
+
|
111
|
+
<li><a href="./Warning/ClassMethods.html">Warning::ClassMethods</a></li>
|
112
|
+
|
113
|
+
<li><a href="./DeprecatedMethodWarning.html">DeprecatedMethodWarning</a></li>
|
114
|
+
|
115
|
+
<li><a href="./DeprecatedSignatureWarning.html">DeprecatedSignatureWarning</a></li>
|
116
|
+
|
117
|
+
<li><a href="./DeprecationWarning.html">DeprecationWarning</a></li>
|
118
|
+
|
119
|
+
<li><a href="./Dynamic.html">Dynamic</a></li>
|
120
|
+
|
121
|
+
<li><a href="./Object.html">Object</a></li>
|
122
|
+
|
123
|
+
<li><a href="./StandardWarning.html">StandardWarning</a></li>
|
124
|
+
|
125
|
+
</ul>
|
126
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
|
133
|
+
<div id="documentation">
|
134
|
+
<h1 class="class">DeprecatedMethodWarning</h1>
|
135
|
+
|
136
|
+
<div id="description" class="description">
|
137
|
+
|
138
|
+
<p>This warning marks single methods as deprecated. We recommend to add a
|
139
|
+
useful warning message, which alternative to use instead.</p>
|
140
|
+
|
141
|
+
</div><!-- description -->
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
<div id="5Buntitled-5D" class="documentation-section">
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
<!-- Methods -->
|
156
|
+
|
157
|
+
</div><!-- 5Buntitled-5D -->
|
158
|
+
|
159
|
+
|
160
|
+
</div><!-- documentation -->
|
161
|
+
|
162
|
+
<div id="validator-badges">
|
163
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
164
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
165
|
+
Rdoc Generator</a> 2</small>.</p>
|
166
|
+
</div>
|
167
|
+
|
168
|
+
</body>
|
169
|
+
</html>
|
170
|
+
|
@@ -0,0 +1,171 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Class: DeprecatedSignatureWarning</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
|
13
|
+
<script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
|
14
|
+
<script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
|
15
|
+
<script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body id="top" class="class">
|
19
|
+
|
20
|
+
<div id="metadata">
|
21
|
+
<div id="home-metadata">
|
22
|
+
<div id="home-section" class="section">
|
23
|
+
<h3 class="section-header">
|
24
|
+
<a href="./index.html">Home</a>
|
25
|
+
<a href="./index.html#classes">Classes</a>
|
26
|
+
<a href="./index.html#methods">Methods</a>
|
27
|
+
</h3>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<div id="file-metadata">
|
32
|
+
<div id="file-list-section" class="section">
|
33
|
+
<h3 class="section-header">In Files</h3>
|
34
|
+
<div class="section-body">
|
35
|
+
<ul>
|
36
|
+
|
37
|
+
<li><a href="./lib/structured_warnings/warning_rb.html?TB_iframe=true&height=550&width=785"
|
38
|
+
class="thickbox" title="lib/structured_warnings/warning.rb">lib/structured_warnings/warning.rb</a></li>
|
39
|
+
|
40
|
+
</ul>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div id="class-metadata">
|
48
|
+
|
49
|
+
<!-- Parent Class -->
|
50
|
+
<div id="parent-class-section" class="section">
|
51
|
+
<h3 class="section-header">Parent</h3>
|
52
|
+
|
53
|
+
<p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a></p>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
</div>
|
66
|
+
|
67
|
+
<div id="project-metadata">
|
68
|
+
|
69
|
+
|
70
|
+
<div id="fileindex-section" class="section project-section">
|
71
|
+
<h3 class="section-header">Files</h3>
|
72
|
+
<ul>
|
73
|
+
|
74
|
+
<li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
|
75
|
+
|
76
|
+
</ul>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
|
80
|
+
<div id="classindex-section" class="section project-section">
|
81
|
+
<h3 class="section-header">Class/Module Index
|
82
|
+
<span class="search-toggle"><img src="./images/find.png"
|
83
|
+
height="16" width="16" alt="[+]"
|
84
|
+
title="show/hide quicksearch" /></span></h3>
|
85
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
86
|
+
<fieldset>
|
87
|
+
<legend>Quicksearch</legend>
|
88
|
+
<input type="text" name="quicksearch" value=""
|
89
|
+
class="quicksearch-field" />
|
90
|
+
</fieldset>
|
91
|
+
</form>
|
92
|
+
|
93
|
+
<ul class="link-list">
|
94
|
+
|
95
|
+
<li><a href="./StructuredWarnings.html">StructuredWarnings</a></li>
|
96
|
+
|
97
|
+
<li><a href="./StructuredWarnings/ClassMethods.html">StructuredWarnings::ClassMethods</a></li>
|
98
|
+
|
99
|
+
<li><a href="./StructuredWarnings/Kernel.html">StructuredWarnings::Kernel</a></li>
|
100
|
+
|
101
|
+
<li><a href="./StructuredWarnings/Test.html">StructuredWarnings::Test</a></li>
|
102
|
+
|
103
|
+
<li><a href="./StructuredWarnings/Test/Assertions.html">StructuredWarnings::Test::Assertions</a></li>
|
104
|
+
|
105
|
+
<li><a href="./StructuredWarnings/Test/Warner.html">StructuredWarnings::Test::Warner</a></li>
|
106
|
+
|
107
|
+
<li><a href="./StructuredWarnings/Warner.html">StructuredWarnings::Warner</a></li>
|
108
|
+
|
109
|
+
<li><a href="./Warning.html">Warning</a></li>
|
110
|
+
|
111
|
+
<li><a href="./Warning/ClassMethods.html">Warning::ClassMethods</a></li>
|
112
|
+
|
113
|
+
<li><a href="./DeprecatedMethodWarning.html">DeprecatedMethodWarning</a></li>
|
114
|
+
|
115
|
+
<li><a href="./DeprecatedSignatureWarning.html">DeprecatedSignatureWarning</a></li>
|
116
|
+
|
117
|
+
<li><a href="./DeprecationWarning.html">DeprecationWarning</a></li>
|
118
|
+
|
119
|
+
<li><a href="./Dynamic.html">Dynamic</a></li>
|
120
|
+
|
121
|
+
<li><a href="./Object.html">Object</a></li>
|
122
|
+
|
123
|
+
<li><a href="./StandardWarning.html">StandardWarning</a></li>
|
124
|
+
|
125
|
+
</ul>
|
126
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
|
133
|
+
<div id="documentation">
|
134
|
+
<h1 class="class">DeprecatedSignatureWarning</h1>
|
135
|
+
|
136
|
+
<div id="description" class="description">
|
137
|
+
|
138
|
+
<p>This warning marks the given parameters for a certain methods as
|
139
|
+
deprecated. We recommend to add a useful warning message, which alternative
|
140
|
+
to use instead.</p>
|
141
|
+
|
142
|
+
</div><!-- description -->
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<div id="5Buntitled-5D" class="documentation-section">
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
<!-- Methods -->
|
157
|
+
|
158
|
+
</div><!-- 5Buntitled-5D -->
|
159
|
+
|
160
|
+
|
161
|
+
</div><!-- documentation -->
|
162
|
+
|
163
|
+
<div id="validator-badges">
|
164
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
165
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
166
|
+
Rdoc Generator</a> 2</small>.</p>
|
167
|
+
</div>
|
168
|
+
|
169
|
+
</body>
|
170
|
+
</html>
|
171
|
+
|