Module: Mongify
- Defined in:
- lib/mongify.rb,
lib/mongify/ui.rb,
lib/mongify/status.rb,
lib/mongify/version.rb,
lib/mongify/exceptions.rb,
lib/mongify/cli/options.rb,
lib/mongify/progressbar.rb,
lib/mongify/translation.rb,
lib/mongify/configuration.rb,
lib/mongify/database/table.rb,
lib/mongify/cli/application.rb,
lib/mongify/database/column.rb,
lib/mongify/cli/command/help.rb,
lib/mongify/translation/sync.rb,
lib/mongify/database/data_row.rb,
lib/mongify/cli/command/worker.rb,
lib/mongify/cli/command/version.rb,
lib/mongify/translation/printer.rb,
lib/mongify/translation/process.rb,
lib/mongify/database/sql_connection.rb,
lib/mongify/database/base_connection.rb,
lib/mongify/database/no_sql_connection.rb,
lib/mongify/translation/processor_common.rb
Overview
Ruby/ProgressBar - a text progress bar library
Copyright © 2001-2005 Satoru Takabayashi <[email protected]>
All rights reserved.
This is free software with ABSOLUTELY NO WARRANTY.
You can redistribute it and/or modify it under the terms of Ruby’s license.
This has been modified by
Andrew Kalek
Anlek Consulting
http://anlek.com
Defined Under Namespace
Modules: CLI, Database Classes: Configuration, ConfigurationError, ConfigurationFileNotFound, DatabaseColumnExpected, FileNotFound, InvalidOption, MongifyError, NoSqlConnectionInvalid, NoSqlConnectionRequired, NotImplementedMongifyError, ProgressBar, ReversedProgressBar, RootMissing, SqlConnectionInvalid, SqlConnectionRequired, Status, Translation, TranslationFileNotFound, UI
Constant Summary collapse
- VERSION =
Mongify’s Current Version Number
"1.3.2"
Class Method Summary collapse
-
.root ⇒ Object
Raises RootMissing if you attempt to call root without setting it.
-
.root=(value) ⇒ Object
Handles setting root for the application.
Class Method Details
.root ⇒ Object
Raises RootMissing if you attempt to call root without setting it
26 27 28 29 |
# File 'lib/mongify.rb', line 26 def root raise RootMissing, "Root not configured" if @root.nil? @root end |
.root=(value) ⇒ Object
Handles setting root for the application
22 23 24 |
# File 'lib/mongify.rb', line 22 def root=(value) @root = value end |