ai4r 1.4 → 1.5

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.
Files changed (62) hide show
  1. data/README.rdoc +24 -3
  2. data/examples/decision_trees/id3_example.rb +1 -1
  3. data/examples/genetic_algorithm/genetic_algorithm_example.rb +1 -1
  4. data/lib/ai4r.rb +11 -0
  5. data/lib/ai4r/classifiers/classifier.rb +2 -0
  6. data/lib/ai4r/classifiers/id3.rb +3 -2
  7. data/lib/ai4r/classifiers/multilayer_perceptron.rb +135 -0
  8. data/lib/ai4r/classifiers/one_r.rb +2 -1
  9. data/lib/ai4r/classifiers/prism.rb +2 -1
  10. data/lib/ai4r/classifiers/zero_r.rb +2 -1
  11. data/lib/ai4r/clusterers/average_linkage.rb +60 -0
  12. data/lib/ai4r/clusterers/bisecting_k_means.rb +17 -39
  13. data/lib/ai4r/clusterers/clusterer.rb +25 -0
  14. data/lib/ai4r/clusterers/complete_linkage.rb +62 -0
  15. data/lib/ai4r/clusterers/k_means.rb +18 -25
  16. data/lib/ai4r/clusterers/single_linkage.rb +179 -0
  17. data/lib/ai4r/data/data_set.rb +33 -41
  18. data/lib/ai4r/data/proximity.rb +82 -0
  19. data/lib/ai4r/data/statistics.rb +77 -0
  20. data/lib/ai4r/experiment/classifier_evaluator.rb +95 -0
  21. data/lib/ai4r/genetic_algorithm/genetic_algorithm.rb +2 -4
  22. data/site/build/site/en/build/tmp/build-info.xml +5 -0
  23. data/site/build/site/en/build/tmp/plugins-1.xml +212 -0
  24. data/site/build/site/en/build/tmp/plugins-2.xml +252 -0
  25. data/site/build/site/en/build/tmp/projfilters.properties +41 -0
  26. data/site/build/site/en/downloads.html +1 -1
  27. data/site/build/site/en/geneticAlgorithms.html +1 -1
  28. data/site/build/site/en/index.html +44 -7
  29. data/site/build/site/en/index.pdf +278 -155
  30. data/site/build/site/en/linkmap.html +2 -2
  31. data/site/build/site/en/linkmap.pdf +12 -12
  32. data/site/build/site/en/machineLearning.html +1 -1
  33. data/site/build/site/en/neuralNetworks.html +1 -1
  34. data/site/build/site/en/sourceCode.html +244 -0
  35. data/site/build/site/en/sourceCode.pdf +278 -0
  36. data/site/build/site/en/svn.html +34 -42
  37. data/site/build/site/en/svn.pdf +86 -114
  38. data/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.data +0 -0
  39. data/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.index +0 -0
  40. data/site/build/tmp/projfilters.properties +1 -1
  41. data/site/build/webapp/WEB-INF/logs/core.log +628 -629
  42. data/site/build/webapp/WEB-INF/logs/error.log +213 -213
  43. data/site/src/documentation/content/xdocs/index.xml +20 -1
  44. data/site/src/documentation/content/xdocs/site.xml +1 -1
  45. data/site/src/documentation/content/xdocs/sourceCode.xml +43 -0
  46. data/site/src/documentation/resources/images/sigmoid.png +0 -0
  47. data/test/classifiers/id3_test.rb +0 -1
  48. data/test/classifiers/multilayer_perceptron_test.rb +79 -0
  49. data/test/classifiers/one_r_test.rb +0 -2
  50. data/test/classifiers/prism_test.rb +0 -2
  51. data/test/classifiers/zero_r_test.rb +0 -2
  52. data/test/clusterers/average_linkage_test.rb +45 -0
  53. data/test/clusterers/bisecting_k_means_test.rb +0 -2
  54. data/test/clusterers/complete_linkage_test.rb +45 -0
  55. data/test/clusterers/k_means_test.rb +0 -2
  56. data/test/clusterers/single_linkage_test.rb +113 -0
  57. data/test/data/data_set_test.rb +3 -15
  58. data/test/data/proximity_test.rb +71 -0
  59. data/test/data/statistics_test.rb +65 -0
  60. data/test/experiment/classifier_evaluator_test.rb +76 -0
  61. metadata +27 -6
  62. data/site/src/documentation/content/xdocs/svn.xml +0 -41
@@ -115,7 +115,7 @@ document.write("Last Published: " + document.lastModified);
115
115
  <a href="http://forum.jadeferret.com/viewforum.php?f=3" title="Ai4r Forum">Forum</a>
116
116
  </div>
117
117
  <div class="menuitem">
118
- <a href="svn.html" title="ai4r Subversion repository">Source Code repository</a>
118
+ <a href="sourceCode.html" title="ai4r source code repository">Source Code repository</a>
119
119
  </div>
120
120
  <div class="menuitem">
121
121
  <a href="http://wiki.jadeferret.com/Category:AI4R" title="ai4r wiki with How-to guides and more documentation">AI4R Wiki</a>
