cloudflare-ips 0.1.0 → 0.2.0

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: d0f532395dd7fc445e792dbb324041f746fdc44092ad286873faca044c74d8c9
4
- data.tar.gz: 0325b4e55c9eb39b3c15afa5c99775b1370dd7bee6556aff99acc7592043b29b
3
+ metadata.gz: 180bd3810f61c3efa0ecadc1219691098a39056ad397bc5e820795dc40a0114e
4
+ data.tar.gz: 51ba910df0efd66cedaedd4a7d0014b11cca6166ca498731b2d35c89f197f3da
5
5
  SHA512:
6
- metadata.gz: 9492f3bbe86e0f9d6cce97e23c731ac2c9bac91d969a01b9b470de02b510892e0c120ca3e027bf7b6fb3893d0464d64cb263cd21a27d028ffe4be0fa9da59ae4
7
- data.tar.gz: 6adfb4a0e55e0034bf9b1fea5d6430a5a020d16e1b84f0b6e9fd1f46ee730fffd710c549eccaac0d2ddeb9a19fb3e9487a7254de0376ffd2498d7f1dc5360f6c
6
+ metadata.gz: f37f4d7d77db69ac49817fed7c848e6c1aff2bea644537e33ffc504d3c93939fa974438638216d5ed7a58ce862058a1ad8f34237c8829ced13059aaeba5e5a68
7
+ data.tar.gz: 5e1f66b3ec41a9ad753056554a3e75e73782a1377909162c018112b7c5da6635a16841b9e8ee8b591e9cbb84edfe41acb91462dafc039bffa6dfe391ed7166ac
data/README.md CHANGED
@@ -1,16 +1,16 @@
1
- # OmniAI
1
+ # Cloudflare IPs
2
2
 
3
- [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ksylvest/cloudflare_ips/blob/main/LICENSE)
4
- [![RubyGems](https://img.shields.io/gem/v/cloudflare_ips)](https://rubygems.org/gems/cloudflare_ips)
5
- [![GitHub](https://img.shields.io/badge/github-repo-blue.svg)](https://github.com/ksylvest/cloudflare_ips)
6
- [![Yard](https://img.shields.io/badge/docs-site-blue.svg)](https://cloudflare_ips.ksylvest.com)
7
- [![CircleCI](https://img.shields.io/circleci/build/github/ksylvest/cloudflare_ips)](https://circleci.com/gh/ksylvest/cloudflare_ips)
3
+ [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ksylvest/cloudflare-ips/blob/main/LICENSE)
4
+ [![RubyGems](https://img.shields.io/gem/v/cloudflare-ips)](https://rubygems.org/gems/cloudflare-ips)
5
+ [![GitHub](https://img.shields.io/badge/github-repo-blue.svg)](https://github.com/ksylvest/cloudflare-ips)
6
+ [![Yard](https://img.shields.io/badge/docs-site-blue.svg)](https://cloudflare-ips.ksylvest.com)
7
+ [![CircleCI](https://img.shields.io/circleci/build/github/ksylvest/cloudflare-ips)](https://circleci.com/gh/ksylvest/cloudflare-ips)
8
8
 
9
9
  ## Installation
10
10
 
11
11
  ```ruby
12
12
  group :production do
13
- gem "cloudflare_ips"
13
+ gem "cloudflare-ips"
14
14
  end
15
15
  ```
16
16
 
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cloudflare
4
+ module IPs
5
+ # Configure trusted_proxies with Cloudflare IPv4 and IPv6 addresses.
6
+ class Railtie < ::Rails::Railtie
7
+ initializer 'cloudflare-ips.configure_rails_initialization' do |app|
8
+ app.config.action_dispatch.trusted_proxies += Cloudflare::IPs::IPS_V4 + Cloudflare::IPs::IPS_V6
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cloudflare
4
+ module IPs
5
+ VERSION = '0.2.0'
6
+ end
7
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'cloudflare/ips/version'
4
+ require 'cloudflare/ips/railtie'
5
+
6
+ module Cloudflare
7
+ module IPs
8
+ # https://www.cloudflare.com/ips-v4/
9
+ IPS_V4 = %w[
10
+ 173.245.48.0/20
11
+ 103.21.244.0/22
12
+ 103.22.200.0/22
13
+ 103.31.4.0/22
14
+ 141.101.64.0/18
15
+ 108.162.192.0/18
16
+ 190.93.240.0/20
17
+ 188.114.96.0/20
18
+ 197.234.240.0/22
19
+ 198.41.128.0/17
20
+ 162.158.0.0/15
21
+ 104.16.0.0/13
22
+ 104.24.0.0/14
23
+ 172.64.0.0/13
24
+ 131.0.72.0/22
25
+ ].map { |proxy| IPAddr.new(proxy) }
26
+
27
+ # https://www.cloudflare.com/ips-v6/
28
+ IPS_V6 = %w[
29
+ 2400:cb00::/32
30
+ 2606:4700::/32
31
+ 2803:f800::/32
32
+ 2405:b500::/32
33
+ 2405:8100::/32
34
+ 2a06:98c0::/29
35
+ 2c0f:f248::/32
36
+ ].map { |proxy| IPAddr.new(proxy) }
37
+ end
38
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudflare-ips
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre
@@ -34,9 +34,9 @@ files:
34
34
  - LICENSE
35
35
  - README.md
36
36
  - Rakefile
37
- - lib/cloudflare_ips.rb
38
- - lib/cloudflare_ips/railtie.rb
39
- - lib/cloudflare_ips/version.rb
37
+ - lib/cloudflare/ips.rb
38
+ - lib/cloudflare/ips/railtie.rb
39
+ - lib/cloudflare/ips/version.rb
40
40
  homepage: https://github.com/ksylvest/cloudflare_ips
41
41
  licenses:
42
42
  - MIT
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CloudflareIPs
4
- # Configure trusted_proxies with Cloudflare IPv4 and IPv6 addresses.
5
- class Railtie < ::Rails::Railtie
6
- initializer 'cloudflare_ips.configure_rails_initialization' do |app|
7
- app.config.action_dispatch.trusted_proxies += CloudflareIPs::IPS_V4 + CloudflareIPs::IPS_V6
8
- end
9
- end
10
- end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CloudflareIps
4
- VERSION = '0.1.0'
5
- end
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'cloudflare_ips/version'
4
- require 'cloudflare_ips/railtie'
5
-
6
- module CloudflareIPs
7
- # https://www.cloudflare.com/ips-v4/
8
- IPS_V4 = %w[
9
- 173.245.48.0/20
10
- 103.21.244.0/22
11
- 103.22.200.0/22
12
- 103.31.4.0/22
13
- 141.101.64.0/18
14
- 108.162.192.0/18
15
- 190.93.240.0/20
16
- 188.114.96.0/20
17
- 197.234.240.0/22
18
- 198.41.128.0/17
19
- 162.158.0.0/15
20
- 104.16.0.0/13
21
- 104.24.0.0/14
22
- 172.64.0.0/13
23
- 131.0.72.0/22
24
- ].map { |proxy| IPAddr.new(proxy) }
25
-
26
- # https://www.cloudflare.com/ips-v6/
27
- IPS_V6 = %w[
28
- 2400:cb00::/32
29
- 2606:4700::/32
30
- 2803:f800::/32
31
- 2405:b500::/32
32
- 2405:8100::/32
33
- 2a06:98c0::/29
34
- 2c0f:f248::/32
35
- ].map { |proxy| IPAddr.new(proxy) }
36
- end