typocheck 0.9
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 +7 -0
- data/README.md +37 -0
- data/bin/icdiff +610 -0
- data/bin/typocheck +121955 -0
- data/lib/big.txt +121628 -0
- data/lib/comment_getter.rb +120 -0
- data/lib/custom.txt +0 -0
- data/lib/holmes.txt +5501 -0
- data/lib/model.rb +26 -0
- data/lib/model.rb.corrected +26 -0
- data/lib/spell_checker.rb +92 -0
- data/tools/icdiff +610 -0
- data/typocheck.gemspec +18 -0
- metadata +58 -0
data/typocheck.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.platform = Gem::Platform::RUBY
|
|
6
|
+
s.name = "typocheck"
|
|
7
|
+
s.version = "0.9"
|
|
8
|
+
s.date = %q{2015-02-14}
|
|
9
|
+
s.summary = "typo checking of comments in source code"
|
|
10
|
+
s.description = "typocheck, a comments typo checking tool for Ruby, Python, Javascript, Perl, Shell, C/C++"
|
|
11
|
+
s.author = "Minghe Huang"
|
|
12
|
+
s.email = "h.mignhe@gmail.com"
|
|
13
|
+
s.files = Dir["lib/*", "README.md", "typocheck.gemspec", "bin/*", "tools/*"]
|
|
14
|
+
s.require_paths = ['lib']
|
|
15
|
+
s.executables << "typocheck"
|
|
16
|
+
s.homepage = "http://minghe.me"
|
|
17
|
+
s.license = "MIT"
|
|
18
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: typocheck
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: '0.9'
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Minghe Huang
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-02-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: typocheck, a comments typo checking tool for Ruby, Python, Javascript,
|
|
14
|
+
Perl, Shell, C/C++
|
|
15
|
+
email: h.mignhe@gmail.com
|
|
16
|
+
executables:
|
|
17
|
+
- typocheck
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- bin/icdiff
|
|
23
|
+
- bin/typocheck
|
|
24
|
+
- lib/big.txt
|
|
25
|
+
- lib/comment_getter.rb
|
|
26
|
+
- lib/custom.txt
|
|
27
|
+
- lib/holmes.txt
|
|
28
|
+
- lib/model.rb
|
|
29
|
+
- lib/model.rb.corrected
|
|
30
|
+
- lib/spell_checker.rb
|
|
31
|
+
- tools/icdiff
|
|
32
|
+
- typocheck.gemspec
|
|
33
|
+
homepage: http://minghe.me
|
|
34
|
+
licenses:
|
|
35
|
+
- MIT
|
|
36
|
+
metadata: {}
|
|
37
|
+
post_install_message:
|
|
38
|
+
rdoc_options: []
|
|
39
|
+
require_paths:
|
|
40
|
+
- lib
|
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
|
+
requirements:
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '0'
|
|
51
|
+
requirements: []
|
|
52
|
+
rubyforge_project:
|
|
53
|
+
rubygems_version: 2.4.5
|
|
54
|
+
signing_key:
|
|
55
|
+
specification_version: 4
|
|
56
|
+
summary: typo checking of comments in source code
|
|
57
|
+
test_files: []
|
|
58
|
+
has_rdoc:
|