@@ -208,7 +208,7 @@ google_ad_height = 125;
208
208
 
209
209
  <ul>
210
210
  <li>
211
- <a href="svn.html">Source Code repository</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>svn</em>&nbsp;: ai4r Subversion repository</li>
211
+ <a href="sourceCode.html">Source Code repository</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>svn</em>&nbsp;: ai4r source code repository</li>
212
212
  </ul>
213
213
 
214
214
  <ul>
@@ -5,10 +5,10 @@
5
5
  /Producer (FOP 0.20.5) >>
6
6
  endobj
7
7
  5 0 obj
8
- << /Length 1206 /Filter [ /ASCII85Decode /FlateDecode ]
8
+ << /Length 1200 /Filter [ /ASCII85Decode /FlateDecode ]
9
9
  >>
10
10
  stream
11
- Gat=+gMYb*&:O:SkV3)r>$aU&qW>`d`^R@M'*J-Y'FR@(AKm<$V5RYu^6E/tUgb6JV*N1s_Du6=B/nuFHM6M7HRSB7\),=opKof\?87'R;#d2TFE:jjHlU/_](1;T4>9>[]djf9lH@-_<^0[M:/@t?Vpb@c2gTkhCIr<p>^AWJok/tP4GX2P$][W;++dmN>AmZn\KK^p$Zhj'iL[kn%$8A/DQ,NL?L:?7NL>Nh<a+YjOu/gM.G@J(K)/"*d(u7uIM2+[59`M@":ILC$OMA+*26/1+;?@-4m]p*Iu`s6&+0upIMgf<L&g$<:tRK.TT=WBq$Ot^niL1*ab5hqa!eCpVbasjk9u&?"@;=^K@6dFl.]04(h:N6YQ<D7dE)\F:)J`ZU/+8<%(isWY4QZc,hoP^V59bfW?N``<mWl`Ec8k7T"n3Z\BcOf,Okg*^3t;Ls&C^R&1>%u7WNnjBdQtp;Rh-J]1Q``MjVGr*Z",1J>9fi2`^+X5DY7l*O5U%el6oNUaum+R+t`+=U-qYP6BRC`IMHEGHrPD;RIP"%R,k1"Mq7:!YXa^59J)-]W(R+SCm!j0cW9uipS_YZJ%jK0/OD$X,H4gWDanW2J=t@B]!^8TMd9[/U+.i)UL4\<su*>=O<!aN#UKP"f;6'2F*eonWgQ"XGsD_^2ia+4j-eU]kSm+h1KCmDUAIXP:3e>T,%k`88$n(RQ^*Bhk`ak/\)k[rP!g\q19jXljsR(>*h@rVk5<9@B$tP@H;d5B;>kW*&IJ_,C+;$I$e%lI9;KG-@rMYQ<^fIoI_uMKE\Rt4J(e(lElP4]uUJ)DM>_[]T&Z&7^\5MHJknZgX6PW%85%g=#UI=hBuA09`!%CEG/\DF8Lp.AqTFrcCKDtT3eH5Nf4Y='I0RBapdHt:&m</dsMncCX@R`1RjmAlG=BmJW9BW4*5+%gthU3H]:se_3qam<a0eGoh'7A(G3fp(.0_q;U&P*ilnHD`J'F"3R?DO?1[dqd0X6DlCY5bRX\OEY-d_DENe`LbK3)kYeQT1kb<iOk8mH$L=fgA=.D2:(FEAJpE8M`HM1_GVWo6/&4Ct8e-2O%J<,L6W4/1CT3ZYZ0r2P\qmT[dU4=(V0rS2"1%>nCPA&lp_ftR$'jIXZ=c\A(D'8m'D*:]m0WsdhUOq(A++!'jRN%<s,o)"M^?9(,N?5P`Ct__U6??Lhr<lH0??l~>
11
+ Gat=+?#S1G'RfGRaQ"VPi/]i>]QG`Y,!`A4idi8;-#RHLM2UCJp@!!a[^NNRJdcAg3qGMt*oH:!?a"+GQe4ZV&%qRI#.ji?)=WM$oRQcC]qh,*"5r2np=>N'rSii/HKe_/-rs\-5-k$i8p>SjSN`:XGJ;Jb)dZ0@bN@7MiN5<mAE#m3+Bre1MYn"g"5J4GRa)*$^0I&c<"J^3#%N0'`c=_[On!0f;JF?3bd>eZ2isg9eO\)"Z5(kREeb.m,k7(Cci"n.E[Flo3a"uZr88-'ao\8E$0YfI^AL"&$X^D2"SlJ>q\oTY1I,Bh+FlWW(?[1RLWJBEMG>L_,X+]&m6?$WXZT*&lm<!9^E&P>F\_s1jb,?hS,sX[%3D(1Yi:=EBJ4[A,gNW0Hg=97k<cH`b?.s5\WnXrZ=F-@1F)WP>jMb:Ko#VR;E5@3+E-"ikODpPEWpHW.qU'Y(Qi<mAL<,?J'tJ4R`Qa#ENb-$]0"qan*WnF]$([/,?%+6hpIlBDhaKf_$-%WC,5)TLOPC/)n$T&9^ba-"@]?!A)"hhd=rdrPuL!mSatrR3Li%9*fC^/4=GqoB3BUSZRr5;PkmpL;7!j$Y*V3B6#;0S",cg><XUCb_U3CZ>,hTDPC0dR3edg_=MqYBc!!s?hm*:B/<A,a'kV<1VXfS%a6?a(@d-lK1$]lK]69):Yb+=W^&#*L3'fS5YLDiX-ho;G;JF87#k-XSm*?If@:t?tn>EkYBg2JP;%61k/INf\4$=fg!9'<u^Dt@RUZ]P=P3Kl!'K-8fjgO6EXep<9TdD=@c/A+c(K./JK^;,saE&lmV;Z8*'fN(/'\+4BL"Vc0G]$W8m^Ti*E:H'$3agB[%Z<^G]0<^M\8+"D?K0c)Ae[M]#B6EB@K^h-R=Uo,$m92XR]h<I%JPiFZH5\3Y)Zp-fP"'o6[);Dh464-f/U_eS7tW6[Ip+U>tM3dU1O/DZKS,PWpT-LS9\hO\1k;9H.H$]_S8<u:'cbW-Zp0Vr6*6'V2bA1>@l]!:)5mFr>j]\(HmF5$\>lO`:ahUp9\hO0\Iqj#8uF%B>=;p<W?$K+S$bOXpU^#Hpg(_^!5p0m(.P/+na[K^WL"""iPYM6,b%)M3hVB6j&bp^3^WsfLl+t\jlm<$NUfQl]-jSEG[?H'sqjbl'W&rDEQsF<![76SsQ93HJHNEBg]jXReo/4^Y3C0-i~>
12
12
  endstream
