vanish 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f304ebe82898bc94bbedaf0fe0444f575152d80c
4
+ data.tar.gz: 12aa222c6548c9a553cb8f933a8e63d34412b1b7
5
+ SHA512:
6
+ metadata.gz: e54361d6032a233943c780fe2b821ea2fc7abf19222bbfaaec833105366c9b0e3102a6702148674904cae11d65bec3808d6d61f6ec614c4db91acea5e061161d
7
+ data.tar.gz: 730a78edc28699edf0c1bbd347a6440e8f451372756002807d06d5dd437e63eec8d5a6dea5c5f54653cbbd1d3fa69e79513755c4512e4fc0fc2c1b89d68ed5dd
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,14 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.0.0
5
+ - 2.1.10
6
+ - 2.2.7
7
+ - 2.3.4
8
+ - 2.4.1
9
+ - head
10
+ before_install: gem install bundler -v 1.14.6
11
+
12
+ matrix:
13
+ allow_failures:
14
+ - rvm: head
@@ -0,0 +1,3 @@
1
+ ## 0.1.0
2
+
3
+ - The first release. `vanish` removes the useless white space in the text file.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in vanish.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Koichi ITO
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.
@@ -0,0 +1,71 @@
1
+ # vanish
2
+
3
+ `vanish` removes the useless white space in the text file.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'vanish'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```sh
16
+ % bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```sh
22
+ % gem install vanish
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ Display the contents to apply vanish command on standard output.
28
+
29
+ ```sh
30
+ % vanish .
31
+ ```
32
+
33
+ It corrects automatically by vanish command.
34
+
35
+ ```sh
36
+ % vanish -a .
37
+ ```
38
+
39
+ or
40
+
41
+ ```sh
42
+ % vanish --auto-correct .
43
+ ```
44
+
45
+ As a result, remove blank lines at the top and bottom of the file and a white space at the end of line.
46
+
47
+
48
+ ```diff
49
+ -
50
+ -
51
+ def say
52
+ - puts 'hello'
53
+ + puts 'hello'
54
+ end
55
+ -
56
+ -
57
+ ```
58
+
59
+ ## Development
60
+
61
+ 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.
62
+
63
+ 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).
64
+
65
+ ## Contributing
66
+
67
+ Bug reports and pull requests are welcome on GitHub at https://github.com/koic/vanish.
68
+
69
+ ## License
70
+
71
+ vanish is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -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
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'vanishing_vision'
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(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'vanishing_vision'
4
+ require 'vanishing_vision/version'
5
+ require 'optparse'
6
+
7
+ Version = VanishingVision::VERSION
8
+
9
+ options = {}
10
+
11
+ opt = OptionParser.new('usage: vanish [-a] path ...')
12
+ opt.on('-a', '--auto-correct', 'auto correct (default is just to display)') {|v| options[:auto_correct] = true }
13
+ opt.on('-v', '--version', 'version') {|v| options[:version] = true } # overwrite
14
+
15
+ begin
16
+ opt.permute!(ARGV)
17
+
18
+ raise if options.empty? && ARGV.empty?
19
+
20
+ if options[:version]
21
+ puts "vanish #{VanishingVision::VERSION}"
22
+ exit
23
+ end
24
+
25
+ ARGV.each do |path|
26
+ VanishingVision.vanish(path, options)
27
+ end
28
+ rescue
29
+ puts opt.help
30
+
31
+ exit!
32
+ end
@@ -0,0 +1,22 @@
1
+ require 'nkf'
2
+ require 'pathname'
3
+
4
+ require 'vanishing_vision/core'
5
+ require 'vanishing_vision/engine'
6
+
7
+ module VanishingVision
8
+ def vanish(target_path, options = {})
9
+ target = Pathname(target_path)
10
+
11
+ if target.file?
12
+ Engine.new(target).run(options[:auto_correct])
13
+ else
14
+ Dir[target.join('**/*')].each do |path|
15
+ next if File.directory?(path)
16
+
17
+ Engine.new(path).run(options[:auto_correct])
18
+ end
19
+ end
20
+ end
21
+ module_function :vanish
22
+ end
@@ -0,0 +1,40 @@
1
+ module VanishingVision
2
+ class Core
3
+ def initialize(source)
4
+ @source = source
5
+ end
6
+
7
+ def vanish
8
+ begin
9
+ lines = @source.dup.split("\n")
10
+ rescue
11
+ return # For example, it occurs in UTF-32[BUG]
12
+ end
13
+
14
+ lines.map!(&:rstrip)
15
+
16
+ lines = remove_leading_blank_lines(lines)
17
+ lines = remove_leading_blank_lines(lines.reverse).reverse
18
+
19
+ lines.join("\n") << "\n"
20
+ end
21
+
22
+ private
23
+
24
+ def remove_leading_blank_lines(lines)
25
+ delete_line_count = 0
26
+
27
+ lines.each do |line|
28
+ if line == ''
29
+ delete_line_count += 1
30
+ else
31
+ break
32
+ end
33
+ end
34
+
35
+ delete_line_count.times { lines.delete_at(0) }
36
+
37
+ lines
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,28 @@
1
+ require 'diffy'
2
+
3
+ Diffy::Diff.default_format = :color
4
+
5
+ module VanishingVision
6
+ class Engine
7
+ def initialize(path)
8
+ @path = path
9
+ end
10
+
11
+ def run(auto_correct)
12
+ source = File.read(@path)
13
+
14
+ return if NKF.guess(source) == Encoding::ASCII_8BIT
15
+
16
+ core = Core.new(source)
17
+
18
+ changed_source = core.vanish
19
+
20
+ unless source == changed_source
21
+ puts "diff #{@path}"
22
+ puts Diffy::Diff.new(source, changed_source)
23
+
24
+ File.open(@path, 'w+') {|f| f.write(changed_source) } if auto_correct
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,3 @@
1
+ module VanishingVision
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,25 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'vanishing_vision/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'vanish'
7
+ spec.version = VanishingVision::VERSION
8
+ spec.authors = ['Koichi ITO']
9
+ spec.email = ['koic.ito@gmail.com']
10
+
11
+ spec.summary = '`vanish` removes the useless white space in the text file.'
12
+ spec.description = '`vanish` removes the useless white space in the text file.'
13
+ spec.homepage = 'https://github.com/koic/vanish'
14
+ spec.license = 'MIT'
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = 'exe'
17
+ spec.executables = ['vanish']
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_dependency 'diffy'
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.14'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'rspec', '~> 3.0'
25
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vanish
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Koichi ITO
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-05-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: diffy
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.14'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.14'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ description: "`vanish` removes the useless white space in the text file."
70
+ email:
71
+ - koic.ito@gmail.com
72
+ executables:
73
+ - vanish
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - ".rspec"
79
+ - ".travis.yml"
80
+ - CHANGELOG.md
81
+ - Gemfile
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - exe/vanish
88
+ - lib/vanishing_vision.rb
89
+ - lib/vanishing_vision/core.rb
90
+ - lib/vanishing_vision/engine.rb
91
+ - lib/vanishing_vision/version.rb
92
+ - vanish.gemspec
93
+ homepage: https://github.com/koic/vanish
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.6.11
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: "`vanish` removes the useless white space in the text file."
117
+ test_files: []