spellcop 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7a3a8be08d83f0a2c2bc094908bb82203fbe7cf7
4
+ data.tar.gz: c4a73ca029731d0d39137d097ddd786e7e51bed5
5
+ SHA512:
6
+ metadata.gz: c989e81265f70ade21bb1dc5637b376b79dd50b05febdb20728a06d5b599d3be639b351734ef98b9d536628419e5e67adba79d055228a8644d7887577d2c0974
7
+ data.tar.gz: f5885061ad96c190141265ac155855c561ce28e6ccadff7c90695708977488bce8c7762f8bc9e50344aa5ee9c52ad0b5365d6f358f2b1767e2989d7ff322e8f0
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.5
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in spellcop.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Hugo Abonizio
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Spellcop
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/spellcop`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'spellcop'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install spellcop
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/spellcop.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "spellcop"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/bin/spellcop ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby
2
+ require './lib/spellcop'
3
+
4
+ class Spellcop::CLI
5
+ # desc 'spellcop filename|foldername', 'a file or a folder to search for typos'
6
+ def self.check(name)
7
+ if File.file?(name)
8
+ puts Spellcop::FileChecker.new(name).check!
9
+ else
10
+ puts Spellcop::FolderChecker.new(name).check!
11
+ end
12
+ end
13
+ end
14
+
15
+ if ARGV.empty?
16
+ puts 'usage...'
17
+ else
18
+ Spellcop::CLI.check(ARGV.join ' ')
19
+ end
@@ -0,0 +1,26 @@
1
+ module Spellcop
2
+ class FileChecker
3
+ attr_reader :warnings
4
+
5
+ def initialize(filename)
6
+ @file = File.read(filename)
7
+ @warnings = []
8
+ @dict = FFI::Hunspell.dict('en_US')
9
+ end
10
+
11
+ def check!
12
+ comments = @file.scan /#(.*)/
13
+ comments.each do |comment|
14
+ words = comment.first.strip.scan /@(\w+)|\[(\w+)|(\w+)/
15
+ words.each do |result|
16
+ word = result.compact.first
17
+ # puts "wrong: #{word}" if word == 'tihs'
18
+ if !@dict.check? word and !word.spellcop_ignore?
19
+ @warnings << { word: word, suggest: @dict.suggest(word) }
20
+ end
21
+ end
22
+ end
23
+ @warnings
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,23 @@
1
+ module Spellcop
2
+ class FolderChecker
3
+ attr_reader :warnings, :files
4
+
5
+ def initialize(foldername, recursive = true)
6
+ @warnings = []
7
+ if recursive
8
+ @folder = "#{foldername}/**/*.rb"
9
+ else
10
+ @folder = "#{foldername}/*.rb"
11
+ end
12
+ @files = []
13
+ end
14
+
15
+ def check!
16
+ Dir[@folder].each do |file|
17
+ @warnings << { file: file, warnings: FileChecker.new(file).check! }
18
+ @files << file
19
+ end
20
+ @warnings
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,9 @@
1
+ module Spellcop
2
+ IGNORE = ['utf']
3
+
4
+ class ::String
5
+ def spellcop_ignore?
6
+ IGNORE.include? downcase or chars.first == chars.first.upcase or include? '_' or include? '-'
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module Spellcop
2
+ VERSION = '0.0.1'
3
+ end
data/lib/spellcop.rb ADDED
@@ -0,0 +1,8 @@
1
+ require 'ffi/hunspell'
2
+ require 'spellcop/ignore'
3
+ require 'spellcop/file_checker'
4
+ require 'spellcop/folder_checker'
5
+ require 'spellcop/version'
6
+
7
+ module Spellcop
8
+ end
data/spellcop.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'spellcop/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'spellcop'
8
+ spec.version = Spellcop::VERSION
9
+ spec.authors = ['Hugo Abonizio']
10
+ spec.email = ['hugo_abonizio@hotmail.com']
11
+
12
+ spec.summary = %q{Search for typos on your code.}
13
+ spec.description = %q{Search for typos on your code.}
14
+ spec.homepage = 'https://github.com/hugoabonizio/spellcop'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_dependency 'ffi-hunspell', '~> 0.3'
22
+ spec.add_dependency 'thor', '0.19.1'
23
+
24
+ spec.add_development_dependency 'bundler', '~> 1.10'
25
+ spec.add_development_dependency 'rake', '~> 10.0'
26
+ spec.add_development_dependency 'rspec'
27
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spellcop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Hugo Abonizio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ffi-hunspell
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.19.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.19.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.10'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.10'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Search for typos on your code.
84
+ email:
85
+ - hugo_abonizio@hotmail.com
86
+ executables:
87
+ - console
88
+ - setup
89
+ - spellcop
90
+ extensions: []
91
+ extra_rdoc_files: []
92
+ files:
93
+ - ".gitignore"
94
+ - ".rspec"
95
+ - ".travis.yml"
96
+ - Gemfile
97
+ - LICENSE.txt
98
+ - README.md
99
+ - Rakefile
100
+ - bin/console
101
+ - bin/setup
102
+ - bin/spellcop
103
+ - lib/spellcop.rb
104
+ - lib/spellcop/file_checker.rb
105
+ - lib/spellcop/folder_checker.rb
106
+ - lib/spellcop/ignore.rb
107
+ - lib/spellcop/version.rb
108
+ - spellcop.gemspec
109
+ homepage: https://github.com/hugoabonizio/spellcop
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.4.3
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Search for typos on your code.
133
+ test_files: []