13
13
  endobj
14
14
  6 0 obj
@@ -72,17 +72,17 @@ endobj
72
72
  xref
73
73
  0 12
74
74
  0000000000 65535 f
75
- 0000002030 00000 n
76
- 0000002088 00000 n
77
- 0000002138 00000 n
75
+ 0000002024 00000 n
76
+ 0000002082 00000 n
77
+ 0000002132 00000 n
78
78
  0000000015 00000 n
79
79
  0000000071 00000 n
80
- 0000001369 00000 n
81
- 0000001475 00000 n
82
- 0000001587 00000 n
83
- 0000001696 00000 n
84
- 0000001806 00000 n
85
- 0000001914 00000 n
80
+ 0000001363 00000 n
81
+ 0000001469 00000 n
82
+ 0000001581 00000 n
83
+ 0000001690 00000 n
84
+ 0000001800 00000 n
85
+ 0000001908 00000 n
86
86
  trailer
87
87
  <<
88
88
  /Size 12
@@ -90,5 +90,5 @@ trailer
90
90
  /Info 4 0 R
91
91
  >>
92
92
  startxref
93
- 2258
93
+ 2252
94
94
  %%EOF
@@ -115,7 +115,7 @@ document.write("Last Published: " + document.lastModified);
115
115
  <a href="http://forum.jadeferret.com/viewforum.php?f=3" title="Ai4r Forum">Forum</a>
116
116
  </div>
117
117
  <div class="menuitem">
118
- <a href="svn.html" title="ai4r Subversion repository">Source Code repository</a>
118
+ <a href="sourceCode.html" title="ai4r source code repository">Source Code repository</a>
119
119
  </div>
120
120
  <div class="menuitem">
121
121
  <a href="http://wiki.jadeferret.com/Category:AI4R" title="ai4r wiki with How-to guides and more documentation">AI4R Wiki</a>
@@ -115,7 +115,7 @@ document.write("Last Published: " + document.lastModified);
115
115
  <a href="http://forum.jadeferret.com/viewforum.php?f=3" title="Ai4r Forum">Forum</a>
116
116
  </div>
117
117
  <div class="menuitem">
118
- <a href="svn.html" title="ai4r Subversion repository">Source Code repository</a>
118
+ <a href="sourceCode.html" title="ai4r source code repository">Source Code repository</a>
119
119
  </div>
120
120
  <div class="menuitem">
121
121
  <a href="http://wiki.jadeferret.com/Category:AI4R" title="ai4r wiki with How-to guides and more documentation">AI4R Wiki</a>
