utf8_sanitizer 0.0.1.pre.rc.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f10f6fad00fb019f6ea6c7e479462ea774533b019610a0a26a70543daa08f9b0
4
+ data.tar.gz: 6c86823dbc4ec6a23e430cac7950b2df9580cde88520f64706a03a4851684664
5
+ SHA512:
6
+ metadata.gz: 6e7fbf38846b842a8b9319cc00d3404d59984d719b6637a4eb529f2e6667c58fa6bf0899d1aad1d9309218db9573e58e357993ac75e413a68ff20e7886f25c11
7
+ data.tar.gz: 1836a12217d2dc31808cb4420076db4f747edf9753334d02f19bfebde9810c0e31c160bcbdc26a4ecab6fdb02048f68d19649fe8d236b9e9a1d2a6d9e699aa5c
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ crm_formatter-*.gem
11
+ .DS_Store
12
+ .idea/
13
+ .xlsx
14
+ .txt
15
+ .csv
16
+ !extensions.csv
data/.rspec_status ADDED
@@ -0,0 +1,4 @@
1
+ example_id | status | run_time |
2
+ ---------------------------------- | ------ | --------------- |
3
+ ./spec/utf8_sanitizer_spec.rb[1:1] | passed | 0.00112 seconds |
4
+ ./spec/utf8_sanitizer_spec.rb[1:2] | failed | 0.02392 seconds |
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.1
5
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at 4rlm@protonmail.ch. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in utf8_sanitizer.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Adam Booth
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,43 @@
1
+ # Utf8Sanitizer
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/utf8_sanitizer`. 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 'utf8_sanitizer'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install utf8_sanitizer
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]/utf8_sanitizer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the Utf8Sanitizer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/utf8_sanitizer/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,18 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require 'utf8_sanitizer'
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
8
+ task :test => :spec
9
+
10
+ task :console do
11
+ require 'irb'
12
+ require 'irb/completion'
13
+ require 'utf8_sanitizer' # You know what to do.
14
+ require "active_support/all"
15
+ ARGV.clear
16
+ Utf8Sanitizer.run_wrap
17
+ IRB.start
18
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "utf8_sanitizer"
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__)
data/bin/setup ADDED
@@ -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,4 @@
1
+ module Utf8Sanitizer
2
+ # VERSION = "0.0.1-rc.1"
3
+ VERSION = "0.0.1.pre.rc.1"
4
+ end
@@ -0,0 +1,11 @@
1
+ require "utf8_sanitizer/version"
2
+
3
+ module Utf8Sanitizer
4
+
5
+ def self.run_wrap
6
+ puts "Sample the Wrap!"
7
+ # wrap = self::Wrap.new
8
+ # wrap.run_wrap ## returns formatted urls.
9
+ end
10
+
11
+ end
@@ -0,0 +1,69 @@
1
+
2
+ # frozen_string_literal: false
3
+
4
+ lib = File.expand_path('lib', __dir__)
5
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
+ require 'utf8_sanitizer'
7
+ require 'utf8_sanitizer/version'
8
+
9
+ Gem::Specification.new do |spec|
10
+ spec.name = 'utf8_sanitizer'
11
+ spec.version = Utf8Sanitizer::VERSION
12
+ spec.authors = ['Adam Booth']
13
+ spec.email = ['4rlm@protonmail.ch']
14
+ spec.homepage = 'https://github.com/4rlm/utf8_sanitizer'
15
+ spec.license = 'MIT'
16
+
17
+ spec.summary = "Still in Development: Removes invalid UTF8 characters, and extra whitespace (carriage returns, new lines, tabs, spaces, etc.) from csv, or strings."
18
+ spec.description = "Removes invalid UTF8 characters, and extra whitespace (carriage returns, new lines, tabs, spaces, etc.) from csv, or strings. Example: ABC Au\\xC1tos,123 E Main St,Anytown,TX,75142,(888) 457-4391\\n\\r\\n => ABC Autos,123 E Main St,Anytown,TX,75142,(888) 457-4391"
19
+
20
+ if spec.respond_to?(:metadata)
21
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
22
+ else
23
+ raise 'RubyGems 2.0 or newer is required to protect against ' \
24
+ 'public gem pushes.'
25
+ end
26
+
27
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
28
+ f.match(%r{^(test|spec|features)/})
29
+ end
30
+
31
+ spec.bindir = 'exe'
32
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ['lib']
34
+ spec.post_install_message = "Thanks for installing utf8_sanitizer!"
35
+
36
+ spec.required_ruby_version = '~> 2.5.1'
37
+ spec.add_dependency 'activesupport', '~> 5.2', '>= 5.2.0'
38
+ # spec.add_dependency "activesupport-inflector", ['~> 0.1.0']
39
+ spec.add_development_dependency 'bundler', '~> 1.16', '>= 1.16.2'
40
+ spec.add_development_dependency 'byebug', '~> 10.0', '>= 10.0.2'
41
+ spec.add_development_dependency 'class_indexer', '~> 0.3.0'
42
+ spec.add_development_dependency 'irbtools', '~> 2.2', '>= 2.2.1'
43
+ spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.1'
44
+ spec.add_development_dependency 'rspec', '~> 3.7'
45
+ spec.add_development_dependency 'rubocop', '~> 0.56.0'
46
+ spec.add_development_dependency 'ruby-beautify', '~> 0.97.4'
47
+ spec.add_development_dependency "pry", "~> 0.11.3"
48
+ # spec.add_runtime_dependency 'library', '~> 2.2'
49
+ # spec.add_dependency 'activerecord', '>= 3.0'
50
+ # spec.add_dependency 'actionpack', '>= 3.0'
51
+ # spec.add_dependency 'i18n'
52
+ # spec.add_dependency 'polyamorous', '~> 1.3.2'
53
+ # spec.add_development_dependency 'machinist', '~> 1.0.6'
54
+ # spec.add_development_dependency 'faker', '~> 0.9.5'
55
+ # spec.add_development_dependency 'sqlite3', '~> 1.3.3'
56
+ # spec.add_development_dependency 'pg', '~> 0.21'
57
+ # spec.add_development_dependency 'mysql2', '0.3.20'
58
+
59
+ # spec.requirements << 'libmagick, v6.0'
60
+ # spec.requirements << 'A good graphics card'
61
+ # # This gem will work with 1.8.6 or greater...
62
+ # spec.required_ruby_version = '>= 1.8.6'
63
+ #
64
+ # # Only with ruby 2.0.x
65
+ # spec.required_ruby_version = '~> 2.0'
66
+ #
67
+ # # Only with ruby between 2.2.0 and 2.2.2
68
+ # spec.required_ruby_version = ['>= 2.2.0', '< 2.2.3']
69
+ end
@@ -0,0 +1,36 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "utf8_sanitizer/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "utf8_sanitizer"
8
+ spec.version = Utf8Sanitizer::VERSION
9
+ spec.authors = ["Adam Booth"]
10
+ spec.email = ["4rlm@protonmail.ch"]
11
+
12
+ spec.summary = %q{TODO: Write a short summary, because RubyGems requires one.}
13
+ spec.description = %q{TODO: Write a longer description or delete this line.}
14
+ spec.homepage = "TODO: Put your gem's website or public repo URL here."
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.16"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+ end
metadata ADDED
@@ -0,0 +1,233 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: utf8_sanitizer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre.rc.1
5
+ platform: ruby
6
+ authors:
7
+ - Adam Booth
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-06-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.2'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 5.2.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '5.2'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 5.2.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.16'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.16.2
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.16'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 1.16.2
53
+ - !ruby/object:Gem::Dependency
54
+ name: byebug
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '10.0'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 10.0.2
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '10.0'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 10.0.2
73
+ - !ruby/object:Gem::Dependency
74
+ name: class_indexer
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: 0.3.0
80
+ type: :development
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: 0.3.0
87
+ - !ruby/object:Gem::Dependency
88
+ name: irbtools
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - "~>"
92
+ - !ruby/object:Gem::Version
93
+ version: '2.2'
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: 2.2.1
97
+ type: :development
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.2'
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: 2.2.1
107
+ - !ruby/object:Gem::Dependency
108
+ name: rake
109
+ requirement: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - "~>"
112
+ - !ruby/object:Gem::Version
113
+ version: '12.3'
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: 12.3.1
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '12.3'
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: 12.3.1
127
+ - !ruby/object:Gem::Dependency
128
+ name: rspec
129
+ requirement: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: '3.7'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - "~>"
139
+ - !ruby/object:Gem::Version
140
+ version: '3.7'
141
+ - !ruby/object:Gem::Dependency
142
+ name: rubocop
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: 0.56.0
148
+ type: :development
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - "~>"
153
+ - !ruby/object:Gem::Version
154
+ version: 0.56.0
155
+ - !ruby/object:Gem::Dependency
156
+ name: ruby-beautify
157
+ requirement: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - "~>"
160
+ - !ruby/object:Gem::Version
161
+ version: 0.97.4
162
+ type: :development
163
+ prerelease: false
164
+ version_requirements: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - "~>"
167
+ - !ruby/object:Gem::Version
168
+ version: 0.97.4
169
+ - !ruby/object:Gem::Dependency
170
+ name: pry
171
+ requirement: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - "~>"
174
+ - !ruby/object:Gem::Version
175
+ version: 0.11.3
176
+ type: :development
177
+ prerelease: false
178
+ version_requirements: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - "~>"
181
+ - !ruby/object:Gem::Version
182
+ version: 0.11.3
183
+ description: 'Removes invalid UTF8 characters, and extra whitespace (carriage returns,
184
+ new lines, tabs, spaces, etc.) from csv, or strings. Example: ABC Au\xC1tos,123
185
+ E Main St,Anytown,TX,75142,(888) 457-4391\n\r\n => ABC Autos,123 E Main St,Anytown,TX,75142,(888)
186
+ 457-4391'
187
+ email:
188
+ - 4rlm@protonmail.ch
189
+ executables: []
190
+ extensions: []
191
+ extra_rdoc_files: []
192
+ files:
193
+ - ".gitignore"
194
+ - ".rspec_status"
195
+ - ".travis.yml"
196
+ - CODE_OF_CONDUCT.md
197
+ - Gemfile
198
+ - LICENSE.txt
199
+ - README.md
200
+ - Rakefile
201
+ - bin/console
202
+ - bin/setup
203
+ - lib/utf8_sanitizer.rb
204
+ - lib/utf8_sanitizer/version.rb
205
+ - utf8_sanitizer.gemspec
206
+ - utf8_sanitizer_gemspec_orig.txt
207
+ homepage: https://github.com/4rlm/utf8_sanitizer
208
+ licenses:
209
+ - MIT
210
+ metadata:
211
+ allowed_push_host: https://rubygems.org
212
+ post_install_message: Thanks for installing utf8_sanitizer!
213
+ rdoc_options: []
214
+ require_paths:
215
+ - lib
216
+ required_ruby_version: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - "~>"
219
+ - !ruby/object:Gem::Version
220
+ version: 2.5.1
221
+ required_rubygems_version: !ruby/object:Gem::Requirement
222
+ requirements:
223
+ - - ">"
224
+ - !ruby/object:Gem::Version
225
+ version: 1.3.1
226
+ requirements: []
227
+ rubyforge_project:
228
+ rubygems_version: 2.7.6
229
+ signing_key:
230
+ specification_version: 4
231
+ summary: 'Still in Development: Removes invalid UTF8 characters, and extra whitespace
232
+ (carriage returns, new lines, tabs, spaces, etc.) from csv, or strings.'
233
+ test_files: []