sogoumap2pdf 0.0.5 → 0.0.6
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.
- data/README.txt +2 -2
- data/config/hoe.rb +1 -1
- data/lib/sogoumap2pdf/sogou_map_image.rb +1 -1
- data/lib/sogoumap2pdf/version.rb +1 -1
- metadata +21 -1
data/README.txt
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
== SYNOPSIS:
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
Find out the link of the center picture using Firebug plugin in Firefox, then type:
|
|
16
|
+
sogoumap2pdf link map_widthxmap_height rowxcolumn save_file_name mode
|
|
17
17
|
for example:
|
|
18
18
|
sogoumap2pdf http://hbpic1.go2map.com/seamless/0/180/711/252/52/50449_10516.JPG 1024x768 5x5 gz.pdf sp
|
|
19
19
|
mode description:
|
data/config/hoe.rb
CHANGED
|
@@ -62,7 +62,7 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
|
|
|
62
62
|
|
|
63
63
|
# == Optional
|
|
64
64
|
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
|
65
|
-
|
|
65
|
+
p.extra_deps = EXTRA_DEPENDENCIES
|
|
66
66
|
|
|
67
67
|
#p.spec_extras = {} # A hash of extra values to set in the gemspec.
|
|
68
68
|
end
|
|
@@ -9,7 +9,7 @@ include Magick
|
|
|
9
9
|
# provides an access to google map
|
|
10
10
|
# emulates it as an image
|
|
11
11
|
#
|
|
12
|
-
# must be initialised by a link to an image from
|
|
12
|
+
# must be initialised by a link to an image from map.sogou.com
|
|
13
13
|
#
|
|
14
14
|
# http://hbpic3.go2map.com/seamless/0/180/792/504/105/100920_21058.JPG satellite
|
|
15
15
|
# http://hbpic2.go2map.com/seamless/0/180/792/504/105/100918_21057.JPG
|
data/lib/sogoumap2pdf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sogoumap2pdf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Ruan
|
|
@@ -12,6 +12,26 @@ cert_chain: []
|
|
|
12
12
|
date: 2008-08-21 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: pdf-writer
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.1.8
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: rmagick
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 2.5.2
|
|
34
|
+
version:
|
|
15
35
|
- !ruby/object:Gem::Dependency
|
|
16
36
|
name: hoe
|
|
17
37
|
type: :development
|