Module: AdvancedConnection
- Extended by:
- ActiveSupport::Autoload
- Defined in:
- lib/advanced_connection/error.rb,
lib/advanced_connection.rb,
lib/advanced_connection/config.rb,
lib/advanced_connection/railtie.rb,
lib/advanced_connection/version.rb,
lib/advanced_connection/active_record_ext.rb,
lib/advanced_connection/active_record_ext/connection_pool.rb,
lib/advanced_connection/active_record_ext/without_connection.rb,
lib/generators/advanced_connection/install/install_generator.rb
Overview
Copyright © 2016 Finalsite, LLC Copyright © 2016 Carl P. Corliss <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Defined Under Namespace
Modules: ActiveRecordExt Classes: Config, Error, InstallGenerator, Railtie
Constant Summary collapse
- MAJOR =
0
- MINOR =
5
- PATCH =
8
- VERSION =
"%d.%d.%d" % [ MAJOR, MINOR, PATCH ]
- GEM_VERSION =
Gem::Version.new(VERSION)
Class Method Summary collapse
- .config ⇒ Object
- .configure(overwrite = false) ⇒ Object
- .method_missing(method, *args, &block) ⇒ Object
- .respond_to_missing?(method, include_private = false) ⇒ Boolean
- .to_h ⇒ Object
Class Method Details
.config ⇒ Object
48 49 50 |
# File 'lib/advanced_connection.rb', line 48 def config @config ||= Config.instance end |
.configure(overwrite = false) ⇒ Object
43 44 45 46 |
# File 'lib/advanced_connection.rb', line 43 def configure(overwrite = false) return config unless overwrite || !config.loaded? (yield config).tap { config.loaded! } end |
.method_missing(method, *args, &block) ⇒ Object
52 53 54 55 |
# File 'lib/advanced_connection.rb', line 52 def method_missing(method, *args, &block) return super unless config.respond_to? method config.public_send(method, *args, &block) end |
.respond_to_missing?(method, include_private = false) ⇒ Boolean
57 58 59 |
# File 'lib/advanced_connection.rb', line 57 def respond_to_missing?(method, include_private = false) config.respond_to?(method) || super end |
.to_h ⇒ Object
39 40 41 |
# File 'lib/advanced_connection.rb', line 39 def to_h config.to_h end |