tanshuku 0.0.8 → 0.0.9
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 +4 -4
- data/app/models/tanshuku/url.rb +3 -1
- data/lib/tanshuku/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa7ab0b4cb36fafbd7747af1bff6592c5b775b9602bc664d84dbc195daa0ed3b
|
4
|
+
data.tar.gz: 1826f56d1be47b0925d2b5d05c5992f8218f499e02f6c049612e44f09e9a577b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 208cd3049977df30d0bd0757f5575414da55464b343f77f31e1d3195f8fd4377718b3d3c3067e0df6ff43fa198ef2c37666ffe9201e8242af465c90fc1108ead
|
7
|
+
data.tar.gz: 65d877e047853c97baef247b3508fe5a181d9ecf8d0696be491d6caf389bc9252ba155b6b465abe843c184e28300bca36c4b4a22695dfd5a04bc31b6a3b80bcf
|
data/app/models/tanshuku/url.rb
CHANGED
@@ -9,7 +9,7 @@ require "securerandom"
|
|
9
9
|
module Tanshuku
|
10
10
|
class Url < ActiveRecord::Base
|
11
11
|
MAX_URL_LENGTH = 10_000
|
12
|
-
URL_PATTERN = %r{\A(?:https
|
12
|
+
URL_PATTERN = %r{\A(?:https?://\w+|/)}
|
13
13
|
KEY_LENGTH = 20
|
14
14
|
|
15
15
|
validates :url, :hashed_url, :key, presence: true
|
@@ -21,6 +21,8 @@ module Tanshuku
|
|
21
21
|
# validates :url, :hashed_url, :key, uniqueness: true
|
22
22
|
|
23
23
|
def self.shorten(original_url, retries: 0)
|
24
|
+
raise ArgumentError, "original_url should be present" unless original_url
|
25
|
+
|
24
26
|
url = normalize_url(original_url)
|
25
27
|
|
26
28
|
transaction do
|
data/lib/tanshuku/version.rb
CHANGED