tyccl_tim_fixed 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.
Files changed (53) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +6 -0
  3. data/LICENSE +20 -0
  4. data/README.md +75 -0
  5. data/Rakefile +11 -0
  6. data/doc/Object.html +154 -0
  7. data/doc/README_md.html +182 -0
  8. data/doc/Tyccl/Containers.html +130 -0
  9. data/doc/Tyccl/Logger.html +130 -0
  10. data/doc/Tyccl/YAML.html +130 -0
  11. data/doc/Tyccl.html +1020 -0
  12. data/doc/created.rid +3 -0
  13. data/doc/images/add.png +0 -0
  14. data/doc/images/arrow_up.png +0 -0
  15. data/doc/images/brick.png +0 -0
  16. data/doc/images/brick_link.png +0 -0
  17. data/doc/images/bug.png +0 -0
  18. data/doc/images/bullet_black.png +0 -0
  19. data/doc/images/bullet_toggle_minus.png +0 -0
  20. data/doc/images/bullet_toggle_plus.png +0 -0
  21. data/doc/images/date.png +0 -0
  22. data/doc/images/delete.png +0 -0
  23. data/doc/images/find.png +0 -0
  24. data/doc/images/loadingAnimation.gif +0 -0
  25. data/doc/images/macFFBgHack.png +0 -0
  26. data/doc/images/package.png +0 -0
  27. data/doc/images/page_green.png +0 -0
  28. data/doc/images/page_white_text.png +0 -0
  29. data/doc/images/page_white_width.png +0 -0
  30. data/doc/images/plugin.png +0 -0
  31. data/doc/images/ruby.png +0 -0
  32. data/doc/images/tag_blue.png +0 -0
  33. data/doc/images/tag_green.png +0 -0
  34. data/doc/images/transparent.png +0 -0
  35. data/doc/images/wrench.png +0 -0
  36. data/doc/images/wrench_orange.png +0 -0
  37. data/doc/images/zoom.png +0 -0
  38. data/doc/index.html +166 -0
  39. data/doc/js/darkfish.js +155 -0
  40. data/doc/js/jquery.js +18 -0
  41. data/doc/js/navigation.js +142 -0
  42. data/doc/js/search.js +94 -0
  43. data/doc/js/search_index.js +1 -0
  44. data/doc/js/searcher.js +228 -0
  45. data/doc/rdoc.css +595 -0
  46. data/doc/table_of_contents.html +111 -0
  47. data/lib/Inverted.yaml +77458 -0
  48. data/lib/cilin.txt +17817 -0
  49. data/lib/tyccl/version.rb +3 -0
  50. data/lib/tyccl.rb +371 -0
  51. data/test/test_tyccl.rb +151 -0
  52. data/tyccl.gemspec +23 -0
  53. metadata +133 -0
data/tyccl.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'tyccl/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "tyccl_tim_fixed"
8
+ spec.version = Tyccl::VERSION
9
+ spec.authors = ["JoeWoo"]
10
+ spec.email = ["0wujian0@gmail.com"]
11
+ spec.summary = %q{"tools of analysing similarity between Chinese Words."}
12
+ spec.description = %q{"tyccl(同义词词林 哈工大扩展版) is a ruby gem that provides friendly functions to analyse similarity between Chinese Words."}
13
+ spec.homepage = "https://github.com/TimLang/tyccl"
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
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tyccl_tim_fixed
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - JoeWoo
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-09-02 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: ! '"tyccl(同义词词林 哈工大扩展版) is a ruby gem that provides friendly functions
47
+ to analyse similarity between Chinese Words."'
48
+ email:
49
+ - 0wujian0@gmail.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - .gitignore
55
+ - Gemfile
56
+ - LICENSE
57
+ - README.md
58
+ - Rakefile
59
+ - doc/Object.html
60
+ - doc/README_md.html
61
+ - doc/Tyccl.html
62
+ - doc/Tyccl/Containers.html
63
+ - doc/Tyccl/Logger.html
64
+ - doc/Tyccl/YAML.html
65
+ - doc/created.rid
66
+ - doc/images/add.png
67
+ - doc/images/arrow_up.png
68
+ - doc/images/brick.png
69
+ - doc/images/brick_link.png
70
+ - doc/images/bug.png
71
+ - doc/images/bullet_black.png
72
+ - doc/images/bullet_toggle_minus.png
73
+ - doc/images/bullet_toggle_plus.png
74
+ - doc/images/date.png
75
+ - doc/images/delete.png
76
+ - doc/images/find.png
77
+ - doc/images/loadingAnimation.gif
78
+ - doc/images/macFFBgHack.png
79
+ - doc/images/package.png
80
+ - doc/images/page_green.png
81
+ - doc/images/page_white_text.png
82
+ - doc/images/page_white_width.png
83
+ - doc/images/plugin.png
84
+ - doc/images/ruby.png
85
+ - doc/images/tag_blue.png
86
+ - doc/images/tag_green.png
87
+ - doc/images/transparent.png
88
+ - doc/images/wrench.png
89
+ - doc/images/wrench_orange.png
90
+ - doc/images/zoom.png
91
+ - doc/index.html
92
+ - doc/js/darkfish.js
93
+ - doc/js/jquery.js
94
+ - doc/js/navigation.js
95
+ - doc/js/search.js
96
+ - doc/js/search_index.js
97
+ - doc/js/searcher.js
98
+ - doc/rdoc.css
99
+ - doc/table_of_contents.html
100
+ - lib/Inverted.yaml
101
+ - lib/cilin.txt
102
+ - lib/tyccl.rb
103
+ - lib/tyccl/version.rb
104
+ - test/test_tyccl.rb
105
+ - tyccl.gemspec
106
+ homepage: https://github.com/TimLang/tyccl
107
+ licenses:
108
+ - MIT
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 1.8.25
128
+ signing_key:
129
+ specification_version: 3
130
+ summary: ! '"tools of analysing similarity between Chinese Words."'
131
+ test_files:
132
+ - test/test_tyccl.rb
133
+ has_rdoc: