Module: HtmlTo
- Defined in:
- lib/html_to.rb,
lib/html_to/version.rb,
lib/html_to/chromium.rb,
lib/html_to/configuration.rb,
lib/html_to/meta_image_generate_job.rb,
lib/generators/html_to/install_generator.rb,
lib/generators/html_to/copy_template_generator.rb
Defined Under Namespace
Modules: Chromium, ClassMethods, Configuration, Generators, InstanceMethods Classes: HtmlToImageSettings, ImageGenerate, MetaImageGenerateJob, Serializer
Constant Summary collapse
- VERSION =
'1.1.3'.freeze
Class Attribute Summary collapse
-
.included_in ⇒ Object
readonly
Returns the value of attribute included_in.
Class Method Summary collapse
Class Attribute Details
.included_in ⇒ Object (readonly)
Returns the value of attribute included_in.
64 65 66 |
# File 'lib/html_to.rb', line 64 def included_in @included_in end |
Class Method Details
.included(klass) ⇒ Object
66 67 68 69 70 71 72 73 74 75 |
# File 'lib/html_to.rb', line 66 def included(klass) @included_in ||= [] @included_in << klass @included_in.uniq! klass.class_eval do extend ClassMethods include InstanceMethods end end |