Top Level Namespace
Defined Under Namespace
Modules: Graphiclious
Classes: Delicious2Yaml, Delicious_Api, DotAttributes, FtpBrowserApi, GraphicliousMainWindow, Rubilicious, UrlGraph, YamlLinksToHtml, YamlLinksToJavascript
Constant Summary
collapse
- STYLES_FOLDER =
File.join(GRAPHICLIOUS_PATH, "styles")
- JS_TEMPLATES_FOLDER =
File.join(GRAPHICLIOUS_PATH, "javascript")
- FOXLIB =
loadFox
Instance Method Summary
collapse
Instance Method Details
#get_password_from_user ⇒ Object
210
211
212
|
# File 'lib/graphiclious/delicious2yaml.rb', line 210
def get_password_from_user
get_string_from_user
end
|
#get_string_from_user ⇒ Object
206
207
208
|
# File 'lib/graphiclious/delicious2yaml.rb', line 206
def get_string_from_user
gets[0..-2]
end
|
#loadFox ⇒ Object
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# File 'lib/graphiclious/require_fox.rb', line 1
def loadFox
begin
['fox16', 'fox14', 'fox12'].each { |v|
begin
require v
return v
rescue LoadError
end
}
require 'fox16'
end
end
|