disposable_mail 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2cb610ff241cd9127ac7a13dc8a436dd53129fd
4
- data.tar.gz: 9a97acecceac3cd1a2562e617db2f4b37f7de112
3
+ metadata.gz: ac731b227f16c80d8d5e539d5052c29c1d7be60a
4
+ data.tar.gz: 8e7b03916808addb9c06988c57d0eb8be07c35f7
5
5
  SHA512:
6
- metadata.gz: d212d3346c8a91e4de257c58425023b15f6fd9e30f104b60af929121ba67266aa7c7a3854320e561825974dc482e359537860044c05f1a922a4f4887e560b505
7
- data.tar.gz: 89e78baa868d377332fd50380de8349cecbae86c36b8ecedf6a6d8bc99c80200fafc8ad74e2b194548fd327d10bdedccc0a5a8a96fcf561f7953e7d1b0069a73
6
+ metadata.gz: 346a1651ea65e8066868df0008ca695709be6ed7de64605c1959c0ddc323149bc656faaeb2d4dadb04aba0cfe9ab309f3db7383c9fb817af8e78b04132ad7f14
7
+ data.tar.gz: db20c2183f08749ae6d1c1ea77da2d56e58738b5b5294f9f46d3a1d7bdcf70ab0109129e8a38ab7acee6aec0b553b74b80aee6940a4592bb0548871d0bab7d6c
data/.travis.yml CHANGED
@@ -1,7 +1,4 @@
1
1
  language: ruby
2
- os:
3
- - linux
4
- - osx
5
2
  rvm:
6
3
  - 2.3.0
7
4
  - 2.2.2
data/README.md CHANGED
@@ -14,7 +14,7 @@ And this gem syncs with it through a git submodule (see the data folder).
14
14
  Add this line to your application's Gemfile:
15
15
 
16
16
  ```ruby
17
- gem 'disposable_mail', '~> 0.1.4'
17
+ gem 'disposable_mail', '~> 0.1'
18
18
  ```
19
19
 
20
20
  And then execute:
@@ -104,7 +104,11 @@ This gem comes with default messages for the following locales:
104
104
 
105
105
  ## Changelog
106
106
 
107
- ### 0.1.3 - 2016-03-11
107
+ ### 0.1.5 - 2016-06-27
108
+
109
+ * Update blacklist
110
+
111
+ ### 0.1.4 - 2016-04-04
108
112
 
109
113
  * Slightly faster `#include?`
110
114
  * Update blacklist
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ namespace :disposable_mail do
11
11
  desc "outputs the current disposable domains"
12
12
  task :puts_domains do
13
13
  blacklist_path = 'data/disposable-email-domains/disposable_email_blacklist.conf'
14
- new_list = File.open(File.expand_path(File.join(File.dirname(__FILE__), blacklist_path))).readlines.map(&:strip).to_s.gsub(/,/, ",\n")
14
+ new_list = File.open(File.expand_path(File.join(File.dirname(__FILE__), blacklist_path))).readlines.map(&:strip).sort.to_s.gsub(/,/, ",\n")
15
15
  new_list = new_list.sub(/\]/, "\n]")
16
16
  new_list = new_list.sub(/\[/, "[\n")
17
17