word_handler 0.0.1
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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +53 -0
- data/Rakefile +1 -0
- data/bin/wpsword +38 -0
- data/lib/word_handler.rb +4 -0
- data/lib/word_handler/version.rb +3 -0
- data/lib/word_handler/wpsword.rb +65 -0
- data/word_handler.gemspec +24 -0
- metadata +89 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 TODO: Write your name
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# WordHandler
|
2
|
+
|
3
|
+
1.封装在windows系统下操作word的com组件接口,让在windows下使用ruby读写word更加容易。
|
4
|
+
2.提供一个命令行工具,wpsword ,
|
5
|
+
1.使用该工具批量产生和删除word文档。
|
6
|
+
2.批量读写word文档
|
7
|
+
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
gem 'word_handler'
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install word_handler
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
1.在ruby脚本中使用
|
26
|
+
require "word_handler"
|
27
|
+
|
28
|
+
word = WPS::Word.new()
|
29
|
+
|
30
|
+
word.givedoc("xhb_doc", "D:\\xhb_doc")
|
31
|
+
word.givedoc("cry_doc", "D:\\cyr_doc")
|
32
|
+
|
33
|
+
word.msg("xhb_doc", "hello, here is my msg 1")
|
34
|
+
word.msg("cry_doc", "hello, here is my msg 111")
|
35
|
+
word.msg("xhb_doc", "hello, here is my msg 2")
|
36
|
+
word.msg("cry_doc", "hello, here is my msg 222")
|
37
|
+
|
38
|
+
word.closedoc("xhb_doc")
|
39
|
+
word.closedoc("cry_doc")
|
40
|
+
|
41
|
+
word.close
|
42
|
+
|
43
|
+
2.命令行方式使用
|
44
|
+
|
45
|
+
wpsword -v -f "D:\\1.wps" -m "here is my first msg from commond line"
|
46
|
+
|
47
|
+
## Contributing
|
48
|
+
|
49
|
+
1. Fork it ( http://github.com/<my-github-username>/word_handler/fork )
|
50
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
51
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
52
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
53
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/wpsword
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
require "word_handler"
|
3
|
+
require "optparse"
|
4
|
+
|
5
|
+
option = {}
|
6
|
+
|
7
|
+
option_parser = OptionParser.new do | opts |
|
8
|
+
|
9
|
+
opts.banner = %q/
|
10
|
+
|
11
|
+
Help msg:
|
12
|
+
|
13
|
+
Example:
|
14
|
+
wpsword -v -f "D:\\yy.wps" -m "1234567890"
|
15
|
+
/
|
16
|
+
|
17
|
+
option[:visitable] = false
|
18
|
+
opts.on('-v', '--visitable', 'set the word visitable') do
|
19
|
+
option[:visitable] = true
|
20
|
+
end
|
21
|
+
|
22
|
+
opts.on('-f filename', '--file filename', 'specify the file name with full path name') do | value |
|
23
|
+
option[:filename] = value
|
24
|
+
end
|
25
|
+
|
26
|
+
opts.on('-m msg', '--msg msg', "tell the wpsword write a msg") do | value |
|
27
|
+
option[:msg] = value
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
end.parse!
|
32
|
+
|
33
|
+
word = WPS::Word.new(option[:visitable])
|
34
|
+
word.givedoc("test", "#{option[:filename]}")
|
35
|
+
word.msg("test", "#{option[:msg]}")
|
36
|
+
word.closedoc("test")
|
37
|
+
word.close
|
38
|
+
|
data/lib/word_handler.rb
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
|
2
|
+
require 'win32ole'
|
3
|
+
|
4
|
+
module WPS
|
5
|
+
|
6
|
+
class Word
|
7
|
+
|
8
|
+
@@doclist = {}
|
9
|
+
|
10
|
+
def initialize(visible = 'false')
|
11
|
+
@exe = WIN32OLE.new('wps.application')
|
12
|
+
@exe.visible = visible
|
13
|
+
end
|
14
|
+
|
15
|
+
=begin
|
16
|
+
功能:关闭word主程序
|
17
|
+
=end
|
18
|
+
def close
|
19
|
+
@exe.quit
|
20
|
+
end
|
21
|
+
|
22
|
+
=begin
|
23
|
+
创建doc文档
|
24
|
+
参数:
|
25
|
+
name 给doc取个名字
|
26
|
+
fpath doc文档的绝对路径
|
27
|
+
=end
|
28
|
+
def givedoc(name = nil, fpath = nil)
|
29
|
+
unless FileTest::exist?(fpath)
|
30
|
+
doc = @exe.Documents.Add()
|
31
|
+
doc.Activate
|
32
|
+
doc.SaveAs("#{fpath}", 0)
|
33
|
+
end
|
34
|
+
doc = @exe.Documents.Open("#{fpath}") ;
|
35
|
+
@@doclist["#{name}"] = doc
|
36
|
+
end
|
37
|
+
|
38
|
+
=begin
|
39
|
+
功能:关闭doc文档
|
40
|
+
参数:
|
41
|
+
name 给doc取的名字
|
42
|
+
=end
|
43
|
+
def closedoc(name = nil)
|
44
|
+
@@doclist["#{name}"].close
|
45
|
+
end
|
46
|
+
|
47
|
+
=begin
|
48
|
+
功能:往给定的doc文件添加信息
|
49
|
+
参数:
|
50
|
+
name 某个doc的名字
|
51
|
+
message 输入的信息
|
52
|
+
=end
|
53
|
+
def msg(name, message)
|
54
|
+
# 将当前文档设为活动状态
|
55
|
+
@@doclist["#{name}"].Activate
|
56
|
+
@@doclist["#{name}"].Content.Font.Size = 11
|
57
|
+
#@@doclist["#{name}"].Content.Text = "#{Time.now}: #{message}"
|
58
|
+
@@doclist["#{name}"].Range(@exe.Selection.End, @exe.Selection.End).Text = "#{Time.now}: #{message}\n"
|
59
|
+
@@doclist["#{name}"].Save
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'word_handler/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "word_handler"
|
8
|
+
spec.version = WordHandler::VERSION
|
9
|
+
spec.authors = ["xhb"]
|
10
|
+
spec.email = ["progamstart@163.com"]
|
11
|
+
spec.summary = %q{provide a WordHandler for dtp vm test}
|
12
|
+
spec.description = %q{provide a WordHandler for dtp vm test}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: word_handler
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- xhb
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.5'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.5'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: provide a WordHandler for dtp vm test
|
47
|
+
email:
|
48
|
+
- progamstart@163.com
|
49
|
+
executables:
|
50
|
+
- wpsword
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- .gitignore
|
55
|
+
- Gemfile
|
56
|
+
- LICENSE.txt
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- bin/wpsword
|
60
|
+
- lib/word_handler.rb
|
61
|
+
- lib/word_handler/version.rb
|
62
|
+
- lib/word_handler/wpsword.rb
|
63
|
+
- word_handler.gemspec
|
64
|
+
homepage: ''
|
65
|
+
licenses:
|
66
|
+
- MIT
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
requirements: []
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 1.8.28
|
86
|
+
signing_key:
|
87
|
+
specification_version: 3
|
88
|
+
summary: provide a WordHandler for dtp vm test
|
89
|
+
test_files: []
|