onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,899 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en" dir="ltr" class="client-nojs">
3
+ <head>
4
+ <meta charset="UTF-8" /><title>Ruby - Wikipedia, the free encyclopedia</title>
5
+ <meta name="generator" content="MediaWiki 1.22wmf11" />
6
+ <link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Ruby&amp;action=edit" />
7
+ <link rel="edit" title="Edit this page" href="/w/index.php?title=Ruby&amp;action=edit" />
8
+ <link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
9
+ <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
10
+ <link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
11
+ <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
12
+ <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
13
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmw.PopUpMediaTransform%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*" />
14
+ <meta name="ResourceLoaderDynamicStyles" content="" />
15
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*" />
16
+ <style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
17
+ /* cache key: enwiki:resourceloader:filter:minify-css:7:d11e4771671c2d6cdedf7c90d8131cd5 */</style>
18
+
19
+ <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*"></script>
20
+ <script>if(window.mw){
21
+ mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Ruby","wgTitle":"Ruby","wgCurRevisionId":565568852,"wgArticleId":43551,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with unsourced statements","Articles with unsourced statements from November 2012","Commons category template with no category set","Commons category with page title same as on Wikidata","Gemstones","Aluminium minerals","Oxide minerals","Superhard materials","Trigonal minerals","Corundum varieties"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Ruby","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgVectorEnabledModules":{"collapsiblenav":true,"expandablesearch":false,"footercleanup":true,"sectioneditlinks":false,"experiments":true},"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgArticleFeedbackv5Permissions":{"aft-reader":true,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,"aft-oversighter":false,"aft-noone":false},"wgVisualEditor":{"isPageWatched":false,"pageLanguageCode":"en","pageLanguageDir":"ltr","magnifyClipIconURL":"//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png"},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgULSAcceptLanguageList":[],"wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","Geo":{"city":"","country":""},"wgNoticeProject":"wikipedia","aftv5Article":{"id":43551,"title":"Ruby","namespace":0,"categories":["All articles with unsourced statements","Aluminium minerals","Articles with unsourced statements from November 2012","Commons category template with no category set","Commons category with page title same as on Wikidata","Corundum varieties","Gemstones","Oxide minerals","Superhard materials","Trigonal minerals"],"permissionLevel":false},"wgWikibaseItemId":"q43088"});
22
+ }</script><script>if(window.mw){
23
+ mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,
24
+ "watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"useeditwarning":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"aftv5-last-filter":null,"visualeditor-enable":1,"wikilove-enabled":1,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":false,"echo-subscriptions-web-reverted":true,
25
+ "echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-mySandbox":1});},{},{});mw.loader.implement(
26
+ "user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
27
+ /* cache key: enwiki:resourceloader:filter:minify-js:7:c0aacaeffbf379bb2fae23a527457dc0 */
28
+ }</script>
29
+ <script>if(window.mw){
30
+ mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","ext.vector.footerCleanup","ext.visualEditor.viewPageTarget.init","ext.wikimediaShopLink.core","ext.uls.init","ext.uls.interface","wikibase.client.init","ext.centralNotice.bannerController","skins.vector.js"]);
31
+ }</script>
32
+ <script src="//bits.wikimedia.org/geoiplookup"></script><link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.22wmf11/skins/vector/csshover.min.htc")}</style><![endif]--></head>
33
+ <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Ruby skin-vector action-view vector-animateLayout">
34
+ <div id="mw-page-base" class="noprint"></div>
35
+ <div id="mw-head-base" class="noprint"></div>
36
+ <div id="content" class="mw-body" role="main">
37
+ <a id="top"></a>
38
+ <div id="mw-js-message" style="display:none;"></div>
39
+ <div id="siteNotice"><!-- CentralNotice --></div>
40
+ <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">Ruby</span></h1>
41
+ <div id="bodyContent">
42
+ <div id="siteSub">From Wikipedia, the free encyclopedia</div>
43
+ <div id="contentSub"></div>
44
+ <div id="jump-to-nav" class="mw-jump">
45
+ Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
46
+ </div>
47
+ <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="dablink">This article is about the mineral or gem. For other uses, see <a href="/wiki/Ruby_(disambiguation)" title="Ruby (disambiguation)">Ruby (disambiguation)</a>.</div>
48
+ <table class="infobox" cellspacing="3" style="border-spacing:3px;width:22em;">
49
+ <tr>
50
+ <th colspan="2" style="text-align:center;font-size:125%;font-weight:bold;color:black; background-color:pink;">Ruby</th>
51
+ </tr>
52
+ <tr>
53
+ <td colspan="2" style="text-align:center;"><a href="/wiki/File:Ruby_-_Winza,_Tanzania.jpg" class="image"><img alt="Ruby - Winza, Tanzania.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/80/Ruby_-_Winza%2C_Tanzania.jpg/220px-Ruby_-_Winza%2C_Tanzania.jpg" width="220" height="293" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/80/Ruby_-_Winza%2C_Tanzania.jpg/330px-Ruby_-_Winza%2C_Tanzania.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/80/Ruby_-_Winza%2C_Tanzania.jpg/440px-Ruby_-_Winza%2C_Tanzania.jpg 2x" /></a><br />
54
+ <div>Natural ruby crystals from Winza, Tanzania</div>
55
+ </td>
56
+ </tr>
57
+ <tr>
58
+ <th colspan="2" style="text-align:center;color:black; background-color:pink;">General</th>
59
+ </tr>
60
+ <tr>
61
+ <th scope="row" style="text-align:left;">Category</th>
62
+ <td><a href="/wiki/Mineral" title="Mineral">Mineral</a> variety</td>
63
+ </tr>
64
+ <tr>
65
+ <th scope="row" style="text-align:left;"><a href="/wiki/Chemical_formula" title="Chemical formula">Formula</a><br />
66
+ <small>(repeating unit)</small></th>
67
+ <td><a href="/wiki/Aluminium_oxide" title="Aluminium oxide">aluminium oxide</a> with <a href="/wiki/Chromium" title="Chromium">chromium</a>, Al<sub>2</sub>O<sub>3</sub>:Cr</td>
68
+ </tr>
69
+ <tr>
70
+ <th colspan="2" style="text-align:center;color:black; background-color:pink;">Identification</th>
71
+ </tr>
72
+ <tr>
73
+ <th scope="row" style="text-align:left;">Color</th>
74
+ <td>Red, may be brownish, purplish, or pinkish</td>
75
+ </tr>
76
+ <tr>
77
+ <th scope="row" style="text-align:left;"><a href="/wiki/Crystal_habit" title="Crystal habit">Crystal habit</a></th>
78
+ <td>Varies with locality. Terminated tabular hexagonal prisms.</td>
79
+ </tr>
80
+ <tr>
81
+ <th scope="row" style="text-align:left;"><a href="/wiki/Crystal_system" title="Crystal system">Crystal system</a></th>
82
+ <td><a href="/wiki/Trigonal" title="Trigonal" class="mw-redirect">Trigonal</a> (Hexagonal Scalenohedral), symbol (−3 2/m), <a href="/wiki/Space_group" title="Space group">space group</a> R<span style="text-decoration:overline;">3</span>c</td>
83
+ </tr>
84
+ <tr>
85
+ <th scope="row" style="text-align:left;"><a href="/wiki/Cleavage_(crystal)" title="Cleavage (crystal)">Cleavage</a></th>
86
+ <td>No true cleavage</td>
87
+ </tr>
88
+ <tr>
89
+ <th scope="row" style="text-align:left;"><a href="/wiki/Fracture_(mineralogy)" title="Fracture (mineralogy)">Fracture</a></th>
90
+ <td>Uneven or conchoidal</td>
91
+ </tr>
92
+ <tr>
93
+ <th scope="row" style="text-align:left;"><a href="/wiki/Mohs_scale_of_mineral_hardness" title="Mohs scale of mineral hardness">Mohs scale</a> hardness</th>
94
+ <td>9.0</td>
95
+ </tr>
96
+ <tr>
97
+ <th scope="row" style="text-align:left;"><a href="/wiki/Lustre_(mineralogy)" title="Lustre (mineralogy)">Luster</a></th>
98
+ <td>Vitreous</td>
99
+ </tr>
100
+ <tr>
101
+ <th scope="row" style="text-align:left;"><a href="/wiki/Streak_(mineralogy)" title="Streak (mineralogy)">Streak</a></th>
102
+ <td>white</td>
103
+ </tr>
104
+ <tr>
105
+ <th scope="row" style="text-align:left;"><a href="/wiki/Transparency_and_translucency" title="Transparency and translucency">Diaphaneity</a></th>
106
+ <td>transparent</td>
107
+ </tr>
108
+ <tr>
109
+ <th scope="row" style="text-align:left;"><a href="/wiki/Specific_gravity" title="Specific gravity">Specific gravity</a></th>
110
+ <td>4.0</td>
111
+ </tr>
112
+ <tr>
113
+ <th scope="row" style="text-align:left;"><a href="/wiki/Refractive_index" title="Refractive index">Refractive index</a></th>
114
+ <td>n<sub>ω</sub>=1.768–1.772<br />
115
+ n<sub>ε</sub>=1.760–1.763</td>
116
+ </tr>
117
+ <tr>
118
+ <th scope="row" style="text-align:left;"><a href="/wiki/Birefringence" title="Birefringence">Birefringence</a></th>
119
+ <td>0.008</td>
120
+ </tr>
121
+ <tr>
122
+ <th scope="row" style="text-align:left;"><a href="/wiki/Pleochroism" title="Pleochroism">Pleochroism</a></th>
123
+ <td>Orangey red, purplish red</td>
124
+ </tr>
125
+ <tr>
126
+ <th scope="row" style="text-align:left;">Ultraviolet <a href="/wiki/Fluorescence" title="Fluorescence">fluorescence</a></th>
127
+ <td>red under longwave</td>
128
+ </tr>
129
+ <tr>
130
+ <th scope="row" style="text-align:left;"><a href="/wiki/Melting_point" title="Melting point">Melting point</a></th>
131
+ <td>2044 °C</td>
132
+ </tr>
133
+ <tr>
134
+ <th scope="row" style="text-align:left;"><a href="/wiki/Solubility" title="Solubility">Solubility</a></th>
135
+ <td>none</td>
136
+ </tr>
137
+ <tr>
138
+ <th colspan="2" style="text-align:center;color:black; background-color:pink;">Major varieties</th>
139
+ </tr>
140
+ <tr>
141
+ <th scope="row" style="text-align:left;"><a href="/wiki/Sapphire" title="Sapphire">Sapphire</a></th>
142
+ <td>Any color except shades of red</td>
143
+ </tr>
144
+ <tr>
145
+ <th scope="row" style="text-align:left;"><a href="/wiki/Corundum" title="Corundum">Corundum</a></th>
146
+ <td>various colors</td>
147
+ </tr>
148
+ <tr>
149
+ <th scope="row" style="text-align:left;"><a href="/wiki/Emery_(mineral)" title="Emery (mineral)">Emery</a></th>
150
+ <td>Granular</td>
151
+ </tr>
152
+ </table>
153
+ <p>A <b>ruby</b> is a pink to blood-red colored <a href="/wiki/Gemstone" title="Gemstone">gemstone</a>, a variety of the <a href="/wiki/Mineral" title="Mineral">mineral</a> <a href="/wiki/Corundum" title="Corundum">corundum</a> (<a href="/wiki/Aluminium_oxide" title="Aluminium oxide">aluminium oxide</a>). The red color is caused mainly by the presence of the element <a href="/wiki/Chromium" title="Chromium">chromium</a>. Its name comes from <i>ruber</i>, <a href="/wiki/Latin" title="Latin">Latin</a> for red. Other varieties of gem-quality corundum are called <a href="/wiki/Sapphire" title="Sapphire">sapphires</a>. The ruby is considered one of the four <a href="/wiki/Precious_stones" title="Precious stones" class="mw-redirect">precious stones</a>, together with the <a href="/wiki/Sapphire" title="Sapphire">sapphire</a>, the <a href="/wiki/Emerald" title="Emerald">emerald</a>, and the <a href="/wiki/Diamond" title="Diamond">diamond</a>.<sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup></p>
154
+ <p>Prices of rubies are primarily determined by color. The brightest and most valuable "red" called pigeon blood-red, commands a large premium over other rubies of similar quality. After color follows clarity: similar to diamonds, a clear stone will command a premium, but a ruby without any needle-like <a href="/wiki/Rutile" title="Rutile">rutile</a> inclusions may indicate that the stone has been treated. Cut and <a href="/wiki/Carat_(unit)" title="Carat (unit)" class="mw-redirect">carat</a> (weight) are also an important factor in determining the price.</p>
155
+ <div id="toc" class="toc">
156
+ <div id="toctitle">
157
+ <h2>Contents</h2>
158
+ </div>
159
+ <ul>
160
+ <li class="toclevel-1 tocsection-1"><a href="#Physical_properties"><span class="tocnumber">1</span> <span class="toctext">Physical properties</span></a>
161
+ <ul>
162
+ <li class="toclevel-2 tocsection-2"><a href="#Color"><span class="tocnumber">1.1</span> <span class="toctext">Color</span></a></li>
163
+ </ul>
164
+ </li>
165
+ <li class="toclevel-1 tocsection-3"><a href="#Natural_occurrence"><span class="tocnumber">2</span> <span class="toctext">Natural occurrence</span></a></li>
166
+ <li class="toclevel-1 tocsection-4"><a href="#Factors_affecting_value"><span class="tocnumber">3</span> <span class="toctext">Factors affecting value</span></a></li>
167
+ <li class="toclevel-1 tocsection-5"><a href="#Treatments_and_enhancements"><span class="tocnumber">4</span> <span class="toctext">Treatments and enhancements</span></a></li>
168
+ <li class="toclevel-1 tocsection-6"><a href="#Synthetic_and_imitation_rubies"><span class="tocnumber">5</span> <span class="toctext">Synthetic and imitation rubies</span></a></li>
169
+ <li class="toclevel-1 tocsection-7"><a href="#Records_and_famous_rubies"><span class="tocnumber">6</span> <span class="toctext">Records and famous rubies</span></a></li>
170
+ <li class="toclevel-1 tocsection-8"><a href="#Historical_and_cultural_references"><span class="tocnumber">7</span> <span class="toctext">Historical and cultural references</span></a></li>
171
+ <li class="toclevel-1 tocsection-9"><a href="#See_also"><span class="tocnumber">8</span> <span class="toctext">See also</span></a></li>
172
+ <li class="toclevel-1 tocsection-10"><a href="#References"><span class="tocnumber">9</span> <span class="toctext">References</span></a></li>
173
+ <li class="toclevel-1 tocsection-11"><a href="#External_links"><span class="tocnumber">10</span> <span class="toctext">External links</span></a></li>
174
+ </ul>
175
+ </div>
176
+ <h2><span class="mw-headline" id="Physical_properties">Physical properties</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=1" title="Edit section: Physical properties">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
177
+ <div class="thumb tleft">
178
+ <div class="thumbinner" style="width:222px;"><a href="/wiki/File:Corundum.GIF" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Corundum.GIF/220px-Corundum.GIF" width="220" height="189" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Corundum.GIF/330px-Corundum.GIF 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Corundum.GIF/440px-Corundum.GIF 2x" /></a>
179
+ <div class="thumbcaption">
180
+ <div class="magnify"><a href="/wiki/File:Corundum.GIF" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
181
+ Crystal structure of ruby</div>
182
+ </div>
183
+ </div>
184
+ <p>Rubies have a <a href="/wiki/Hardness" title="Hardness">hardness</a> of 9.0 on the <a href="/wiki/Mohs_scale_of_mineral_hardness" title="Mohs scale of mineral hardness">Mohs scale of mineral hardness</a>. Among the natural gems only <a href="/wiki/Moissanite" title="Moissanite">moissanite</a> and <a href="/wiki/Diamond" title="Diamond">diamond</a> are harder, with diamond having a Mohs hardness of 10.0 and moissonite falling somewhere in between corundum (ruby) and diamond in hardness. Ruby is α-alumina (the most stable form of Al<sub>2</sub>O<sub>3</sub>) in which a small fraction of the aluminium<sup>3+</sup> ions are replaced by chromium<sup>3+</sup> ions. Each Cr<sup>3+</sup> is surrounded octahedrally by six O<sup>2-</sup> ions. This crystallographic arrangement strongly affects each Cr<sup>3+</sup>, resulting in light absorption in the yellow-green region of the spectrum and thus in the red color of the gem. When yellow-green light is absorbed by Cr<sup>3+</sup>, it is re-emitted as red <a href="/wiki/Photoluminescence" title="Photoluminescence">luminescence</a>.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup> This red emission adds to the red color perceived by the subtraction of green and violet light from white light, and adds luster to the gem's appearance. When the optical arrangement is such that the emission is stimulated by 694-nanometer photons reflecting back and forth between two mirrors, the emission grows strongly in intensity. This effect was used by <a href="/wiki/Theodore_Maiman" title="Theodore Maiman">Theodore Maiman</a> in 1960 to make the first successful <a href="/wiki/Ruby_laser" title="Ruby laser">laser</a>, based on ruby.</p>
185
+ <p>All natural rubies have imperfections in them, including color impurities and inclusions of <a href="/wiki/Rutile" title="Rutile">rutile</a> needles known as "silk". Gemologists use these needle inclusions found in natural rubies to distinguish them from synthetics, simulants, or substitutes. Usually the rough stone is heated before cutting. Almost all rubies today are treated in some form, with heat treatment being the most common practice. However, rubies that are completely untreated but still of excellent quality command a large premium.</p>
186
+ <p>Some rubies show a three-point or six-point <a href="/wiki/Asterism_(gemmology)" title="Asterism (gemmology)" class="mw-redirect">asterism</a> or "star". These rubies are cut into <a href="/wiki/Cabochons" title="Cabochons" class="mw-redirect">cabochons</a> to display the effect properly. Asterisms are best visible with a single-light source, and move across the stone as the light moves or the stone is rotated. Such effects occur when light is reflected off the "silk" (the structurally oriented <a href="/wiki/Rutile" title="Rutile">rutile</a> needle inclusions) in a certain way. This is one example where inclusions increase the value of a gemstone. Furthermore, rubies can show color changes—though this occurs very rarely—as well as <a href="/wiki/Chatoyancy" title="Chatoyancy">chatoyancy</a> or the "cat's eye" effect.</p>
187
+ <h3><span class="mw-headline" id="Color">Color</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=2" title="Edit section: Color">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
188
+ <p>Generally, gemstone-quality corundum in all shades of red, including pink, are called rubies.<sup id="cite_ref-matlins_3-0" class="reference"><a href="#cite_note-matlins-3"><span>[</span>3<span>]</span></a></sup><sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup> However, in the United States, a minimum color saturation must be met to be called a ruby, otherwise the stone will be called a <i><a href="/wiki/Sapphire" title="Sapphire">pink sapphire</a></i>.<sup id="cite_ref-matlins_3-1" class="reference"><a href="#cite_note-matlins-3"><span>[</span>3<span>]</span></a></sup> This distinction between rubies and pink sapphires is relatively new, having arisen sometime in the 20th century. If a distinction is made, the line separating a ruby from a pink sapphire is not clear and highly debated.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup> As a result of the difficulty and subjectiveness of such distinctions, trade organizations such as the <a href="/w/index.php?title=International_Colored_Gemstone_Association&amp;action=edit&amp;redlink=1" class="new" title="International Colored Gemstone Association (page does not exist)">International Colored Gemstone Association</a> (<a href="/wiki/ICA" title="ICA">ICA</a>) have adopted the broader definition for ruby which encompasses its lighter shades, including pink.<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span>[</span>6<span>]</span></a></sup><sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span>[</span>7<span>]</span></a></sup></p>
189
+ <h2><span class="mw-headline" id="Natural_occurrence">Natural occurrence</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=3" title="Edit section: Natural occurrence">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
190
+ <p>The <a href="/wiki/Mogok" title="Mogok">Mogok</a> Valley in Upper <a href="/wiki/Myanmar" title="Myanmar" class="mw-redirect">Myanmar</a> (Burma) was for centuries the world's main source for rubies. That region has produced some of the finest rubies ever mined, but in recent years very few good rubies have been found there. The very best color in Myanmar rubies is sometimes described as "pigeon's blood." In central Myanmar, the area of Mong Hsu began producing rubies during the 1990s and rapidly became the world's main ruby mining area. The most recently found ruby deposit in Myanmar is in Namya (Namyazeik) located in the northern state of <a href="/wiki/Kachin_State" title="Kachin State">Kachin</a>.</p>
191
+ <p>Rubies have historically been mined in <a href="/wiki/Thailand" title="Thailand">Thailand</a>, the <a href="/wiki/Pailin" title="Pailin">Pailin</a> and <a href="/wiki/Samlout_District" title="Samlout District">Samlout District</a> of <a href="/wiki/Cambodia" title="Cambodia">Cambodia</a>, <a href="/wiki/Burma" title="Burma">Burma</a>, <a href="/wiki/India" title="India">India</a>, <a href="/wiki/Afghanistan" title="Afghanistan">Afghanistan</a> and in <a href="/wiki/Pakistan" title="Pakistan">Pakistan</a>. In <a href="/wiki/Sri_Lanka" title="Sri Lanka">Sri Lanka</a>, lighter shades of rubies (often "pink sapphires") are more commonly found. After the <a href="/wiki/Second_World_War" title="Second World War" class="mw-redirect">Second World War</a> ruby deposits were found in <a href="/wiki/Tanzania" title="Tanzania">Tanzania</a>, <a href="/wiki/Madagascar" title="Madagascar">Madagascar</a>, <a href="/wiki/Vietnam" title="Vietnam">Vietnam</a>, <a href="/wiki/Nepal" title="Nepal">Nepal</a>, <a href="/wiki/Tajikistan" title="Tajikistan">Tajikistan</a>, and <a href="/wiki/Pakistan" title="Pakistan">Pakistan</a>.</p>
192
+ <p>A few rubies have been found in the <a href="/wiki/U.S._state" title="U.S. state">U.S. states</a> of <a href="/wiki/Montana" title="Montana">Montana</a>, <a href="/wiki/North_Carolina" title="North Carolina">North Carolina</a>, <a href="/wiki/South_Carolina" title="South Carolina">South Carolina</a> and <a href="/wiki/Wyoming" title="Wyoming">Wyoming</a>. While searching for aluminous schists in Wyoming, geologist <a href="/wiki/Dan_Hausel" title="Dan Hausel">Dan Hausel</a> noted an association of <a href="/wiki/Vermiculite" title="Vermiculite">vermiculite</a> with ruby and sapphire and located six previously undocumented deposits.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup></p>
193
+ <p>More recently, <a href="/wiki/Greenland_Ruby" title="Greenland Ruby" class="mw-redirect">large ruby deposits</a> have been found under the receding ice shelf of <a href="/wiki/Greenland" title="Greenland">Greenland</a>.</p>
194
+ <p><a href="/wiki/Republic_of_Macedonia" title="Republic of Macedonia">Republic of Macedonia</a> is the only country in mainland Europe to have naturally occurring rubies. They can mainly be found around the city of <a href="/wiki/Prilep" title="Prilep">Prilep</a>. Macedonian ruby has a unique raspberry color.</p>
195
+ <p>In 2002 rubies were found in the <a href="/wiki/Waseges_River" title="Waseges River">Waseges River</a> area of <a href="/wiki/Kenya" title="Kenya">Kenya</a>. There are reports of a large deposit of rubies found in 2009 in <a href="/wiki/Mozambique" title="Mozambique">Mozambique</a>, in <a href="/w/index.php?title=Nanhumbir&amp;action=edit&amp;redlink=1" class="new" title="Nanhumbir (page does not exist)">Nanhumbir</a> in the <a href="/wiki/Cabo_Delgado_Province" title="Cabo Delgado Province">Cabo Delgado</a> district of <a href="/wiki/Montepuez" title="Montepuez">Montepuez</a>.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>9<span>]</span></a></sup></p>
196
+ <p><a href="/wiki/Spinel" title="Spinel">Spinel</a>, another red gemstone, is sometimes found along with rubies in the same gem gravel or marble. Red spinel may be mistaken for ruby by those lacking experience with gems. However, the finest red spinels can have a value approaching that of the average ruby.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span>[</span>10<span>]</span></a></sup> The color of rubies varies from vermilion to red. The most desired color is "pigeon's blood", which is pure red with a hint of blue. If the color is too pink, the stone is a pink sapphire. The same is true if it is too violet – it is a violet sapphire. The best rubies and star rubies are bright red. Most rubies come from Burma and Thailand.</p>
197
+ <h2><span class="mw-headline" id="Factors_affecting_value">Factors affecting value</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=4" title="Edit section: Factors affecting value">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
198
+ <p>Diamonds are graded using criteria that have become known as the four Cs, namely color, cut, clarity and carat weight. Similarly natural rubies can be evaluated using the four Cs together with their size and geographic origin.</p>
199
+ <p><b>Color:</b> In the evaluation of colored gemstones, color is the single most important factor. Color divides into three components; <i>hue</i>, <i>saturation</i> and <i>tone</i>. Hue refers to "color" as we normally use the term. Transparent gemstones occur in the following primary hues: red, orange, yellow, green, blue, violet. These are known as <i>pure spectral hues</i>.<sup id="cite_ref-wise_11-0" class="reference"><a href="#cite_note-wise-11"><span>[</span>11<span>]</span></a></sup> In nature there are rarely pure hues so when speaking of the hue of a gemstone we speak of primary and secondary and sometimes tertiary hues. In ruby the primary hue must be red. All other hues of the gem species corundum are called sapphire. Ruby may exhibit a range of secondary hues. Orange, purple, violet and pink are possible.</p>
200
+ <ul class="gallery">
201
+ <li class="gallerybox" style="width: 195px">
202
+ <div style="width: 195px">
203
+ <div class="thumb" style="width: 190px;">
204
+ <div style="margin:15px auto;"><a href="/wiki/File:Ruby_cristal.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Ruby_cristal.jpg/100px-Ruby_cristal.jpg" width="100" height="140" /></a></div>
205
+ </div>
206
+ <div class="gallerytext">
207
+ <p>A naturally occurring ruby crystal</p>
208
+ </div>
209
+ </div>
210
+ </li>
211
+ <li class="gallerybox" style="width: 195px">
212
+ <div style="width: 195px">
213
+ <div class="thumb" style="width: 190px;">
214
+ <div style="margin:16px auto;"><a href="/wiki/File:Ruby_gem.JPG" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Ruby_gem.JPG/160px-Ruby_gem.JPG" width="160" height="138" /></a></div>
215
+ </div>
216
+ <div class="gallerytext">
217
+ <p>Natural ruby with inclusions</p>
218
+ </div>
219
+ </div>
220
+ </li>
221
+ <li class="gallerybox" style="width: 195px">
222
+ <div style="width: 195px">
223
+ <div class="thumb" style="width: 190px;">
224
+ <div style="margin:19.5px auto;"><a href="/wiki/File:Ruby_and_diamond_bracelet.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Ruby_and_diamond_bracelet.jpg/160px-Ruby_and_diamond_bracelet.jpg" width="160" height="131" /></a></div>
225
+ </div>
226
+ <div class="gallerytext">
227
+ <p>Rubies set in jewelry</p>
228
+ </div>
229
+ </div>
230
+ </li>
231
+ <li class="gallerybox" style="width: 195px">
232
+ <div style="width: 195px">
233
+ <div class="thumb" style="width: 190px;">
234
+ <div style="margin:15px auto;"><a href="/wiki/File:Cut_Ruby.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Cut_Ruby.jpg/158px-Cut_Ruby.jpg" width="158" height="140" /></a></div>
235
+ </div>
236
+ <div class="gallerytext">
237
+ <p>A cut ruby</p>
238
+ </div>
239
+ </div>
240
+ </li>
241
+ </ul>
242
+ <p>The finest ruby is best described as being a vivid medium-dark toned red. Secondary hues add an additional complication. Pink, orange, and purple are the normal secondary hues in ruby. Of the three, purple is preferred because, firstly, the purple reinforces the red making it appear richer.<sup id="cite_ref-wise_11-1" class="reference"><a href="#cite_note-wise-11"><span>[</span>11<span>]</span></a></sup> Secondly, purple occupies a position on the color wheel halfway between red and blue. In Burma where the term pigeon blood originated, rubies are set in pure gold. Pure gold is itself a highly saturated yellow. Set a purplish-red ruby in yellow and the yellow neutralizes its complement blue leaving the stone appearing to be pure red in the setting.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (November 2012)">citation needed</span></a></i>]</sup></p>
243
+ <h2><span class="mw-headline" id="Treatments_and_enhancements">Treatments and enhancements</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=5" title="Edit section: Treatments and enhancements">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
244
+ <p>Improving the quality of gemstones by treating them is common practice. Some treatments are used in almost all cases and are therefore considered acceptable. During the late 1990s, a large supply of low-cost materials caused a sudden surge in supply of heat-treated rubies, leading to a downward pressure on ruby prices.</p>
245
+ <p>Improvements used include color alteration, improving transparency by dissolving rutile inclusions, healing of fractures (cracks) or even completely filling them.</p>
246
+ <p>The most common treatment is the application of heat. Most, if not all, rubies at the lower end of the market are heat treated on the rough stones to improve color, remove <i>purple tinge</i>, blue patches and silk. These heat treatments typically occur around temperatures of 1800 °C (3300 °F).<sup id="cite_ref-ThemelisRubyHeat_12-0" class="reference"><a href="#cite_note-ThemelisRubyHeat-12"><span>[</span>12<span>]</span></a></sup> Some rubies undergo a process of low tube heat, when the stone is heated over charcoal of a temperature of about 1300 °C (2400 °F) for 20 to 30 minutes. The silk is only partially broken as the color is improved.</p>
247
+ <p>Another treatment, which has become more frequent in recent years, is lead glass filling. Filling the fractures inside the ruby with <a href="/wiki/Lead_glass" title="Lead glass">lead glass</a> (or a similar material) dramatically improves the transparency of the stone, making previously unsuitable rubies fit for applications in jewelry.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>13<span>]</span></a></sup> The process is done in four steps:</p>
248
+ <ol>
249
+ <li>The rough stones are pre-polished to eradicate all surface impurities that may affect the process</li>
250
+ <li>The rough is cleaned with <a href="/wiki/Hydrogen_fluoride" title="Hydrogen fluoride">hydrogen fluoride</a></li>
251
+ <li>The first heating process during which no fillers are added. The heating process eradicates impurities inside the fractures. Although this can be done at temperatures up to 1400 °C (2500 °F) it most likely occurs at a temperature of around 900 °C (1600 °F) since the rutile silk is still intact.</li>
252
+ <li>The second heating process in an electrical oven with different chemical additives. Different solutions and mixes have shown to be successful, however mostly lead-containing glass-powder is used at present. The ruby is dipped into oils, then covered with powder, embedded on a tile and placed in the oven where it is heated at around 900 °C (1600 °F) for one hour in an oxidizing atmosphere. The orange colored powder transforms upon heating into a transparent to yellow-colored paste, which fills all fractures. After cooling the color of the paste is fully transparent and dramatically improves the overall transparency of the ruby.<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span>[</span>14<span>]</span></a></sup></li>
253
+ </ol>
254
+ <p>If a color needs to be added, the glass powder can be "enhanced" with copper or other metal oxides as well as elements such as sodium, calcium, potassium etc.</p>
255
+ <p>The second heating process can be repeated three to four times, even applying different mixtures.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span>[</span>15<span>]</span></a></sup> When jewelry containing rubies is heated (for repairs) it should not be coated with boracic acid or any other substance, as this can etch the surface; it does not have to be "protected" like a diamond.</p>
256
+ <p>The treatment can easily be determined using a 10x loupe and determination focuses on finding bubbles either in the cavities or in the fractures that were filled with glass.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span>[</span>16<span>]</span></a></sup></p>
257
+ <h2><span class="mw-headline" id="Synthetic_and_imitation_rubies">Synthetic and imitation rubies</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=6" title="Edit section: Synthetic and imitation rubies">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
258
+ <div class="thumb tright" style="width: 212px;">
259
+ <div class="thumbinner">
260
+ <div style="margin: 1px; width: 202px">
261
+ <div class="thumbimage"><a href="/wiki/File:Artificial_ruby_hemisphere_under_a_normal_light.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/46/Artificial_ruby_hemisphere_under_a_normal_light.jpg/200px-Artificial_ruby_hemisphere_under_a_normal_light.jpg" width="200" height="133" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/46/Artificial_ruby_hemisphere_under_a_normal_light.jpg/300px-Artificial_ruby_hemisphere_under_a_normal_light.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/46/Artificial_ruby_hemisphere_under_a_normal_light.jpg/400px-Artificial_ruby_hemisphere_under_a_normal_light.jpg 2x" /></a></div>
262
+ </div>
263
+ <div style="margin: 1px; width: 202px">
264
+ <div class="thumbimage"><a href="/wiki/File:Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg/200px-Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg" width="200" height="133" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg/300px-Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/38/Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg/400px-Artificial_ruby_hemisphere_under_a_monochromatic_light.jpg 2x" /></a></div>
265
+ <div class="thumbcaption" style="clear:left">Artificial ruby under a normal light (top) and under a green laser light (bottom). Red light is emitted</div>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ <p>In 1837 Gaudin made the first synthetic rubies by fusing potash <a href="/wiki/Alum" title="Alum">alum</a> at a high temperature with a little chromium as a pigment. In 1847 <a href="/wiki/Jacques-Joseph_Ebelmen" title="Jacques-Joseph Ebelmen">Ebelmen</a> made white sapphire by fusing <a href="/wiki/Alumina" title="Alumina" class="mw-redirect">alumina</a> in boric acid. In 1877 Frenic and Freil made crystal <a href="/wiki/Corundum" title="Corundum">corundum</a> from which small stones could be cut. Frimy and <a href="/wiki/Auguste_Verneuil" title="Auguste Verneuil" class="mw-redirect">Auguste Verneuil</a> manufactured artificial ruby by fusing BaF<sub>2</sub> and Al<sub>2</sub>O<sub>3</sub> with a little chromium at <a href="/wiki/Incandescence" title="Incandescence">red heat</a>. In 1903 Verneuil announced he could produce synthetic rubies on a commercial scale using this <a href="/wiki/Flame_fusion" title="Flame fusion" class="mw-redirect">flame fusion</a> process.<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>17<span>]</span></a></sup> By 1910, Verneuil's laboratory had expanded into a 30 furnace production facility, with annual gemstone production having reached 1,000 kilograms (2,000&#160;lb) in 1907.</p>
270
+ <p>Other processes in which synthetic rubies can be produced are through Czochralski's <a href="/wiki/Czochralski_process" title="Czochralski process">pulling process</a>, flux process, and the <a href="/wiki/Hydrothermal_synthesis" title="Hydrothermal synthesis">hydrothermal process</a>. Most synthetic rubies originate from flame fusion, due to the low costs involved. Synthetic rubies may have no imperfections visible to the naked eye but magnification may reveal curves, <a href="/wiki/Striae" title="Striae" class="mw-redirect">striae</a> and gas bubbles. The fewer the number and the less obvious the imperfections, the more valuable the ruby is; unless there are no imperfections (i.e., a "perfect" ruby), in which case it will be suspected of being artificial. <a href="/wiki/Dopant" title="Dopant">Dopants</a> are added to some manufactured rubies so they can be identified as synthetic, but most need <a href="/wiki/Gemology" title="Gemology">gemological</a> testing to determine their origin.</p>
271
+ <p>Synthetic rubies have technological uses as well as gemological ones. Rods of synthetic ruby are used to make <a href="/wiki/Ruby_laser" title="Ruby laser">ruby lasers</a> and <a href="/wiki/Maser" title="Maser">masers</a>. The first working laser was made by <a href="/wiki/Theodore_Maiman" title="Theodore Maiman">Theodore H. Maiman</a> in 1960<sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>18<span>]</span></a></sup> at <a href="/wiki/Hughes_Research_Laboratories" title="Hughes Research Laboratories" class="mw-redirect">Hughes Research Laboratories</a> in <a href="/wiki/Malibu,_California" title="Malibu, California">Malibu, California</a>, beating several research teams including those of <a href="/wiki/Charles_H._Townes" title="Charles H. Townes" class="mw-redirect">Charles H. Townes</a> at <a href="/wiki/Columbia_University" title="Columbia University">Columbia University</a>, <a href="/wiki/Arthur_L._Schawlow" title="Arthur L. Schawlow" class="mw-redirect">Arthur Schawlow</a> at <a href="/wiki/Bell_Labs" title="Bell Labs">Bell Labs</a>,<sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span>[</span>19<span>]</span></a></sup> and Gould at a company called TRG (Technical Research Group). Maiman used a solid-state light-pumped synthetic ruby to produce red laser light at a wavelength of 694 nanometers (nm). Ruby lasers are still in use. Rubies are also used in applications where high hardness is required such as at wear exposed locations in modern mechanical clockworks, or as scanning probe tips in a <a href="/wiki/Coordinate_measuring_machine" title="Coordinate measuring machine" class="mw-redirect">coordinate measuring machine</a>.</p>
272
+ <p><a href="/wiki/Imitation" title="Imitation">Imitation</a> rubies are also marketed. Red <a href="/wiki/Spinel" title="Spinel">spinels</a>, red <a href="/wiki/Garnet" title="Garnet">garnets</a>, and colored glass have been falsely claimed to be rubies. Imitations go back to Roman times and already in the 17th century techniques were developed to color foil red—by burning scarlet wool in the bottom part of the furnace—which was then placed under the imitation stone.<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span>[</span>20<span>]</span></a></sup> Trade terms such as <a href="/wiki/Balas_ruby" title="Balas ruby" class="mw-redirect">balas ruby</a> for red spinel and <a href="/wiki/Rubellite" title="Rubellite" class="mw-redirect">rubellite</a> for red <a href="/wiki/Tourmaline" title="Tourmaline">tourmaline</a> can mislead unsuspecting buyers. Such terms are therefore discouraged from use by many gemological associations such as the Laboratory Manual Harmonisation Committee (LMHC).</p>
273
+ <h2><span class="mw-headline" id="Records_and_famous_rubies">Records and famous rubies</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=7" title="Edit section: Records and famous rubies">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
274
+ <div class="thumb tright">
275
+ <div class="thumbinner" style="width:222px;"><a href="/wiki/File:NMNH-Rubies-CroppedRotated.png" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/12/NMNH-Rubies-CroppedRotated.png/220px-NMNH-Rubies-CroppedRotated.png" width="220" height="105" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/12/NMNH-Rubies-CroppedRotated.png/330px-NMNH-Rubies-CroppedRotated.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/12/NMNH-Rubies-CroppedRotated.png/440px-NMNH-Rubies-CroppedRotated.png 2x" /></a>
276
+ <div class="thumbcaption">
277
+ <div class="magnify"><a href="/wiki/File:NMNH-Rubies-CroppedRotated.png" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
278
+ Rubies at the <a href="/wiki/National_Museum_of_Natural_History" title="National Museum of Natural History">National Museum of Natural History</a>, <a href="/wiki/Washington,_D.C." title="Washington, D.C.">Washington, D.C.</a>, USA</div>
279
+ </div>
280
+ </div>
281
+ <ul>
282
+ <li>The Smithsonian's <a href="/wiki/National_Museum_of_Natural_History" title="National Museum of Natural History">National Museum of Natural History</a> in Washington, D.C. has received one of the world's largest and finest ruby gemstones. The 23.1 carats (4.6&#160;g) Burmese ruby, set in a platinum ring with diamonds, was donated by businessman and philanthropist <a href="/wiki/Peter_Buck_(restaurateur)" title="Peter Buck (restaurateur)">Peter Buck</a> in memory of his late wife Carmen Lúcia. This gemstone displays a richly saturated red color combined with an exceptional transparency. The finely proportioned cut provides vivid red reflections. The stone was mined from the <a href="/wiki/Mogok" title="Mogok">Mogok</a> region of <a href="/wiki/Burma" title="Burma">Burma</a> (now <a href="/wiki/Myanmar" title="Myanmar" class="mw-redirect">Myanmar</a>) in the 1930s.<sup id="cite_ref-21" class="reference"><a href="#cite_note-21"><span>[</span>21<span>]</span></a></sup></li>
283
+ <li>In 2007 the London jeweler <a href="/wiki/Garrard_%26_Co" title="Garrard &amp; Co">Garrard &amp; Co</a> featured on their website a heart-shaped 40.63-carat ruby.<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span>[</span>22<span>]</span></a></sup></li>
284
+ <li>On December 13/14, 2011 <a href="/wiki/Elizabeth_Taylor" title="Elizabeth Taylor">Elizabeth Taylor</a>'s complete jewellery collection was auctioned by <a href="/wiki/Christie%27s" title="Christie's">Christie's</a>. Several ruby-set pieces were included in the sale, notably a ring set with an 8.24 ct gem that broke the 'price-per-carat' record for rubies ($512,925 per carat, i.e. over $4.2 million in total),<sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span>[</span>23<span>]</span></a></sup> and a necklace<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span>[</span>24<span>]</span></a></sup> that sold for over $3.7 million.</li>
285
+ <li>The <a href="/wiki/Liberty_Bell_Ruby" title="Liberty Bell Ruby">Liberty Bell Ruby</a> is the largest mined ruby in the world. It was stolen in a heist in 2011.<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>25<span>]</span></a></sup></li>
286
+ </ul>
287
+ <h2><span class="mw-headline" id="Historical_and_cultural_references">Historical and cultural references</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=8" title="Edit section: Historical and cultural references">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
288
+ <ul>
289
+ <li>An early recorded transport and trading of rubies arises in the literature on the <a href="/wiki/North_Silk_Road" title="North Silk Road" class="mw-redirect">North Silk Road</a> of China, wherein about 200 <a href="/wiki/Before_Christ" title="Before Christ" class="mw-redirect">BC</a> rubies were carried along this ancient <a href="/wiki/Trackway" title="Trackway">trackway</a> moving westward from China.<sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span>[</span>26<span>]</span></a></sup></li>
290
+ <li>Rubies have always been held in high esteem in Asian countries. They were used to ornament armor, scabbards, and harnesses of noblemen in India and China. Rubies were laid beneath the foundation of buildings to secure good fortune to the structure.<sup id="cite_ref-smith_27-0" class="reference"><a href="#cite_note-smith-27"><span>[</span>27<span>]</span></a></sup></li>
291
+ </ul>
292
+ <h2><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=9" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
293
+ <ul>
294
+ <li><a href="/wiki/List_of_minerals" title="List of minerals">List of minerals</a></li>
295
+ <li><a href="/wiki/Verneuil_process" title="Verneuil process">Verneuil process</a></li>
296
+ </ul>
297
+ <h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=10" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
298
+ <div class="reflist references-column-width" style="-moz-column-width: 30em; -webkit-column-width: 30em; column-width: 30em; list-style-type: decimal;">
299
+ <ol class="references">
300
+ <li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.co.uk/books?id=crc7ZtRHItgC&amp;pg=PA1&amp;dq=types+of+precious+stone&amp;as_brr=3&amp;ei=WBW1SvaHLYn4zASD9uT8Dg#v=onepage&amp;q=types%20of%20precious%20stone&amp;f=false"><i>Precious Stones</i></a>, Max Bauer, p. 2</span></li>
301
+ <li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.webexhibits.org/causesofcolor/6AA.html">"Ruby: causes of color"</a><span class="reference-accessdate">. Retrieved 15 may 2009</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.btitle=Ruby%3A+causes+of+color&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.webexhibits.org%2Fcausesofcolor%2F6AA.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
302
+ <li id="cite_note-matlins-3"><span class="mw-cite-backlink">^ <a href="#cite_ref-matlins_3-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-matlins_3-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation book">Matlins, Antoinette Leonard (2010). <a rel="nofollow" class="external text" href="http://books.google.com/books?id=4UANp6MCTSQC"><i>Colored Gemstones</i></a>. Gemstone Press. p.&#160;203. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-943763-72-X" title="Special:BookSources/0-943763-72-X">0-943763-72-X</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=Antoinette+Leonard&amp;rft.aulast=Matlins&amp;rft.au=Matlins%2C+Antoinette+Leonard&amp;rft.btitle=Colored+Gemstones&amp;rft.date=2010&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fbooks.google.com%2Fbooks%3Fid%3D4UANp6MCTSQC&amp;rft.isbn=0-943763-72-X&amp;rft.pages=203&amp;rft.pub=Gemstone+Press&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
303
+ <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><span class="citation book">Reed, Peter (1991). <a rel="nofollow" class="external text" href="http://books.google.com/books?id=t-OQO3Wk-JsC"><i>Gemmology</i></a>. Butterworth-Heinemann. p.&#160;337. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-7506-6449-5" title="Special:BookSources/0-7506-6449-5">0-7506-6449-5</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=Peter&amp;rft.aulast=Reed&amp;rft.au=Reed%2C+Peter&amp;rft.btitle=Gemmology&amp;rft.date=1991&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fbooks.google.com%2Fbooks%3Fid%3Dt-OQO3Wk-JsC&amp;rft.isbn=0-7506-6449-5&amp;rft.pages=337&amp;rft.pub=Butterworth-Heinemann&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
304
+ <li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><span class="citation web">Wise, Richard G. <a rel="nofollow" class="external text" href="http://www.secretsofthegemtrade.com/articles_5_2.htm">"Gemstone Connoisseurship; The Finer Points, Part II"</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=Richard+G&amp;rft.aulast=Wise&amp;rft.au=Wise%2C+Richard+G&amp;rft.btitle=Gemstone+Connoisseurship%3B+The+Finer+Points%2C+Part+II&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.secretsofthegemtrade.com%2Farticles_5_2.htm&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
305
+ <li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><span class="citation web">Hughes, Richard W. <a rel="nofollow" class="external text" href="http://www.ruby-sapphire.com/ruby_sapphire_borders.htm">"Walking the line in ruby &amp; sapphire"</a>. ruby-sapphire.com.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=Richard+W.&amp;rft.au=Hughes%2C+Richard+W.&amp;rft.aulast=Hughes&amp;rft.btitle=Walking+the+line+in+ruby+%26+sapphire&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.ruby-sapphire.com%2Fruby_sapphire_borders.htm&amp;rft.pub=ruby-sapphire.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
306
+ <li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><span class="citation web">Federman, David. <a rel="nofollow" class="external text" href="http://www.modernjeweler.com/web/online/Colored-Gemstone-Gem-Profiles/Pink-Sapphire/1$530">"Pink Sapphire"</a>. Modern Jeweler.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.au=Federman%2C+David&amp;rft.aufirst=David&amp;rft.aulast=Federman&amp;rft.btitle=Pink+Sapphire&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.modernjeweler.com%2Fweb%2Fonline%2FColored-Gemstone-Gem-Profiles%2FPink-Sapphire%2F1%24530&amp;rft.pub=Modern+Jeweler&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
307
+ <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><span class="citation book">Hausel, W. Dan (2009). <i>Gems, Minerals and Rocks of Wyoming</i>. Book Surge. p.&#160;176. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/1-4392-1856-0" title="Special:BookSources/1-4392-1856-0">1-4392-1856-0</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=W.+Dan&amp;rft.au=Hausel%2C+W.+Dan&amp;rft.aulast=Hausel&amp;rft.btitle=Gems%2C+Minerals+and+Rocks+of+Wyoming&amp;rft.date=2009&amp;rft.genre=book&amp;rft.isbn=1-4392-1856-0&amp;rft.pages=176&amp;rft.pub=Book+Surge&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
308
+ <li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://allafrica.com/stories/201011050270.html">Mozambique: Police Seize Boat With 96 Illegal Immigrants</a>. AllAfrica. 4 November 2010</span></li>
309
+ <li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><span class="citation book">Wenk, Hans-Rudolf; Bulakh, A. G. (2004). <a rel="nofollow" class="external text" href="http://books.google.com/?id=0GAvKQJ2JuwC&amp;pg=RA1-PA541"><i>Minerals: their constitution and origin</i></a>. Cambridge, U.K.: Cambridge University Press. pp.&#160;539–541. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-521-52958-1" title="Special:BookSources/0-521-52958-1">0-521-52958-1</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aulast=Wenk%2C+Hans-Rudolf%3B+Bulakh%2C+A.+G.&amp;rft.au=Wenk%2C+Hans-Rudolf%3B+Bulakh%2C+A.+G.&amp;rft.btitle=Minerals%3A+their+constitution+and+origin&amp;rft.date=2004&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fbooks.google.com%2F%3Fid%3D0GAvKQJ2JuwC%26pg%3DRA1-PA541&amp;rft.isbn=0-521-52958-1&amp;rft.pages=539%E2%80%93541&amp;rft.place=Cambridge%2C+U.K.&amp;rft.pub=Cambridge+University+Press&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
310
+ <li id="cite_note-wise-11"><span class="mw-cite-backlink">^ <a href="#cite_ref-wise_11-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-wise_11-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation book">Wise, Richard W. (2006). <i>Secrets Of The Gem Trade, The Connoisseur's Guide To Precious Gemstones</i>. Brunswick House Press. pp.&#160;18–22. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-9728223-8-0" title="Special:BookSources/0-9728223-8-0">0-9728223-8-0</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aulast=Wise%2C+Richard+W.&amp;rft.au=Wise%2C+Richard+W.&amp;rft.btitle=Secrets+Of+The+Gem+Trade%2C+The+Connoisseur%27s+Guide+To+Precious+Gemstones&amp;rft.date=2006&amp;rft.genre=book&amp;rft.isbn=0-9728223-8-0&amp;rft.pages=18%E2%80%9322&amp;rft.pub=Brunswick+House+Press&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
311
+ <li id="cite_note-ThemelisRubyHeat-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-ThemelisRubyHeat_12-0">^</a></b></span> <span class="reference-text"><span class="citation book"><i>The Heat Treatment of Ruby and Sapphire</i>. Bangkok, Thailand: Gemlab Inc. 1992. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0940965100" title="Special:BookSources/0940965100">0940965100</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.btitle=The+Heat+Treatment+of+Ruby+and+Sapphire&amp;rft.date=1992&amp;rft.genre=book&amp;rft.isbn=0940965100&amp;rft.place=Bangkok%2C+Thailand&amp;rft.pub=Gemlab+Inc.&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
312
+ <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text">Vincent Pardieu <a rel="nofollow" class="external text" href="http://www.fieldgemology.org/Ruby_lead_glass_treatment.pdf">Lead Glass Filled/Repaired Rubies</a>. Asian Institute of Gemological Sciences Gem Testing Laboratory. February 2005</span></li>
313
+ <li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text">Richard W. Hughes (1997), <i>Ruby &amp; Sapphire,</i> Boulder, CO, RWH Publishing, <a href="/wiki/Special:BookSources/9780964509764" class="internal mw-magiclink-isbn">ISBN 978-0-9645097-6-4</a></span></li>
314
+ <li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><span class="citation journal">Milisenda, C C (2005). "Rubine mit bleihaltigen Glasern gefullt". <i>Zeitschrift der Deutschen Gemmologischen Gesellschaft</i> (in German) (Deutschen Gemmologischen Gesellschaft) <b>54</b> (1): 35–41.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.atitle=Rubine+mit+bleihaltigen+Glasern+gefullt&amp;rft.aufirst=C+C&amp;rft.aulast=Milisenda&amp;rft.au=Milisenda%2C+C+C&amp;rft.date=2005&amp;rft.genre=article&amp;rft.issue=1&amp;rft.jtitle=Zeitschrift+der+Deutschen+Gemmologischen+Gesellschaft&amp;rft.pages=35%E2%80%9341&amp;rft.pub=Deutschen+Gemmologischen+Gesellschaft&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.volume=54" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
315
+ <li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><span class="citation journal"><a rel="nofollow" class="external text" href="http://www.gia.edu/research-resources/news-from-research/gia-global-dispatch/index.html">"Lead Glass-Filled Rubies"</a>. <i>GIA Global Dispatch</i> (Gemological Institute of America). 2012.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.atitle=Lead+Glass-Filled+Rubies&amp;rft.date=2012&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.gia.edu%2Fresearch-resources%2Fnews-from-research%2Fgia-global-dispatch%2Findex.html&amp;rft.jtitle=GIA+Global+Dispatch&amp;rft.pub=Gemological+Institute+of+America&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
316
+ <li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.farlang.com/gemstones/bahadur_handbook_of_precious_stones/page_067">"Bahadur: a Handbook of Precious Stones"</a>. 1943<span class="reference-accessdate">. Retrieved 2007-08-19</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.btitle=Bahadur%3A+a+Handbook+of+Precious+Stones&amp;rft.date=1943&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.farlang.com%2Fgemstones%2Fbahadur_handbook_of_precious_stones%2Fpage_067&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
317
+ <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><span class="citation journal"><a href="/wiki/Theodore_Harold_Maiman" title="Theodore Harold Maiman" class="mw-redirect">Maiman, T.H.</a> (1960). "Stimulated optical radiation in ruby". <i>Nature</i> <b>187</b> (4736): 493–494. <a href="/wiki/Bibcode" title="Bibcode">Bibcode</a>:<a rel="nofollow" class="external text" href="http://adsabs.harvard.edu/abs/1960Natur.187..493M">1960Natur.187..493M</a>. <a href="/wiki/Digital_object_identifier" title="Digital object identifier">doi</a>:<a rel="nofollow" class="external text" href="http://dx.doi.org/10.1038%2F187493a0">10.1038/187493a0</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.atitle=Stimulated+optical+radiation+in+ruby&amp;rft.aufirst=T.H.&amp;rft.aulast=Maiman&amp;rft.au=Maiman%2C+T.H.&amp;rft.date=1960&amp;rft.genre=article&amp;rft_id=info%3Abibcode%2F1960Natur.187..493M&amp;rft_id=info%3Adoi%2F10.1038%2F187493a0&amp;rft.issue=4736&amp;rft.jtitle=Nature&amp;rft.pages=493%E2%80%93494&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.volume=187" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
318
+ <li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text"><span class="citation book">Hecht, Jeff (2005). <i>Beam: The Race to Make the Laser</i>. Oxford University Press. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/0-19-514210-1" title="Special:BookSources/0-19-514210-1">0-19-514210-1</a>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.aufirst=Jeff&amp;rft.au=Hecht%2C+Jeff&amp;rft.aulast=Hecht&amp;rft.btitle=Beam%3A+The+Race+to+Make+the+Laser&amp;rft.date=2005&amp;rft.genre=book&amp;rft.isbn=0-19-514210-1&amp;rft.pub=Oxford+University+Press&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
319
+ <li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.farlang.com/gemstones/nicols-history-gemstones/page_036">"Thomas Nicols: A Lapidary or History of Gemstones"</a>. 1652<span class="reference-accessdate">. Retrieved 2007-08-19</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.btitle=Thomas+Nicols%3A+A+Lapidary+or+History+of+Gemstones&amp;rft.date=1652&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.farlang.com%2Fgemstones%2Fnicols-history-gemstones%2Fpage_036&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
320
+ <li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.mnh.si.edu/exhibits/ruby/index.htm">"The Carmen Lúcia Ruby"</a>. <i>Exhibitions</i><span class="reference-accessdate">. Retrieved 2008-02-28</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.atitle=The+Carmen+L%C3%BAcia+Ruby&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.mnh.si.edu%2Fexhibits%2Fruby%2Findex.htm&amp;rft.jtitle=Exhibitions&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
321
+ <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.garrard.com/treasures/">"Garrards – Treasures (large and important jewelry pieces)"</a><span class="reference-accessdate">. Retrieved 2010-11-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.btitle=Garrards+%E2%80%93+Treasures+%28large+and+important+jewelry+pieces%29&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.garrard.com%2Ftreasures%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
322
+ <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.christies.com/about/press-center/releases/pressrelease.aspx?pressreleaseid=5294">The Legendary Jewels, Evening Sale &amp; Jewelry (Sessions II and III) | Press Release | Christie's</a>. Christies.com (2011-12-14). Retrieved on 2012-07-11.</span></li>
323
+ <li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://news.yahoo.com/photos/elizabeth-taylors-ruby-diamond-necklace-gift-mike-todd-photo-101745840.html">Elizabeth Taylor's ruby and diamond necklace</a>. News.yahoo.com (2011-09-07). Retrieved on 2012-07-11.</span></li>
324
+ <li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://philadelphia.cbslocal.com/2012/01/09/irreplaceable-2-million-ruby-stolen-in-wilmington-jewelry-heist/">http://philadelphia.cbslocal.com/2012/01/09/irreplaceable-2-million-ruby-stolen-in-wilmington-jewelry-heist/</a></span></li>
325
+ <li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text">C. Michael Hogan, <a rel="nofollow" class="external text" href="http://www.megalithic.co.uk/article.php?sid=18006">Silk Road, North China</a>, The Megalithic Portal. 19 November 2007</span></li>
326
+ <li id="cite_note-smith-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-smith_27-0">^</a></b></span> <span class="reference-text"><span class="citation book">Smith, Henry G. (1896). <a rel="nofollow" class="external text" href="http://www.farlang.com/gemstones/smith-gems-prec-stones/page_028">"Chapter 2, Sapphires, Rubies"</a>. <i>Gems and Precious Stones</i>. Charles Potter Government Printer, Australia.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ARuby&amp;rft.atitle=Gems+and+Precious+Stones&amp;rft.aufirst=Henry+G.&amp;rft.aulast=Smith&amp;rft.au=Smith%2C+Henry+G.&amp;rft.btitle=Chapter+2%2C+Sapphires%2C+Rubies&amp;rft.date=1896&amp;rft.genre=bookitem&amp;rft_id=http%3A%2F%2Fwww.farlang.com%2Fgemstones%2Fsmith-gems-prec-stones%2Fpage_028&amp;rft.pub=Charles+Potter+Government+Printer%2C+Australia&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
327
+ </ol>
328
+ </div>
329
+ <h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Ruby&amp;action=edit&amp;section=11" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
330
+ <table class="metadata mbox-small plainlinks" style="border:1px solid #aaa; background-color:#f9f9f9;">
331
+ <tr>
332
+ <td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" /></td>
333
+ <td class="mbox-text plainlist" style="">Wikimedia Commons has media related to: <i><b><a href="//commons.wikimedia.org/wiki/Category:Ruby" class="extiw" title="commons:Category:Ruby">Ruby</a></b></i></td>
334
+ </tr>
335
+ </table>
336
+ <ul>
337
+ <li><a rel="nofollow" class="external text" href="http://www.gemstone.org/gem-by-gem/english/ruby.html">International Colored Stone Association's ruby overview page</a></li>
338
+ <li><a rel="nofollow" class="external text" href="http://webmineral.com/data/Corundum.shtml">Webmineral crystallographic and mineral info</a></li>
339
+ </ul>
340
+ <p><br /></p>
341
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
342
+ <tr>
343
+ <td style="padding:2px;">
344
+ <table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
345
+ <tr>
346
+ <th scope="col" class="navbox-title" colspan="2">
347
+ <div class="noprint plainlinks hlist navbar mini">
348
+ <ul>
349
+ <li class="nv-view"><a href="/wiki/Template:Jewellery" title="Template:Jewellery"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
350
+ <li class="nv-talk"><a href="/wiki/Template_talk:Jewellery" title="Template talk:Jewellery"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
351
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Jewellery&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
352
+ </ul>
353
+ </div>
354
+ <div style="font-size:110%;"><a href="/wiki/Jewellery" title="Jewellery">Jewellery</a></div>
355
+ </th>
356
+ </tr>
357
+ <tr style="height:2px;">
358
+ <td></td>
359
+ </tr>
360
+ <tr>
361
+ <th scope="row" class="navbox-group"><a href="/wiki/List_of_jewellery_types" title="List of jewellery types">Forms</a></th>
362
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
363
+ <div style="padding:0em 0.25em;">
364
+ <ul>
365
+ <li><a href="/wiki/Anklet" title="Anklet">Anklet</a></li>
366
+ <li><a href="/wiki/Belt_buckle" title="Belt buckle">Belt buckle</a></li>
367
+ <li><a href="/wiki/Belly_chain" title="Belly chain">Belly chain</a></li>
368
+ <li><a href="/wiki/Bindi_(decoration)" title="Bindi (decoration)">Bindi</a></li>
369
+ <li><a href="/wiki/Bracelet" title="Bracelet">Bracelet</a></li>
370
+ <li><a href="/wiki/Brooch" title="Brooch">Brooch</a></li>
371
+ <li><a href="/wiki/Chatelaine_(chain)" title="Chatelaine (chain)">Chatelaine</a></li>
372
+ <li><a href="/wiki/Collar_pin" title="Collar pin">Collar pin</a></li>
373
+ <li><a href="/wiki/Crown_(headgear)" title="Crown (headgear)">Crown</a></li>
374
+ <li><a href="/wiki/Cufflink" title="Cufflink">Cufflink</a></li>
375
+ <li><a href="/wiki/Earring" title="Earring">Earring</a></li>
376
+ <li><a href="/wiki/Lapel_pin" title="Lapel pin">Lapel pin</a></li>
377
+ <li><a href="/wiki/Necklace" title="Necklace">Necklace</a></li>
378
+ <li><a href="/wiki/Pendant" title="Pendant">Pendant</a></li>
379
+ <li><a href="/wiki/Ring_(jewellery)" title="Ring (jewellery)">Ring</a></li>
380
+ <li><a href="/wiki/Tiara" title="Tiara">Tiara</a></li>
381
+ <li><a href="/wiki/Tie_clip" title="Tie clip">Tie clip</a></li>
382
+ <li><a href="/wiki/Tie_pin" title="Tie pin">Tie pin</a></li>
383
+ <li><a href="/wiki/Toe_ring" title="Toe ring">Toe ring</a></li>
384
+ <li><a href="/wiki/Watch" title="Watch">Watch</a>
385
+ <ul>
386
+ <li><a href="/wiki/Pocket_watch" title="Pocket watch">pocket</a></li>
387
+ </ul>
388
+ </li>
389
+ </ul>
390
+ </div>
391
+ </td>
392
+ </tr>
393
+ <tr style="height:2px;">
394
+ <td></td>
395
+ </tr>
396
+ <tr>
397
+ <th scope="row" class="navbox-group">Making</th>
398
+ <td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
399
+ <div style="padding:0em 0.25em;"></div>
400
+ <table cellspacing="0" class="nowraplinks navbox-subgroup" style="border-spacing:0;">
401
+ <tr>
402
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
403
+ <div style="padding:0em 0.75em;">People</div>
404
+ </th>
405
+ <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
406
+ <div style="padding:0em 0.25em;">
407
+ <ul>
408
+ <li><a href="/wiki/Bench_jeweler" title="Bench jeweler">Bench jeweler</a></li>
409
+ <li><a href="/wiki/Clockmaker" title="Clockmaker">Clockmaker</a></li>
410
+ <li><a href="/wiki/Goldsmith" title="Goldsmith">Goldsmith</a></li>
411
+ <li><a href="/wiki/Silversmith" title="Silversmith">Silversmith</a></li>
412
+ <li><a href="/wiki/Jewelry_designer" title="Jewelry designer">Jewelry designer</a></li>
413
+ <li><a href="/wiki/Lapidary" title="Lapidary">Lapidary</a></li>
414
+ <li><a href="/wiki/Watchmaker" title="Watchmaker">Watchmaker</a></li>
415
+ </ul>
416
+ </div>
417
+ </td>
418
+ </tr>
419
+ <tr style="height:2px;">
420
+ <td></td>
421
+ </tr>
422
+ <tr>
423
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
424
+ <div style="padding:0em 0.75em;">Processes</div>
425
+ </th>
426
+ <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
427
+ <div style="padding:0em 0.25em;">
428
+ <ul>
429
+ <li><a href="/wiki/Casting_(metalworking)" title="Casting (metalworking)">Casting</a>
430
+ <ul>
431
+ <li><a href="/wiki/Centrifugal_casting_(silversmithing)" title="Centrifugal casting (silversmithing)">centrifugal</a></li>
432
+ <li><a href="/wiki/Lost-wax_casting" title="Lost-wax casting">lost-wax</a></li>
433
+ <li><a href="/wiki/Casting_(metalworking)" title="Casting (metalworking)">vacuum</a></li>
434
+ </ul>
435
+ </li>
436
+ <li><a href="/wiki/Vitreous_enamel" title="Vitreous enamel">Enameling</a></li>
437
+ <li><a href="/wiki/Engraving" title="Engraving">Engraving</a></li>
438
+ <li><a href="/wiki/Filigree" title="Filigree">Filigree</a></li>
439
+ <li><a href="/wiki/Metal_clay" title="Metal clay">Metal clay</a></li>
440
+ <li><a href="/wiki/Plating" title="Plating">Plating</a></li>
441
+ <li><a href="/wiki/Polishing_(metalworking)" title="Polishing (metalworking)">Polishing</a></li>
442
+ <li><a href="/wiki/Repouss%C3%A9_and_chasing" title="Repoussé and chasing">Repoussé and chasing</a></li>
443
+ <li><a href="/wiki/Soldering" title="Soldering">Soldering</a></li>
444
+ <li><a href="/wiki/Stonesetting" title="Stonesetting">Stonesetting</a></li>
445
+ <li><a href="/wiki/Wire_sculpture" title="Wire sculpture">Wire sculpture</a></li>
446
+ <li><a href="/wiki/Wire_wrapped_jewelry" title="Wire wrapped jewelry">Wire wrapped jewelry</a></li>
447
+ </ul>
448
+ </div>
449
+ </td>
450
+ </tr>
451
+ <tr style="height:2px;">
452
+ <td></td>
453
+ </tr>
454
+ <tr>
455
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
456
+ <div style="padding:0em 0.75em;">Tools</div>
457
+ </th>
458
+ <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
459
+ <div style="padding:0em 0.25em;">
460
+ <ul>
461
+ <li><a href="/wiki/Draw_plate" title="Draw plate">Draw plate</a></li>
462
+ <li><a href="/wiki/File_(tool)" title="File (tool)">File</a></li>
463
+ <li><a href="/wiki/Hammer" title="Hammer">Hammer</a></li>
464
+ <li><a href="/wiki/Mandrel" title="Mandrel">Mandrel</a></li>
465
+ <li><a href="/wiki/Pliers" title="Pliers">Pliers</a></li>
466
+ </ul>
467
+ </div>
468
+ </td>
469
+ </tr>
470
+ </table>
471
+ </td>
472
+ </tr>
473
+ <tr style="height:2px;">
474
+ <td></td>
475
+ </tr>
476
+ <tr>
477
+ <th scope="row" class="navbox-group">Materials</th>
478
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
479
+ <div style="padding:0em 0.25em;"></div>
480
+ <table cellspacing="0" class="nowraplinks navbox-subgroup" style="border-spacing:0;">
481
+ <tr>
482
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
483
+ <div style="padding:0em 0.75em;"><a href="/wiki/Precious_metal" title="Precious metal">Precious metals</a></div>
484
+ </th>
485
+ <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
486
+ <div style="padding:0em 0.25em;">
487
+ <ul>
488
+ <li><a href="/wiki/Gold" title="Gold">Gold</a></li>
489
+ <li><a href="/wiki/Palladium" title="Palladium">Palladium</a></li>
490
+ <li><a href="/wiki/Platinum" title="Platinum">Platinum</a></li>
491
+ <li><a href="/wiki/Rhodium" title="Rhodium">Rhodium</a></li>
492
+ <li><a href="/wiki/Silver" title="Silver">Silver</a></li>
493
+ </ul>
494
+ </div>
495
+ </td>
496
+ </tr>
497
+ <tr style="height:2px;">
498
+ <td></td>
499
+ </tr>
500
+ <tr>
501
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
502
+ <div style="padding:0em 0.75em;">Precious metal <a href="/wiki/Alloy" title="Alloy">alloys</a></div>
503
+ </th>
504
+ <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
505
+ <div style="padding:0em 0.25em;">
506
+ <ul>
507
+ <li><a href="/wiki/Britannia_silver" title="Britannia silver">Britannia silver</a></li>
508
+ <li><a href="/wiki/Colored_gold" title="Colored gold">Colored gold</a></li>
509
+ <li><a href="/wiki/Crown_gold" title="Crown gold">Crown gold</a></li>
510
+ <li><a href="/wiki/Electrum" title="Electrum">Electrum</a></li>
511
+ <li><a href="/wiki/Shakud%C5%8D" title="Shakudō">Shakudō</a></li>
512
+ <li><a href="/wiki/Shibuichi" title="Shibuichi">Shibuichi</a></li>
513
+ <li><a href="/wiki/Sterling_silver" title="Sterling silver">Sterling silver</a></li>
514
+ <li><a href="/wiki/Tumbaga" title="Tumbaga">Tumbaga</a></li>
515
+ </ul>
516
+ </div>
517
+ </td>
518
+ </tr>
519
+ <tr style="height:2px;">
520
+ <td></td>
521
+ </tr>
522
+ <tr>
523
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
524
+ <div style="padding:0em 0.75em;"><a href="/wiki/Base_metal" title="Base metal">Base metals</a></div>
525
+ </th>
526
+ <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
527
+ <div style="padding:0em 0.25em;">
528
+ <ul>
529
+ <li><a href="/wiki/Brass" title="Brass">Brass</a></li>
530
+ <li><a href="/wiki/Bronze" title="Bronze">Bronze</a></li>
531
+ <li><a href="/wiki/Copper" title="Copper">Copper</a></li>
532
+ <li><a href="/wiki/Mokume-gane" title="Mokume-gane">Mokume-gane</a></li>
533
+ <li><a href="/wiki/Pewter" title="Pewter">Pewter</a></li>
534
+ <li><a href="/wiki/Stainless_steel" title="Stainless steel">Stainless steel</a></li>
535
+ <li><a href="/wiki/Titanium" title="Titanium">Titanium</a></li>
536
+ <li><a href="/wiki/Tungsten" title="Tungsten">Tungsten</a></li>
537
+ </ul>
538
+ </div>
539
+ </td>
540
+ </tr>
541
+ <tr style="height:2px;">
542
+ <td></td>
543
+ </tr>
544
+ <tr>
545
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
546
+ <div style="padding:0em 0.75em;">Mineral <a href="/wiki/Gemstone" title="Gemstone">gemstones</a></div>
547
+ </th>
548
+ <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
549
+ <div style="padding:0em 0.25em;">
550
+ <ul>
551
+ <li><a href="/wiki/Aventurine" title="Aventurine">Aventurine</a></li>
552
+ <li><a href="/wiki/Agate" title="Agate">Agate</a></li>
553
+ <li><a href="/wiki/Amethyst" title="Amethyst">Amethyst</a></li>
554
+ <li><a href="/wiki/Beryl" title="Beryl">Beryl</a></li>
555
+ <li><a href="/wiki/Carnelian" title="Carnelian">Carnelian</a></li>
556
+ <li><a href="/wiki/Chrysoberyl" title="Chrysoberyl">Chrysoberyl</a></li>
557
+ <li><a href="/wiki/Diamond" title="Diamond">Diamond</a></li>
558
+ <li><a href="/wiki/Diopside" title="Diopside">Diopside</a></li>
559
+ <li><a href="/wiki/Emerald" title="Emerald">Emerald</a></li>
560
+ <li><a href="/wiki/Garnet" title="Garnet">Garnet</a></li>
561
+ <li><a href="/wiki/Jade" title="Jade">Jade</a></li>
562
+ <li><a href="/wiki/Jasper" title="Jasper">Jasper</a></li>
563
+ <li><a href="/wiki/Lapis_lazuli" title="Lapis lazuli">Lapis lazuli</a></li>
564
+ <li><a href="/wiki/Larimar" title="Larimar">Larimar</a></li>
565
+ <li><a href="/wiki/Malachite" title="Malachite">Malachite</a></li>
566
+ <li><a href="/wiki/Marcasite_jewellery" title="Marcasite jewellery">Marcasite</a></li>
567
+ <li><a href="/wiki/Moonstone_(gemstone)" title="Moonstone (gemstone)">Moonstone</a></li>
568
+ <li><a href="/wiki/Obsidian" title="Obsidian">Obsidian</a></li>
569
+ <li><a href="/wiki/Onyx" title="Onyx">Onyx</a></li>
570
+ <li><a href="/wiki/Opal" title="Opal">Opal</a></li>
571
+ <li><a href="/wiki/Peridot" title="Peridot">Peridot</a></li>
572
+ <li><a href="/wiki/Quartz" title="Quartz">Quartz</a></li>
573
+ <li><strong class="selflink">Ruby</strong></li>
574
+ <li><a href="/wiki/Sapphire" title="Sapphire">Sapphire</a></li>
575
+ <li><a href="/wiki/Sodalite" title="Sodalite">Sodalite</a></li>
576
+ <li><a href="/wiki/Sunstone" title="Sunstone">Sunstone</a></li>
577
+ <li><a href="/wiki/Tanzanite" title="Tanzanite">Tanzanite</a></li>
578
+ <li><a href="/wiki/Tiger%27s_eye" title="Tiger's eye">Tiger's eye</a></li>
579
+ <li><a href="/wiki/Topaz" title="Topaz">Topaz</a></li>
580
+ <li><a href="/wiki/Tourmaline" title="Tourmaline">Tourmaline</a></li>
581
+ <li><a href="/wiki/Turquoise" title="Turquoise">Turquoise</a></li>
582
+ <li><a href="/wiki/Yogo_sapphire" title="Yogo sapphire">Yogo sapphire</a></li>
583
+ </ul>
584
+ </div>
585
+ </td>
586
+ </tr>
587
+ <tr style="height:2px;">
588
+ <td></td>
589
+ </tr>
590
+ <tr>
591
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
592
+ <div style="padding:0em 0.75em;">Organic gemstones</div>
593
+ </th>
594
+ <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
595
+ <div style="padding:0em 0.25em;">
596
+ <ul>
597
+ <li><a href="/wiki/Abalone" title="Abalone">Abalone</a></li>
598
+ <li><a href="/wiki/Amber" title="Amber">Amber</a></li>
599
+ <li><a href="/wiki/Ammolite" title="Ammolite">Ammolite</a></li>
600
+ <li><a href="/wiki/Copal" title="Copal">Copal</a></li>
601
+ <li><a href="/wiki/Precious_coral" title="Precious coral">Coral</a></li>
602
+ <li><a href="/wiki/Ivory" title="Ivory">Ivory</a></li>
603
+ <li><a href="/wiki/Jet_(lignite)" title="Jet (lignite)">Jet</a></li>
604
+ <li><a href="/wiki/Pearl" title="Pearl">Pearl</a></li>
605
+ <li><a href="/wiki/Nacre" title="Nacre">Nacre</a></li>
606
+ </ul>
607
+ </div>
608
+ </td>
609
+ </tr>
610
+ <tr style="height:2px;">
611
+ <td></td>
612
+ </tr>
613
+ <tr>
614
+ <th scope="row" class="navbox-group" style="padding-left:0em;padding-right:0em;;">
615
+ <div style="padding:0em 0.75em;">Other natural objects</div>
616
+ </th>
617
+ <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
618
+ <div style="padding:0em 0.25em;">
619
+ <ul>
620
+ <li><a href="/wiki/Shell_jewelry" title="Shell jewelry">Shell jewelry</a></li>
621
+ </ul>
622
+ </div>
623
+ </td>
624
+ </tr>
625
+ </table>
626
+ </td>
627
+ </tr>
628
+ <tr style="height:2px;">
629
+ <td></td>
630
+ </tr>
631
+ <tr>
632
+ <th scope="row" class="navbox-group">Terms</th>
633
+ <td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
634
+ <div style="padding:0em 0.25em;">
635
+ <ul>
636
+ <li><a href="/wiki/Carat_(mass)" title="Carat (mass)">Carat</a> (mass)</li>
637
+ <li><a href="/wiki/Carat_(purity)" title="Carat (purity)">Carat</a> (purity)</li>
638
+ <li><a href="/wiki/Finding" title="Finding">Finding</a></li>
639
+ <li><a href="/wiki/Millesimal_fineness" title="Millesimal fineness">Millesimal fineness</a></li>
640
+ </ul>
641
+ </div>
642
+ </td>
643
+ </tr>
644
+ <tr style="height:2px;">
645
+ <td></td>
646
+ </tr>
647
+ <tr>
648
+ <td class="navbox-abovebelow hlist" colspan="2">
649
+ <div>
650
+ <ul>
651
+ <li><b>Related topics: <a href="/wiki/Body_piercing" title="Body piercing">Body piercing</a></b></li>
652
+ <li><b><a href="/wiki/Fashion" title="Fashion">Fashion</a></b></li>
653
+ <li><b><a href="/wiki/Gemology" title="Gemology">Gemology</a></b></li>
654
+ <li><b><a href="/wiki/Metalworking" title="Metalworking">Metalworking</a></b></li>
655
+ <li><b><a href="/wiki/Wearable_art" title="Wearable art">Wearable art</a></b></li>
656
+ </ul>
657
+ </div>
658
+ </td>
659
+ </tr>
660
+ </table>
661
+ </td>
662
+ </tr>
663
+ </table>
664
+
665
+
666
+ <!--
667
+ NewPP limit report
668
+ Preprocessor visited node count: 3702/1000000
669
+ Preprocessor generated node count: 20484/1500000
670
+ Post‐expand include size: 81345/2048000 bytes
671
+ Template argument size: 6110/2048000 bytes
672
+ Highest expansion depth: 25/40
673
+ Expensive parser function count: 3/500
674
+ Lua time usage: 0.088s
675
+ Lua memory usage: 2.35 MB
676
+ -->
677
+
678
+ <!-- Saved in parser cache with key enwiki:pcache:idhash:43551-0!*!0!!en!4!* and timestamp 20130726130026 -->
679
+ <noscript><img src="//en.wikipedia.org/w/index.php?title=Special:CentralAutoLogin/start&amp;type=1x1&amp;from=enwiki" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
680
+ Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Ruby&amp;oldid=565568852">http://en.wikipedia.org/w/index.php?title=Ruby&amp;oldid=565568852</a>" </div>
681
+ <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Categories" title="Help:Categories">Categories</a>: <ul><li><a href="/wiki/Category:Gemstones" title="Category:Gemstones">Gemstones</a></li><li><a href="/wiki/Category:Aluminium_minerals" title="Category:Aluminium minerals">Aluminium minerals</a></li><li><a href="/wiki/Category:Oxide_minerals" title="Category:Oxide minerals">Oxide minerals</a></li><li><a href="/wiki/Category:Superhard_materials" title="Category:Superhard materials">Superhard materials</a></li><li><a href="/wiki/Category:Trigonal_minerals" title="Category:Trigonal minerals">Trigonal minerals</a></li><li><a href="/wiki/Category:Corundum_varieties" title="Category:Corundum varieties">Corundum varieties</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_November_2012" title="Category:Articles with unsourced statements from November 2012">Articles with unsourced statements from November 2012</a></li><li><a href="/wiki/Category:Commons_category_template_with_no_category_set" title="Category:Commons category template with no category set">Commons category template with no category set</a></li><li><a href="/wiki/Category:Commons_category_with_page_title_same_as_on_Wikidata" title="Category:Commons category with page title same as on Wikidata">Commons category with page title same as on Wikidata</a></li></ul></div></div> <div class="visualClear"></div>
682
+ </div>
683
+ </div>
684
+ <div id="mw-navigation">
685
+ <h2>Navigation menu</h2>
686
+ <div id="mw-head">
687
+ <div id="p-personal" role="navigation" class="">
688
+ <h3>Personal tools</h3>
689
+ <ul>
690
+ <li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Ruby&amp;type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Ruby" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
691
+ </div>
692
+ <div id="left-navigation">
693
+ <div id="p-namespaces" role="navigation" class="vectorTabs">
694
+ <h3>Namespaces</h3>
695
+ <ul>
696
+ <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Ruby" title="View the content page [c]" accesskey="c">Article</a></span></li>
697
+ <li id="ca-talk"><span><a href="/wiki/Talk:Ruby" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
698
+ </ul>
699
+ </div>
700
+ <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet">
701
+ <h3 id="mw-vector-current-variant">
702
+ </h3>
703
+ <h3><span>Variants</span><a href="#"></a></h3>
704
+ <div class="menu">
705
+ <ul>
706
+ </ul>
707
+ </div>
708
+ </div>
709
+ </div>
710
+ <div id="right-navigation">
711
+ <div id="p-views" role="navigation" class="vectorTabs">
712
+ <h3>Views</h3>
713
+ <ul>
714
+ <li id="ca-view" class="selected"><span><a href="/wiki/Ruby" >Read</a></span></li>
715
+ <li id="ca-edit"><span><a href="/w/index.php?title=Ruby&amp;action=edit" title="You can edit this page. &#10;Please review your changes before saving. [e]" accesskey="e">Edit</a></span></li>
716
+ <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Ruby&amp;action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
717
+ </ul>
718
+ </div>
719
+ <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet">
720
+ <h3><span>Actions</span><a href="#"></a></h3>
721
+ <div class="menu">
722
+ <ul>
723
+ </ul>
724
+ </div>
725
+ </div>
726
+ <div id="p-search" role="search">
727
+ <h3><label for="searchInput">Search</label></h3>
728
+ <form action="/w/index.php" id="searchform">
729
+ <div id="simpleSearch">
730
+ <input name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search Wikipedia for this text" id="searchButton"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/vector/images/search-ltr.png?303-4" alt="Search" width="12" height="13" /></button> <input type='hidden' name="title" value="Special:Search"/>
731
+ </div>
732
+ </form>
733
+ </div>
734
+ </div>
735
+ </div>
736
+ <div id="mw-panel">
737
+ <div id="p-logo" role="banner"><a style="background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="/wiki/Main_Page" title="Visit the main page"></a></div>
738
+ <div class="portal" role="navigation" id='p-navigation'>
739
+ <h3>Navigation</h3>
740
+ <div class="body">
741
+ <ul>
742
+ <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
743
+ <li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
744
+ <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
745
+ <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
746
+ <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
747
+ <li id="n-sitesupport"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
748
+ </ul>
749
+ </div>
750
+ </div>
751
+ <div class="portal" role="navigation" id='p-interaction'>
752
+ <h3>Interaction</h3>
753
+ <div class="body">
754
+ <ul>
755
+ <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
756
+ <li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
757
+ <li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
758
+ <li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
759
+ <li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact page</a></li>
760
+ </ul>
761
+ </div>
762
+ </div>
763
+ <div class="portal" role="navigation" id='p-tb'>
764
+ <h3>Toolbox</h3>
765
+ <div class="body">
766
+ <ul>
767
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Ruby" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
768
+ <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Ruby" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
769
+ <li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li>
770
+ <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
771
+ <li id="t-permalink"><a href="/w/index.php?title=Ruby&amp;oldid=565568852" title="Permanent link to this revision of the page">Permanent link</a></li>
772
+ <li id="t-info"><a href="/w/index.php?title=Ruby&amp;action=info">Page information</a></li>
773
+ <li id="t-wikibase"><a href="//www.wikidata.org/wiki/Q43088" title="Link to connected data repository item">Data item</a></li>
774
+ <li id="t-cite"><a href="/w/index.php?title=Special:Cite&amp;page=Ruby&amp;id=565568852" title="Information on how to cite this page">Cite this page</a></li> </ul>
775
+ </div>
776
+ </div>
777
+ <div class="portal" role="navigation" id='p-coll-print_export'>
778
+ <h3>Print/export</h3>
779
+ <div class="body">
780
+ <ul>
781
+ <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Ruby">Create a book</a></li>
782
+ <li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Ruby&amp;oldid=565568852&amp;writer=rl">Download as PDF</a></li>
783
+ <li id="t-print"><a href="/w/index.php?title=Ruby&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
784
+ </ul>
785
+ </div>
786
+ </div>
787
+ <div class="portal" role="navigation" id='p-lang'>
788
+ <h3>Languages</h3>
789
+ <div class="body">
790
+ <ul>
791
+ <li class="interwiki-ar"><a href="//ar.wikipedia.org/wiki/%D9%8A%D8%A7%D9%82%D9%88%D8%AA" title="ياقوت" lang="ar" hreflang="ar">العربية</a></li>
792
+ <li class="interwiki-an"><a href="//an.wikipedia.org/wiki/Rub%C3%AD" title="Rubí" lang="an" hreflang="an">Aragonés</a></li>
793
+ <li class="interwiki-az"><a href="//az.wikipedia.org/wiki/Yaqut" title="Yaqut" lang="az" hreflang="az">Azərbaycanca</a></li>
794
+ <li class="interwiki-bjn"><a href="//bjn.wikipedia.org/wiki/Mirah_delima" title="Mirah delima" lang="bjn" hreflang="bjn">Bahasa Banjar</a></li>
795
+ <li class="interwiki-be"><a href="//be.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D1%96%D0%BD" title="Рубін" lang="be" hreflang="be">Беларуская</a></li>
796
+ <li class="interwiki-be-x-old"><a href="//be-x-old.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D1%96%D0%BD" title="Рубін" lang="be-x-old" hreflang="be-x-old">Беларуская (тарашкевіца)‎</a></li>
797
+ <li class="interwiki-bg"><a href="//bg.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D0%B8%D0%BD" title="Рубин" lang="bg" hreflang="bg">Български</a></li>
798
+ <li class="interwiki-ca"><a href="//ca.wikipedia.org/wiki/Rob%C3%AD" title="Robí" lang="ca" hreflang="ca">Català</a></li>
799
+ <li class="interwiki-cs"><a href="//cs.wikipedia.org/wiki/Rub%C3%ADn" title="Rubín" lang="cs" hreflang="cs">Česky</a></li>
800
+ <li class="interwiki-da"><a href="//da.wikipedia.org/wiki/Rubin" title="Rubin" lang="da" hreflang="da">Dansk</a></li>
801
+ <li class="interwiki-de"><a href="//de.wikipedia.org/wiki/Rubin" title="Rubin" lang="de" hreflang="de">Deutsch</a></li>
802
+ <li class="interwiki-et"><a href="//et.wikipedia.org/wiki/Rubiin" title="Rubiin" lang="et" hreflang="et">Eesti</a></li>
803
+ <li class="interwiki-el"><a href="//el.wikipedia.org/wiki/%CE%A1%CE%BF%CF%85%CE%BC%CF%80%CE%AF%CE%BD%CE%B9" title="Ρουμπίνι" lang="el" hreflang="el">Ελληνικά</a></li>
804
+ <li class="interwiki-es"><a href="//es.wikipedia.org/wiki/Rub%C3%AD" title="Rubí" lang="es" hreflang="es">Español</a></li>
805
+ <li class="interwiki-eo"><a href="//eo.wikipedia.org/wiki/Rubeno" title="Rubeno" lang="eo" hreflang="eo">Esperanto</a></li>
806
+ <li class="interwiki-eu"><a href="//eu.wikipedia.org/wiki/Errubi" title="Errubi" lang="eu" hreflang="eu">Euskara</a></li>
807
+ <li class="interwiki-fa"><a href="//fa.wikipedia.org/wiki/%DB%8C%D8%A7%D9%82%D9%88%D8%AA" title="یاقوت" lang="fa" hreflang="fa">فارسی</a></li>
808
+ <li class="interwiki-fr"><a href="//fr.wikipedia.org/wiki/Rubis" title="Rubis" lang="fr" hreflang="fr">Français</a></li>
809
+ <li class="interwiki-gl"><a href="//gl.wikipedia.org/wiki/Rub%C3%AD" title="Rubí" lang="gl" hreflang="gl">Galego</a></li>
810
+ <li class="interwiki-ko"><a href="//ko.wikipedia.org/wiki/%EB%A3%A8%EB%B9%84" title="루비" lang="ko" hreflang="ko">한국어</a></li>
811
+ <li class="interwiki-hy"><a href="//hy.wikipedia.org/wiki/%D5%8D%D5%B8%D6%82%D5%BF%D5%A1%D5%AF" title="Սուտակ" lang="hy" hreflang="hy">Հայերեն</a></li>
812
+ <li class="interwiki-hi"><a href="//hi.wikipedia.org/wiki/%E0%A4%95%E0%A5%81%E0%A4%B0%E0%A5%81%E0%A4%B5%E0%A4%BF%E0%A4%82%E0%A4%A6" title="कुरुविंद" lang="hi" hreflang="hi">हिन्दी</a></li>
813
+ <li class="interwiki-hr"><a href="//hr.wikipedia.org/wiki/Rubin" title="Rubin" lang="hr" hreflang="hr">Hrvatski</a></li>
814
+ <li class="interwiki-io"><a href="//io.wikipedia.org/wiki/Rubino" title="Rubino" lang="io" hreflang="io">Ido</a></li>
815
+ <li class="interwiki-id"><a href="//id.wikipedia.org/wiki/Mirah_delima" title="Mirah delima" lang="id" hreflang="id">Bahasa Indonesia</a></li>
816
+ <li class="interwiki-it"><a href="//it.wikipedia.org/wiki/Rubino" title="Rubino" lang="it" hreflang="it">Italiano</a></li>
817
+ <li class="interwiki-he"><a href="//he.wikipedia.org/wiki/%D7%90%D7%95%D7%93%D7%9D" title="אודם" lang="he" hreflang="he">עברית</a></li>
818
+ <li class="interwiki-kn"><a href="//kn.wikipedia.org/wiki/%E0%B2%AE%E0%B2%BE%E0%B2%A3%E0%B2%BF%E0%B2%95%E0%B3%8D%E0%B2%AF_(%E0%B2%B0%E0%B3%82%E0%B2%AC%E0%B2%BF)" title="ಮಾಣಿಕ್ಯ (ರೂಬಿ)" lang="kn" hreflang="kn">ಕನ್ನಡ</a></li>
819
+ <li class="interwiki-ka"><a href="//ka.wikipedia.org/wiki/%E1%83%9A%E1%83%90%E1%83%9A%E1%83%98" title="ლალი" lang="ka" hreflang="ka">ქართული</a></li>
820
+ <li class="interwiki-kk"><a href="//kk.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D0%B8%D0%BD" title="Рубин" lang="kk" hreflang="kk">Қазақша</a></li>
821
+ <li class="interwiki-la"><a href="//la.wikipedia.org/wiki/Carbunculus" title="Carbunculus" lang="la" hreflang="la">Latina</a></li>
822
+ <li class="interwiki-lv"><a href="//lv.wikipedia.org/wiki/Rub%C4%ABns" title="Rubīns" lang="lv" hreflang="lv">Latviešu</a></li>
823
+ <li class="interwiki-lb"><a href="//lb.wikipedia.org/wiki/Rubin" title="Rubin" lang="lb" hreflang="lb">Lëtzebuergesch</a></li>
824
+ <li class="interwiki-lt"><a href="//lt.wikipedia.org/wiki/Rubinas" title="Rubinas" lang="lt" hreflang="lt">Lietuvių</a></li>
825
+ <li class="interwiki-ml"><a href="//ml.wikipedia.org/wiki/%E0%B4%AE%E0%B4%BE%E0%B4%A3%E0%B4%BF%E0%B4%95%E0%B5%8D%E0%B4%AF%E0%B4%82_(%E0%B4%A8%E0%B4%B5%E0%B4%B0%E0%B4%A4%E0%B5%8D%E0%B4%A8%E0%B4%82)" title="മാണിക്യം (നവരത്നം)" lang="ml" hreflang="ml">മലയാളം</a></li>
826
+ <li class="interwiki-mr"><a href="//mr.wikipedia.org/wiki/%E0%A4%AE%E0%A4%BE%E0%A4%A3%E0%A4%BF%E0%A4%95" title="माणिक" lang="mr" hreflang="mr">मराठी</a></li>
827
+ <li class="interwiki-ms"><a href="//ms.wikipedia.org/wiki/Batu_Delima" title="Batu Delima" lang="ms" hreflang="ms">Bahasa Melayu</a></li>
828
+ <li class="interwiki-my"><a href="//my.wikipedia.org/wiki/%E1%80%95%E1%80%90%E1%80%B9%E1%80%90%E1%80%99%E1%80%BC%E1%80%AC%E1%80%B8" title="ပတ္တမြား" lang="my" hreflang="my">မြန်မာဘာသာ</a></li>
829
+ <li class="interwiki-nl"><a href="//nl.wikipedia.org/wiki/Robijn_(korund)" title="Robijn (korund)" lang="nl" hreflang="nl">Nederlands</a></li>
830
+ <li class="interwiki-new"><a href="//new.wikipedia.org/wiki/%E0%A4%AE%E0%A4%BE%E0%A4%A3%E0%A4%BF%E0%A4%95%E0%A5%8D%E0%A4%95%E0%A4%AE%E0%A5%8D_(%E0%A4%B8%E0%A4%A8%E0%A5%8D_%E0%A5%A7%E0%A5%AF%E0%A5%AF%E0%A5%AC%E0%A4%AF%E0%A4%BE_%E0%A4%B8%E0%A4%82%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A4%BE)" title="माणिक्कम् (सन् १९९६या संकिपा)" lang="new" hreflang="new">नेपाल भाषा</a></li>
831
+ <li class="interwiki-ja"><a href="//ja.wikipedia.org/wiki/%E3%83%AB%E3%83%93%E3%83%BC" title="ルビー" lang="ja" hreflang="ja">日本語</a></li>
832
+ <li class="interwiki-no"><a href="//no.wikipedia.org/wiki/Rubin" title="Rubin" lang="no" hreflang="no">Norsk bokmål</a></li>
833
+ <li class="interwiki-pnb"><a href="//pnb.wikipedia.org/wiki/%DB%8C%D8%A7%D9%82%D9%88%D8%AA" title="یاقوت" lang="pnb" hreflang="pnb">پنجابی</a></li>
834
+ <li class="interwiki-ps"><a href="//ps.wikipedia.org/wiki/%D9%8A%D8%A7%D9%82%D9%88%D8%AA" title="ياقوت" lang="ps" hreflang="ps">پښتو</a></li>
835
+ <li class="interwiki-pl"><a href="//pl.wikipedia.org/wiki/Rubin" title="Rubin" lang="pl" hreflang="pl">Polski</a></li>
836
+ <li class="interwiki-pt"><a href="//pt.wikipedia.org/wiki/Rubi" title="Rubi" lang="pt" hreflang="pt">Português</a></li>
837
+ <li class="interwiki-ro"><a href="//ro.wikipedia.org/wiki/Rubin" title="Rubin" lang="ro" hreflang="ro">Română</a></li>
838
+ <li class="interwiki-qu"><a href="//qu.wikipedia.org/wiki/Puka_umi%C3%B1a" title="Puka umiña" lang="qu" hreflang="qu">Runa Simi</a></li>
839
+ <li class="interwiki-ru"><a href="//ru.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D0%B8%D0%BD" title="Рубин" lang="ru" hreflang="ru">Русский</a></li>
840
+ <li class="interwiki-sa"><a href="//sa.wikipedia.org/wiki/%E0%A4%AE%E0%A4%BE%E0%A4%A3%E0%A4%BF%E0%A4%95%E0%A5%8D%E0%A4%AF%E0%A4%AE%E0%A5%8D" title="माणिक्यम्" lang="sa" hreflang="sa">संस्कृतम्</a></li>
841
+ <li class="interwiki-si"><a href="//si.wikipedia.org/wiki/%E0%B6%BB%E0%B6%AD%E0%B7%94%E0%B6%9A%E0%B7%90%E0%B6%A7" title="රතුකැට" lang="si" hreflang="si">සිංහල</a></li>
842
+ <li class="interwiki-simple"><a href="//simple.wikipedia.org/wiki/Ruby" title="Ruby" lang="simple" hreflang="simple">Simple English</a></li>
843
+ <li class="interwiki-sk"><a href="//sk.wikipedia.org/wiki/Rub%C3%ADn" title="Rubín" lang="sk" hreflang="sk">Slovenčina</a></li>
844
+ <li class="interwiki-sl"><a href="//sl.wikipedia.org/wiki/Rubin" title="Rubin" lang="sl" hreflang="sl">Slovenščina</a></li>
845
+ <li class="interwiki-sr"><a href="//sr.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D0%B8%D0%BD" title="Рубин" lang="sr" hreflang="sr">Српски / srpski</a></li>
846
+ <li class="interwiki-sh"><a href="//sh.wikipedia.org/wiki/Rubin" title="Rubin" lang="sh" hreflang="sh">Srpskohrvatski / српскохрватски</a></li>
847
+ <li class="interwiki-fi"><a href="//fi.wikipedia.org/wiki/Rubiini" title="Rubiini" lang="fi" hreflang="fi">Suomi</a></li>
848
+ <li class="interwiki-sv"><a href="//sv.wikipedia.org/wiki/Rubin" title="Rubin" lang="sv" hreflang="sv">Svenska</a></li>
849
+ <li class="interwiki-ta"><a href="//ta.wikipedia.org/wiki/%E0%AE%AE%E0%AE%BE%E0%AE%A3%E0%AE%BF%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%AE%E0%AF%8D" title="மாணிக்கம்" lang="ta" hreflang="ta">தமிழ்</a></li>
850
+ <li class="interwiki-te"><a href="//te.wikipedia.org/wiki/%E0%B0%95%E0%B1%86%E0%B0%82%E0%B0%AA%E0%B1%81" title="కెంపు" lang="te" hreflang="te">తెలుగు</a></li>
851
+ <li class="interwiki-th"><a href="//th.wikipedia.org/wiki/%E0%B8%97%E0%B8%B1%E0%B8%9A%E0%B8%97%E0%B8%B4%E0%B8%A1_(%E0%B8%AD%E0%B8%B1%E0%B8%8D%E0%B8%A1%E0%B8%93%E0%B8%B5)" title="ทับทิม (อัญมณี)" lang="th" hreflang="th">ไทย</a></li>
852
+ <li class="interwiki-tr"><a href="//tr.wikipedia.org/wiki/Yakut" title="Yakut" lang="tr" hreflang="tr">Türkçe</a></li>
853
+ <li class="interwiki-uk"><a href="//uk.wikipedia.org/wiki/%D0%A0%D1%83%D0%B1%D1%96%D0%BD" title="Рубін" lang="uk" hreflang="uk">Українська</a></li>
854
+ <li class="interwiki-ur"><a href="//ur.wikipedia.org/wiki/%DB%8C%D8%A7%D9%82%D9%88%D8%AA" title="یاقوت" lang="ur" hreflang="ur">اردو</a></li>
855
+ <li class="interwiki-ug"><a href="//ug.wikipedia.org/wiki/%D9%82%D9%89%D8%B2%D9%89%D9%84_%D9%8A%D8%A7%D9%82%DB%87%D8%AA" title="قىزىل ياقۇت" lang="ug" hreflang="ug">ئۇيغۇرچە / Uyghurche</a></li>
856
+ <li class="interwiki-vi"><a href="//vi.wikipedia.org/wiki/H%E1%BB%93ng_ng%E1%BB%8Dc" title="Hồng ngọc" lang="vi" hreflang="vi">Tiếng Việt</a></li>
857
+ <li class="interwiki-zh-yue"><a href="//zh-yue.wikipedia.org/wiki/%E7%B4%85%E5%AF%B6%E7%9F%B3" title="紅寶石" lang="zh-yue" hreflang="zh-yue">粵語</a></li>
858
+ <li class="interwiki-zh"><a href="//zh.wikipedia.org/wiki/%E7%BA%A2%E5%AE%9D%E7%9F%B3" title="红宝石" lang="zh" hreflang="zh">中文</a></li>
859
+ <li class="uls-p-lang-dummy"><a href="#"></a></li>
860
+ <li class="wbc-editpage"><a href="//www.wikidata.org/wiki/Q43088#sitelinks-wikipedia" title="Edit interlanguage links">Edit links</a></li>
861
+ </ul>
862
+ </div>
863
+ </div>
864
+ </div>
865
+ </div>
866
+ <div id="footer" role="contentinfo">
867
+ <ul id="footer-info">
868
+ <li id="footer-info-lastmod"> This page was last modified on 24 July 2013 at 03:52.<br /></li>
869
+ <li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a><a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>;
870
+ additional terms may apply. By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy.</a> <br/>
871
+ Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
872
+ </ul>
873
+ <ul id="footer-places">
874
+ <li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
875
+ <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
876
+ <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
877
+ <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
878
+ <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/wiki/Ruby" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
879
+ </ul>
880
+ <ul id="footer-icons" class="noprint">
881
+ <li id="footer-copyrightico">
882
+ <a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
883
+ </li>
884
+ <li id="footer-poweredbyico">
885
+ <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
886
+ </li>
887
+ </ul>
888
+ <div style="clear:both"></div>
889
+ </div>
890
+ <script>/*<![CDATA[*/window.jQuery && jQuery.ready();/*]]>*/</script><script>if(window.mw){
891
+ mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
892
+ }</script>
893
+ <script>if(window.mw){
894
+ mw.loader.load(["mobile.desktop","mediawiki.action.view.postEdit","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","mw.MwEmbedSupport.style","ext.vector.collapsibleNav","ext.articleFeedbackv5.startup","schema.Edit","ext.gettingstarted.logging","ext.gettingstarted.openTask","ext.navigationTiming","mw.PopUpMediaTransform"],null,true);
895
+ }</script>
896
+ <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*"></script>
897
+ <!-- Served by mw1093 in 0.254 secs. -->
898
+ </body>
899
+ </html>