crm_formatter 2.2 → 2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dce92d2197d8eb1858271b89a6dd9e18af886422398a752c585d6b9be65f2c09
4
- data.tar.gz: 4dd2bd7565af8e1b7f5a4c15fde18eb74b03a81806489b63d791843c7c40a224
3
+ metadata.gz: 9f74cc9bf23133a08a779b21ef9ff18ba2c00434dc29d321cc0e5c5622c6b9d9
4
+ data.tar.gz: 753d4d8005bb7303b6b4567c5bc2ae2aa40d8e0a7d0a82b6104166a919b0d595
5
5
  SHA512:
6
- metadata.gz: b7cc76a8b971905f952144bd65e2eb2f6c7ad1a6f8cddef07cf94f9fcdf6bc7cb685b66e1559d339ad2d6fbe61db590c632499765a16c86094681819c918e69a
7
- data.tar.gz: c920f32693668d61865133d30859e48f24cff719baecf2c0b8b53697ffe87b0fe0519dafaf0bc5542c6749f590454e126a9a05ac1b64efbe3fc1d2073eeda973
6
+ metadata.gz: 1ec5127fefe76a307be6b8b09d991c383871cb054c38066de4a53814bc7019630a04a5e60c4fab69bd0d0c217a0d77e56e96c068f0e13fe3a766fdb7dd3568d7
7
+ data.tar.gz: bdd839e75080df7d251556afc4a96a1bc1f0bfe5780731ae4caf8a96dbe2f41eaff4770af78036fbbead825cf8d54fd4167d8529ef90cb1a16138d43533c34da
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  # CrmFormatter
3
3
  #### Efficiently Reformat, Normalize, and Scrub CRM Contact Data, such as Addresses, Phones and URLs.
4
4
 
5
- CRM Wrap is perfect for curating high-volume enterprise-scale web scraping, and integrates well with Nokogiri, Mechanize, and asynchronous jobs via Delayed_job or SideKick, to name a few. Web Scraping and Harvesting often gathers a lot of junk to sift through; presenting unexpected edge cases around each corner. CRM Wrap has been developed and refined during the past few years to focus on improving that task.
5
+ CrmFormatter is perfect for curating high-volume enterprise-scale web scraping, and integrates well with Nokogiri, Mechanize, and asynchronous jobs via Delayed_job or SideKick, to name a few. Web Scraping and Harvesting often gathers a lot of junk to sift through; presenting unexpected edge cases around each corner. CrmFormatter has been developed and refined during the past few years to focus on improving that task.
6
6
 
7
7
  It's also perfect for processing API data, Web Forms, and routine DB normalizing and scrubbing processes. Not only does it reformat Address, Phone, and Web data, it can also accept lists to scrub against, then providing detailed reports about how each piece of data compares with your criteria lists.
8
8
 
@@ -16,13 +16,14 @@ gem 'crm_formatter'
16
16
  ```
17
17
 
18
18
  And then execute:
19
-
19
+ ```
20
20
  $ bundle
21
+ ```
21
22
 
22
23
  Or install it yourself as:
23
-
24
+ ```
24
25
  $ gem install crm_formatter
25
-
26
+ ```
26
27
 
27
28
  ## Usage
28
29
 
@@ -31,9 +32,11 @@ Or install it yourself as:
31
32
  1. Format Array of Phone Numbers:
32
33
  ```
33
34
  array_of_phones = %w[
34
- 555-457-4391 555-888-4391
35
+ 555-457-4391
36
+ 555-888-4391
35
37
  555-457-4334
36
- 555-555 555.555.1234
38
+ 555-555
39
+ 555.555.1234
37
40
  not_a_number
38
41
  ]
39
42
 
@@ -14,8 +14,8 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = 'https://github.com/4rlm/crm_formatter'
15
15
  spec.license = 'MIT'
16
16
 
17
- spec.summary = 'Reformat, Normalize, and Scrub CRM Contact Data, Addresses, Phones and URLs'
18
- spec.description = "Reformat, Normalize, and Scrub CRM Contact Data, Addresses, Phones and URLs. Originally developed for proprietary use in an enterprise software suite. Recently decided to make them open source in a gem. It's a work in progress as there are additional features being added in near future. Also creating additonal gems with similar CRM office efficiency objectives. Please contact me if you have any questions or comments."
17
+ spec.summary = 'Reformat and Normalize CRM Contact Data, Addresses, Phones and URLs.'
18
+ spec.description = "CrmFormatter is perfect for curating high-volume enterprise-scale web scraping, and integrates well with Nokogiri, Mechanize, and asynchronous jobs via Delayed_job or SideKick, to name a few. Web Scraping and Harvesting often gathers a lot of junk to sift through; presenting unexpected edge cases around each corner. CrmFormatter has been developed and refined during the past few years to focus on improving that task.\n It's also perfect for processing API data, Web Forms, and routine DB normalizing and scrubbing processes. Not only does it reformat Address, Phone, and Web data, it can also accept lists to scrub against, then providing detailed reports about how each piece of data compares with your criteria lists."
19
19
 
20
20
  if spec.respond_to?(:metadata)
21
21
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module CrmFormatter
4
- VERSION = "2.2"
4
+ VERSION = "2.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crm_formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.2'
4
+ version: '2.3'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Booth
@@ -194,12 +194,9 @@ dependencies:
194
194
  - - "~>"
195
195
  - !ruby/object:Gem::Version
196
196
  version: 0.11.3
197
- description: Reformat, Normalize, and Scrub CRM Contact Data, Addresses, Phones and
198
- URLs. Originally developed for proprietary use in an enterprise software suite. Recently
199
- decided to make them open source in a gem. It's a work in progress as there are
200
- additional features being added in near future. Also creating additonal gems with
201
- similar CRM office efficiency objectives. Please contact me if you have any questions
202
- or comments.
197
+ description: |-
198
+ CrmFormatter is perfect for curating high-volume enterprise-scale web scraping, and integrates well with Nokogiri, Mechanize, and asynchronous jobs via Delayed_job or SideKick, to name a few. Web Scraping and Harvesting often gathers a lot of junk to sift through; presenting unexpected edge cases around each corner. CrmFormatter has been developed and refined during the past few years to focus on improving that task.
199
+ It's also perfect for processing API data, Web Forms, and routine DB normalizing and scrubbing processes. Not only does it reformat Address, Phone, and Web data, it can also accept lists to scrub against, then providing detailed reports about how each piece of data compares with your criteria lists.
203
200
  email:
204
201
  - 4rlm@protonmail.ch
205
202
  executables: []
@@ -254,5 +251,5 @@ rubyforge_project:
254
251
  rubygems_version: 2.7.6
255
252
  signing_key:
256
253
  specification_version: 4
257
- summary: Reformat, Normalize, and Scrub CRM Contact Data, Addresses, Phones and URLs
254
+ summary: Reformat and Normalize CRM Contact Data, Addresses, Phones and URLs.
258
255
  test_files: []