@@ -0,0 +1,244 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <html>
3
+ <head>
4
+ <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <meta content="Apache Forrest" name="Generator">
6
+ <meta name="Forrest-version" content="0.8">
7
+ <meta name="Forrest-skin-name" content="pelt">
8
+ <title>Subversion repository for ai4r (Artificial Intelligence for Ruby)</title>
9
+ <link type="text/css" href="skin/basic.css" rel="stylesheet">
10
+ <link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
11
+ <link media="print" type="text/css" href="skin/print.css" rel="stylesheet">
12
+ <link type="text/css" href="skin/profile.css" rel="stylesheet">
13
+ <script src="skin/getBlank.js" language="javascript" type="text/javascript"></script><script src="skin/getMenu.js" language="javascript" type="text/javascript"></script><script src="skin/fontsize.js" language="javascript" type="text/javascript"></script>
14
+ <link rel="shortcut icon" href="">
15
+ </head>
16
+ <body onload="init()">
17
+ <script type="text/javascript">ndeSetTextSize();</script>
18
+ <div id="top">
19
+ <!--+
20
+ |header
21
+ +-->
22
+ <div class="header">
23
+ <!--+
24
+ |start group logo
25
+ +-->
26
+ <div class="grouplogo">
27
+ <a href="http://www.jadeferret.com"><img class="logoImage" alt="Jade Ferret" src="images/jadeferret.png" title="Jade Ferret"></a>
28
+ </div>
29
+ <!--+
30
+ |end group logo
31
+ +-->
32
+ <!--+
33
+ |start Project Logo
34
+ +-->
35
+ <div class="projectlogo">
36
+ <a href="http://ai4r.rubyforge.org/"><img class="logoImage" alt="ai4r" src="images/ai4r-logo.png" title="AI4R - Artificial Intelligence for Ruby"></a>
37
+ </div>
38
+ <!--+
39
+ |end Project Logo
40
+ +-->
41
+ <!--+
42
+ |start Search
43
+ +-->
44
+ <div class="searchbox">
45
+ <div class="roundtopsmall">
46
+ <form target="_top" action="http://www.google.com/custom" method="get">
47
+ <input value="ai4r.rubyforge.org;raa.ruby-lang.org;rubyforge.org" name="domains" type="hidden"><label style="display: none" for="sbi">Enter your search terms</label><input id="sbi" value="" maxlength="255" size="31" name="q" type="text"><label style="display: none" for="sbb">Submit search form</label><input id="sbb" value="Search" name="sa" type="submit"><span style="display:none"><input id="ss0" value="" name="sitesearch" style="display=none" type="radio"><input id="ss1" checked value="ai4r.rubyforge.org" name="sitesearch" style="display=none" type="radio"><input id="ss2" value="raa.ruby-lang.org" name="sitesearch" style="display=none" type="radio"><input id="ss3" value="rubyforge.org" name="sitesearch" style="display=none" type="radio"></span><input value="pub-2578934938711895" name="client" type="hidden"><input value="1" name="forid" type="hidden"><input value="ISO-8859-1" name="ie" type="hidden"><input value="ISO-8859-1" name="oe" type="hidden"><input value="active" name="safe" type="hidden"><input value="0000" name="flav" type="hidden"><input value="XEZZoGuMPMQqvUG_" name="sig" type="hidden"><input value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;LH:50;LW:78;L:http://ai4r.rubyforge.org/images/ai4r-logo.png;S:http://ai4r.rubyforge.org/;FORID:1" name="cof" type="hidden"><input value="en" name="hl" type="hidden">
48
+ </form>
49
+ </div>
50
+ </div>
51
+ <!--+
52
+ |end search
53
+ +-->
54
+ <!--+
55
+ |start Tabs
56
+ +-->
57
+ <ul id="tabs">
58
+ <li class="current">
59
+ <a class="selected" href="index.html">Home</a>
60
+ </li>
61
+ </ul>
62
+ <!--+
63
+ |end Tabs
64
+ +-->
65
+ </div>
66
+ </div>
67
+ <div id="main">
68
+ <div id="publishedStrip">
69
+ <!--+
70
+ |start Subtabs
71
+ +-->
72
+ <div id="level2tabs"></div>
73
+ <!--+
74
+ |end Endtabs
75
+ +-->
76
+ <script type="text/javascript"><!--
77
+ document.write("Last Published: " + document.lastModified);
78
+ // --></script>
79
+ </div>
80
+ <!--+
81
+ |breadtrail
82
+ +-->
83
+ <div class="breadtrail">
84
+
85
+ &nbsp;
86
+ </div>
87
+ <!--+
88
+ |start Menu, mainarea
89
+ +-->
90
+ <!--+
91
+ |start Menu
92
+ +-->
93
+ <div id="menu">
94
+ <div onclick="SwitchMenu('menu_selected_1.1', 'skin/')" id="menu_selected_1.1Title" class="menutitle" style="background-image: url('skin/images/chapter_open.gif');">Home</div>
95
+ <div id="menu_selected_1.1" class="selectedmenuitemgroup" style="display: block;">
96
+ <div class="menuitem">
97
+ <a href="index.html" title="ai4r - Artificial Intelligence for Ruby">Index</a>
98
+ </div>
99
+ <div onclick="SwitchMenu('menu_1.1.2', 'skin/')" id="menu_1.1.2Title" class="menutitle">Practical Examples</div>
100
+ <div id="menu_1.1.2" class="menuitemgroup">
101
+ <div class="menuitem">
102
+ <a href="geneticAlgorithms.html" title="Genetic Algorithms in ruby">Genetic Algorithms</a>
103
+ </div>
104
+ <div class="menuitem">
105
+ <a href="machineLearning.html" title="ID3 Decision Trees in ruby">Machine Learning</a>
106
+ </div>
107
+ <div class="menuitem">
108
+ <a href="neuralNetworks.html" title="Backpropagation Neural Network in ruby">Neural Networks</a>
109
+ </div>
110
+ </div>
111
+ <div class="menuitem">
112
+ <a href="downloads.html" title="ai4r - Download Files">Downloads</a>
113
+ </div>
114
+ <div class="menuitem">
115
+ <a href="http://forum.jadeferret.com/viewforum.php?f=3" title="Ai4r Forum">Forum</a>
116
+ </div>
117
+ <div class="menupage">
118
+ <div class="menupagetitle">Source Code repository</div>
119
+ </div>
120
+ <div class="menuitem">
121
+ <a href="http://wiki.jadeferret.com/Category:AI4R" title="ai4r wiki with How-to guides and more documentation">AI4R Wiki</a>
122
+ </div>
123
+ <div class="menuitem">
124
+ <a href="http://ai4r.rubyforge.org/rdoc/index.html" title="Ai4 RDoc docs">API doc (Rdoc)</a>
125
+ </div>
126
+ </div>
127
+ <div id="credit">
128
+ <script type="text/javascript">
129
+ google_ad_client = "pub-2578934938711895";
130
+ google_ad_slot = "6111091580";
131
+ google_ad_width = 125;
132
+ google_ad_height = 125;
133
+ </script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
134
+ <hr>
135
+ </div>
136
+ <div id="roundbottom">
137
+ <img style="display: none" class="corner" height="15" width="15" alt="" src="skin/images/rc-b-l-15-1body-2menu-3menu.png"></div>
138
+ <!--+
139
+ |alternative credits
140
+ +-->
141
+ <div id="credit2"></div>
142
+ </div>
143
+ <!--+
144
+ |end Menu
145
+ +-->
146
+ <!--+
147
+ |start content
148
+ +-->
149
+ <div id="content">
150
+ <div title="Portable Document Format" class="pdflink">
151
+ <a class="dida" href="sourceCode.pdf"><img alt="PDF -icon" src="skin/images/pdfdoc.gif" class="skin"><br>
152
+ PDF</a>
153
+ </div>
154
+ <h1>Subversion repository for ai4r (Artificial Intelligence for Ruby)</h1>
155
+ <div id="minitoc-area">
156
+ <ul class="minitoc">
157
+ <li>
158
+ <a href="#github">AI4R at GitHub</a>
159
+ </li>
160
+ <li>
161
+ <a href="#download">Download the source code</a>
162
+ </li>
163
+ <li>
164
+ <a href="#moreinfor">More info on Git</a>
165
+ </li>
166
+ </ul>
167
+ </div>
168
+
169
+ <a name="N1000C"></a><a name="github"></a>
170
+ <h2 class="boxed">AI4R at GitHub</h2>
171
+ <div class="section">
172
+ <p>AI4R Source Code is stored in a git repository at GitHub:</p>
173
+ <p>
174
+
175
+ <a class="external" href="http://github.com/JadeFerret/ai4r">
176
+ http://github.com/JadeFerret/ai4r
177
+ </a>
178
+
179
+ </p>
180
+ <p>The public clone url is:</p>
181
+ <p>
182
+
183
+ <a class="external" href="git://github.com/JadeFerret/ai4r.git">
184
+ git://github.com/JadeFerret/ai4r.git
185
+ </a>
186
+
187
+ </p>
188
+ </div>
189
+
190
+
191
+ <a name="N10029"></a><a name="download"></a>
192
+ <h2 class="boxed">Download the source code</h2>
193
+ <div class="section">
194
+ <p>If you want to download ai4r code without using git,
195
+ visit
196
+ <a class="external" href="http://github.com/JadeFerret/ai4r/downloads">
197
+ AI4R source code download site</a>, and click on the "download" button.
198
+ </p>
199
+ </div>
200
+
201
+
202
+ <a name="N10038"></a><a name="moreinfor"></a>
203
+ <h2 class="boxed">More info on Git</h2>
204
+ <div class="section">
205
+ <p>If you need help on using git, the best documentation is available
206
+ <a class="external" href="http://git-scm.com/documentation">here</a>.</p>
207
+ <p>If you work in SCM, you may find <a class="external" href="http://scm.jadeferret.com">Jade Ferret&rsquo;s Agile SCM blog</a>
208
+ interesting.</p>
209
+ </div>
210
+
211
+
212
+ </div>
213
+ <!--+
214
+ |end content
215
+ +-->
216
+ <div class="clearboth">&nbsp;</div>
217
+ </div>
218
+ <div id="footer">
219
+ <!--+
220
+ |start bottomstrip
221
+ +-->
222
+ <div class="lastmodified">
223
+ <script type="text/javascript"><!--
224
+ document.write("Last Published: " + document.lastModified);
225
+ // --></script>
226
+ </div>
227
+ <div class="copyright">
228
+ Copyright &copy;
229
+ 2007-2009 <a href="http://www.jadeferret.com/">Sergio Fierens, Jade Ferret</a>
230
+ </div>
231
+ <div class="host">
232
+ <a href="http://rubyforge.org/projects/ai4r/"><img class="logoImage" alt="" src="images/rubyforge.png"></a>
233
+ </div>
234
+ <!--+
235
+ |end bottomstrip
236
+ +-->
237
+ </div>
238
+ <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script><script type="text/javascript">
239
+ var pageTracker = _gat._getTracker("UA-3234625-1");
240
+ pageTracker._initData();
241
+ pageTracker._trackPageview();
242
+ </script>
243
+ </body>
244
+ </html>
@@ -0,0 +1,278 @@
1
+ %PDF-1.3
2
+ %����
3
+ 4 0 obj
4
+ << /Type /Info
5
+ /Producer (FOP 0.20.5) >>
6
+ endobj
7
+ 5 0 obj
8
+ << /Length 527 /Filter [ /ASCII85Decode /FlateDecode ]
9
+ >>
10
+ stream
11
+ Gau`P_/@+D%))BcHn<\]Ou-mr&[nrq[)8QGYsTrh7-Y\V(+0$0BrOWgRb3InLW5AGCd1!&-!l'@!+cF'P'a_7AKHT67f]$>^nB)/%&4r(+o-e8J%f.TKs%4$HZ2cUfUVhBCfMcsV%6Un.rBu>1*_341;,q"JONo?6X@l?Ahkt)eO`o%U6'.fB&XX!fku(;oK)pL3!.MSFQSLf(m,q'qF]1IdDGG9aB,q.B?GHMlfs/DJ`(T3JnY=#G[o,5O1<d5_RdGK=q;usAf[bVh*9*ZA[h"l/"i@b'1cphd]="-HCY*W,2+>3Y>a@]5H=1X;!H-"?>l?c<,/<ei>,uNDT.M'8f0Ron.u^>Cq?iD/%A3'C]19?PG9[Mjg8QDeeS57&kre!??5S#G[Kj*BHJ#+&W/QP2HGbb#;%(mhRl]A?Kd5'N+*\[mS"E0@5Nd#$j+@/8flLUT]LJugZQ8CS61VW**Hu.oNE^pO/:3tXR<0%R]`0k0c!q##CBQ4USd]g\RV`SH7r=?VYpU6EZA-~>
12
+ endstream
13
+ endobj
14
+ 6 0 obj
15
+ << /Type /Page
16
+ /Parent 1 0 R
17
+ /MediaBox [ 0 0 612 792 ]
18
+ /Resources 3 0 R
19
+ /Contents 5 0 R
20
+ /Annots 7 0 R
21
+ >>
22
+ endobj
23
+ 7 0 obj
24
+ [
25
+ 8 0 R
26
+ 10 0 R
27
+ 12 0 R
28
+ ]
29
+ endobj
30
+ 8 0 obj
31
+ << /Type /Annot
32
+ /Subtype /Link
33
+ /Rect [ 102.0 532.666 187.328 520.666 ]
34
+ /C [ 0 0 0 ]
35
+ /Border [ 0 0 0 ]
36
+ /A 9 0 R
37
+ /H /I
38
+ >>
39
+ endobj
40
+ 10 0 obj
41
+ << /Type /Annot
42
+ /Subtype /Link
43
+ /Rect [ 102.0 514.466 237.632 502.466 ]
44
+ /C [ 0 0 0 ]
45
+ /Border [ 0 0 0 ]
46
+ /A 11 0 R
47
+ /H /I
48
+ >>
49
+ endobj
50
+ 12 0 obj
51
+ << /Type /Annot
52
+ /Subtype /Link
53
+ /Rect [ 102.0 496.266 191.66 484.266 ]
54
+ /C [ 0 0 0 ]
55
+ /Border [ 0 0 0 ]
56
+ /A 13 0 R
57
+ /H /I
58
+ >>
59
+ endobj
60
+ 14 0 obj
61
+ << /Length 1458 /Filter [ /ASCII85Decode /FlateDecode ]
62
+ >>
63
+ stream
64
+ Gatm;9lK&M&A@sB&:7$"/1jbq7-uRq2JEq/TM9fLHB;uH-<?F;I3cnKn*#r[XfX;1,(QG^a>`Ps3A]1:e`->RinoGW'k=sJi4m<\!WN6C#Y%?+POgFLm`6SkW'`Zri)e"rq(n5!\UrlS=YKbXHsJ=i[m"6nK[ju!OEeTt"+Q9:98*c&4gI,1^FpG;,bK>aF)cU]*fLi"k4qc=IoP`,ndelOC[&/0or]P"$6\X,F;.h%16O?JOr4qlN!d>]1%tR5<V[ssp._taQ7gC&;.b*\7IO-M^c]UTWQCoF<bPV13iDZZQ4)_N.1R<5]8^fY&%J)<O[25QT,\+QMRm'c"%g1_dO-^/Ymn`VW-[LEnSqr3(S?+Y*ks7mTOV?2kpAJC^P1G+2TkWi>_ZGC*S[30>P\eg#%Y,3;*7nF6uS$t8[9&DY4;]cr4UL>*qbt887g"PLkV'W<LjO(_JCW6ZeLl80;Y+Z6%V,Qmn5R\IEESe''C[rI`l'G,R`#I/b/6CP76)#)/pr&,Z?O=H-[&-;:ss%F<m-"+h6DIB<PHLN0c4e\PZu$H2EeYp)oAU%lge#=bWNK6Ds?%7B_[CXGc<icC?oH$R"U8-kb#570hfVOp4Mf,9K!n"rB_./QK7'-9Q$TC7^h&W1&5D(FD*tTS&tI.8nY;2G6bCB=3)1hRsAs3sCl\3`!DjaXflLV?o'II,_/LY3);0J>rpSF?I\JDP:`GMA2J#ZW&f)<tbl%$.sb4;c$d*mqkp6,sHXdN)$a_!>A2@lK4(@Qj@rs[@%W(>MRQsk(b[toLu+[eAq6G)-^0RRAKP*Ca-aZTS-N,Og.04;9r1C5Sl;>mr7g5pRYZ6>3t(TNfG$5OH;JRl<+F2f/SG6hnH(\D&d8C04t)03M%QWgBU2P[>p+W\"?B;Lse%0229#X_sf\98[qOP;$l1!H#T>X1joN?Tb;=c,,gn-aN$?`J;Ze(O7H5)J+/9WdZ^T$[@H+;i*$$]T+lCn^A35#B$hbi\)X#SmE6"6SE9l(QqtCBKNu>2Q@'PF=9o?g&m\lCm$URmeBGin1E0.F!HmA5-LbY5#=ZO.Uo:uJ5&njUqch(YA'I<`F0GZ[;c(Ti6i<6(ZP3_XNqGIHEU'Uu0'9k%J;Pd(Hl`I66IE"M.>%2sf/%RQSe[mjC]QOcJ5TCV?tQ`0rCS>ISRh8i@c[;)-CV!a&kZ5&6K.@uddi\;"mlEb$Fand.Ngor.H<]1ZYKFYj[E7VI36aka/@hU_sf;%7s=o`0ap0M>j%s?l&?1:d>N@EQm=_Qde5K^/EB1+IXSdIm3B\jat!S]^?iEUCk8[Wj0!<\CoUQg:04tO&Fc[Qao+#Sa6ksF(N[0k7]PCt+ApXV%p'#_#o!Zb=UTA9*FEk.n!b*Vf:US0:L#YbEQ@U/obceqcA[1P@E[*Yb)E^8F*QTl*FiG(M(op`"gXmIb+GF\\g%(X,uP25~>
65
+ endstream
66
+ endobj
67
+ 15 0 obj
68
+ << /Type /Page
69
+ /Parent 1 0 R
70
+ /MediaBox [ 0 0 612 792 ]
71
+ /Resources 3 0 R
72
+ /Contents 14 0 R
73
+ /Annots 16 0 R
74
+ >>
75
+ endobj
76
+ 16 0 obj
77
+ [
78
+ 17 0 R
79
+ 18 0 R
80
+ 19 0 R
81
+ 20 0 R
82
+ 21 0 R
83
+ ]
84
+ endobj
85
+ 17 0 obj
86
+ << /Type /Annot
87
+ /Subtype /Link
88
+ /Rect [ 90.0 608.466 248.328 596.466 ]
89
+ /C [ 0 0 0 ]
90
+ /Border [ 0 0 0 ]
91
+ /A << /URI (http://github.com/JadeFerret/ai4r)
92
+ /S /URI >>
93
+ /H /I
94
+ >>
95
+ endobj
96
+ 18 0 obj
97
+ << /Type /Annot
98
+ /Subtype /Link
99
+ /Rect [ 90.0 566.066 258.0 554.066 ]
100
+ /C [ 0 0 0 ]
101
+ /Border [ 0 0 0 ]
102
+ /A << /URI (git://github.com/JadeFerret/ai4r.git)
103
+ /S /URI >>
104
+ /H /I
105
+ >>
106
+ endobj
107
+ 19 0 obj
108
+ << /Type /Annot
109
+ /Subtype /Link
110
+ /Rect [ 369.324 513.732 525.96 501.732 ]
111
+ /C [ 0 0 0 ]
112
+ /Border [ 0 0 0 ]
113
+ /A << /URI (http://github.com/JadeFerret/ai4r/downloads)
114
+ /S /URI >>
115
+ /H /I
116
+ >>
117
+ endobj
118
+ 20 0 obj
119
+ << /Type /Annot
120
+ /Subtype /Link
121
+ /Rect [ 405.636 448.198 426.288 436.198 ]
122
+ /C [ 0 0 0 ]
123
+ /Border [ 0 0 0 ]
124
+ /A << /URI (http://git-scm.com/documentation)
125
+ /S /URI >>
126
+ /H /I
127
+ >>
128
+ endobj
129
+ 21 0 obj
130
+ << /Type /Annot
131
+ /Subtype /Link
132
+ /Rect [ 260.328 426.998 404.316 414.998 ]
133
+ /C [ 0 0 0 ]
134
+ /Border [ 0 0 0 ]
135
+ /A << /URI (http://scm.jadeferret.com)
136
+ /S /URI >>
137
+ /H /I
138
+ >>
139
+ endobj
140
+ 23 0 obj
141
+ <<
142
+ /Title (\376\377\0\61\0\40\0\101\0\111\0\64\0\122\0\40\0\141\0\164\0\40\0\107\0\151\0\164\0\110\0\165\0\142)
143
+ /Parent 22 0 R
144
+ /Next 24 0 R
145
+ /A 9 0 R
146
+ >> endobj
147
+ 24 0 obj
148
+ <<
149
+ /Title (\376\377\0\62\0\40\0\104\0\157\0\167\0\156\0\154\0\157\0\141\0\144\0\40\0\164\0\150\0\145\0\40\0\163\0\157\0\165\0\162\0\143\0\145\0\40\0\143\0\157\0\144\0\145)
150
+ /Parent 22 0 R
151
+ /Prev 23 0 R
152
+ /Next 25 0 R
153
+ /A 11 0 R
154
+ >> endobj
155
+ 25 0 obj
156
+ <<
157
+ /Title (\376\377\0\63\0\40\0\115\0\157\0\162\0\145\0\40\0\151\0\156\0\146\0\157\0\40\0\157\0\156\0\40\0\107\0\151\0\164)
158
+ /Parent 22 0 R
159
+ /Prev 24 0 R
160
+ /A 13 0 R
161
+ >> endobj
162
+ 26 0 obj
163
+ << /Type /Font
164
+ /Subtype /Type1
165
+ /Name /F3
166
+ /BaseFont /Helvetica-Bold
167
+ /Encoding /WinAnsiEncoding >>
168
+ endobj
169
+ 27 0 obj
170
+ << /Type /Font
171
+ /Subtype /Type1
172
+ /Name /F5
173
+ /BaseFont /Times-Roman
174
+ /Encoding /WinAnsiEncoding >>
175
+ endobj
176
+ 28 0 obj
177
+ << /Type /Font
178
+ /Subtype /Type1
179
+ /Name /F1
180
+ /BaseFont /Helvetica
181
+ /Encoding /WinAnsiEncoding >>
182
+ endobj
183
+ 29 0 obj
184
+ << /Type /Font
185
+ /Subtype /Type1
186
+ /Name /F2
187
+ /BaseFont /Helvetica-Oblique
188
+ /Encoding /WinAnsiEncoding >>
189
+ endobj
190
+ 30 0 obj
191
+ << /Type /Font
192
+ /Subtype /Type1
193
+ /Name /F7
194
+ /BaseFont /Times-Bold
195
+ /Encoding /WinAnsiEncoding >>
196
+ endobj
197
+ 1 0 obj
198
+ << /Type /Pages
199
+ /Count 2
200
+ /Kids [6 0 R 15 0 R ] >>
201
+ endobj
202
+ 2 0 obj
203
+ << /Type /Catalog
204
+ /Pages 1 0 R
205
+ /Outlines 22 0 R
206
+ /PageMode /UseOutlines
207
+ >>
208
+ endobj
209
+ 3 0 obj
210
+ <<
211
+ /Font << /F3 26 0 R /F5 27 0 R /F1 28 0 R /F2 29 0 R /F7 30 0 R >>
212
+ /ProcSet [ /PDF /ImageC /Text ] >>
213
+ endobj
214
+ 9 0 obj
215
+ <<
216
+ /S /GoTo
217
+ /D [15 0 R /XYZ 85.0 659.0 null]
218
+ >>
219
+ endobj
220
+ 11 0 obj
221
+ <<
222
+ /S /GoTo
223
+ /D [15 0 R /XYZ 85.0 543.066 null]
224
+ >>
225
+ endobj
226
+ 13 0 obj
227
+ <<
228
+ /S /GoTo
229
+ /D [15 0 R /XYZ 85.0 477.532 null]
230
+ >>
231
+ endobj
232
+ 22 0 obj
233
+ <<
234
+ /First 23 0 R
235
+ /Last 25 0 R
236
+ >> endobj
237
+ xref
238
+ 0 31
239
+ 0000000000 65535 f
240
+ 0000005075 00000 n
241
+ 0000005140 00000 n
242
+ 0000005232 00000 n
243
+ 0000000015 00000 n
244
+ 0000000071 00000 n
245
+ 0000000689 00000 n
246
+ 0000000809 00000 n
247
+ 0000000848 00000 n
248
+ 0000005355 00000 n
249
+ 0000000983 00000 n
250
+ 0000005418 00000 n
251
+ 0000001120 00000 n
252
+ 0000005484 00000 n
253
+ 0000001256 00000 n
254
+ 0000002807 00000 n
255
+ 0000002930 00000 n
256
+ 0000002985 00000 n
257
+ 0000003169 00000 n
258
+ 0000003354 00000 n
259
+ 0000003550 00000 n
260
+ 0000003736 00000 n
261
+ 0000005550 00000 n
262
+ 0000003915 00000 n
263
+ 0000004087 00000 n
264
+ 0000004334 00000 n
265
+ 0000004519 00000 n
266
+ 0000004632 00000 n
267
+ 0000004742 00000 n
268
+ 0000004850 00000 n
269
+ 0000004966 00000 n
270
+ trailer
271
+ <<
272
+ /Size 31
273
+ /Root 2 0 R
274
+ /Info 4 0 R
275
+ >>
276
+ startxref
277
+ 5601
278
+ %%EOF