Class: Js2bookmarklet
- Inherits:
-
Object
- Object
- Js2bookmarklet
- Defined in:
- lib/js2bookmarklet.rb
Constant Summary collapse
- LINK_TEXT =
"Drag me to your bookmarks"
Instance Method Summary collapse
-
#initialize(input = "", options = {}) ⇒ Js2bookmarklet
constructor
A new instance of Js2bookmarklet.
- #to_bookmarklet ⇒ Object
Constructor Details
#initialize(input = "", options = {}) ⇒ Js2bookmarklet
Returns a new instance of Js2bookmarklet.
12 13 14 15 16 |
# File 'lib/js2bookmarklet.rb', line 12 def initialize(input = "", = {}) @in = input @out = "" @options = end |
Instance Method Details
#to_bookmarklet ⇒ Object
18 19 20 21 22 23 |
# File 'lib/js2bookmarklet.rb', line 18 def to_bookmarklet minify escape add_link @out end |