html2img 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -1
- data/html2img-0.0.2.gem +0 -0
- data/html2img.gemspec +2 -2
- data/lib/html2img/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec147c60b7bc797af688e1392877ce1598026719
|
4
|
+
data.tar.gz: 53b106fbb46e04380f75dac91fcaf1d038820ccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c85226c312cbea783eb4ec6edb9080bcf8a676c6f775518f4f01ee839db2d9e894e34171297040b7a542dc2a1cd48e4652b33743da825c690f6dae7677132c7
|
7
|
+
data.tar.gz: 30793baa92d5a6a5f19a898e2dd4cdbfd988959fb23b24364fb7b3cd93e47fd1fc8f473051ee5b3ae86c3a55133ec13f6dcae96e2eba3aa9ae25b88fae1db334
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
# Html2img
|
2
2
|
|
3
|
-
This gem enables you to download HTML elements at the click of a button. Requires JQuery.
|
3
|
+
This gem enables you to download HTML elements at the click of a button. Requires JQuery. This Gem uses JavaScript files from
|
4
|
+
https://github.com/hongru/canvas2image
|
5
|
+
https://github.com/niklasvh/html2canvas
|
6
|
+
https://github.com/dankogai/js-base64
|
4
7
|
|
5
8
|
## Installation
|
6
9
|
|
data/html2img-0.0.2.gem
ADDED
Binary file
|
data/html2img.gemspec
CHANGED
@@ -6,10 +6,10 @@ require 'html2img/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "html2img"
|
8
8
|
spec.version = Html2img::VERSION
|
9
|
-
spec.authors = ["
|
9
|
+
spec.authors = ["Edward Mothershaw"]
|
10
10
|
spec.email = ["ucabeam@ucl.ac.uk"]
|
11
11
|
|
12
|
-
spec.summary = %q{Allows the easy downloading of HTML elements.}
|
12
|
+
spec.summary = %q{Allows the easy downloading of HTML elements. Requires JQuery}
|
13
13
|
# spec.description = %q{TODO: Write a longer description or delete this line.}
|
14
14
|
spec.homepage = 'http://rubygems.org/gems/html2img'
|
15
15
|
spec.license = "MIT"
|
data/lib/html2img/version.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html2img
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Edward Mothershaw
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -56,6 +56,7 @@ files:
|
|
56
56
|
- app/assets/javascripts/html2img.js
|
57
57
|
- bin/console
|
58
58
|
- bin/setup
|
59
|
+
- html2img-0.0.2.gem
|
59
60
|
- html2img.gemspec
|
60
61
|
- lib/html2img.rb
|
61
62
|
- lib/html2img/engine.rb
|
@@ -83,5 +84,5 @@ rubyforge_project:
|
|
83
84
|
rubygems_version: 2.4.6
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
|
-
summary: Allows the easy downloading of HTML elements.
|
87
|
+
summary: Allows the easy downloading of HTML elements. Requires JQuery
|
87
88
|
test_files: []
|