crm_formatter 2.1 → 2.2

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: 44e32d7fa28b037a18bcef82d65c47ad11c0bf740e871b5b3fb3716947604a74
4
- data.tar.gz: 6e1772615e3b91e3c2fd30b36964378acd8aaf7de2c2a0d0ada055f9a722ba09
3
+ metadata.gz: dce92d2197d8eb1858271b89a6dd9e18af886422398a752c585d6b9be65f2c09
4
+ data.tar.gz: 4dd2bd7565af8e1b7f5a4c15fde18eb74b03a81806489b63d791843c7c40a224
5
5
  SHA512:
6
- metadata.gz: 2565ec3cd04042a5d3fd0a7bcef2434a10a472692d252e1288f28fd0cc5aae74e2ba46b991ab460e1af2eeaa2bd2c709f995ea1c12a38ca614718588d5c6b17e
7
- data.tar.gz: 3bed59dfc2c244be215acc7375b4a75d25f02f79f9e1cb1d7f943a9560dcb09fc1c2006ce6f58a31dedbb8099498ccf435d5fba967cffa40a2623310b8097610
6
+ metadata.gz: b7cc76a8b971905f952144bd65e2eb2f6c7ad1a6f8cddef07cf94f9fcdf6bc7cb685b66e1559d339ad2d6fbe61db590c632499765a16c86094681819c918e69a
7
+ data.tar.gz: c920f32693668d61865133d30859e48f24cff719baecf2c0b8b53697ffe87b0fe0519dafaf0bc5542c6749f590454e126a9a05ac1b64efbe3fc1d2073eeda973
data/README.md CHANGED
@@ -1,25 +1,31 @@
1
1
 
2
- # CRM Wrap
2
+ # CrmFormatter
3
3
  #### Efficiently Reformat, Normalize, and Scrub CRM Contact Data, such as Addresses, Phones and URLs.
4
4
 
5
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.
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
 
9
- ## Getting Started
10
- CRM Wrap is compatible with Rails 4.2 and 5.0, 5.1 and 5.2 on Ruby 2.2 and later.
11
9
 
12
- In your Gemfile add:
13
- ```
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
14
15
  gem 'crm_formatter'
15
16
  ```
16
- Or to install locally:
17
- ```
18
- gem install crm_formatter
19
- ```
20
- ## Usage
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install crm_formatter
21
25
 
22
26
 
27
+ ## Usage
28
+
23
29
  ### I. Basic Usage
24
30
 
25
31
  1. Format Array of Phone Numbers:
@@ -339,6 +345,20 @@ formatted_data_hash_results = { stats:
339
345
 
340
346
  Adam J Booth - [4rlm](https://github.com/4rlm)
341
347
 
348
+ ## Development
349
+
350
+ 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.
351
+
352
+ 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).
353
+
354
+ ## Contributing
355
+
356
+ Bug reports and pull requests are welcome on GitHub at https://github.com/4rlm/crm_formatter. 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.
357
+
342
358
  ## License
343
359
 
344
- This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
360
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
361
+
362
+ ## Code of Conduct
363
+
364
+ Everyone interacting in the CrmFormatter project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/4rlm/crm_formatter/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module CrmFormatter
4
- VERSION = "2.1"
4
+ VERSION = "2.2"
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.1'
4
+ version: '2.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Booth