tanshuku 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/tanshuku/version.rb +1 -1
- data/lib/tanshuku.rb +2 -2
- data/lib/tasks/check_all.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 751d1c1f90f9971762a9a7ae487b8323fbfe4d9f6993cc94d9d8e1498c36f8d0
|
4
|
+
data.tar.gz: abb9053bcf5f52ecaa831d8a57fde2e36e87f5e5ed32588778ed8f43f7b8ad02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf8a091f25271f333101f5be219c96aa45d23ccc3bf30991799430cbf6219a11271dbc4621b5763deb825cfa0d3f9db13a5d96ecc052c38b3b9d47e408c0f61c
|
7
|
+
data.tar.gz: a49d215042a71564d34ea5e9ce5450b0bd72e8351d7a9d05d3219502045b4cccb5ecd8eff9bba07e4c7a03a70133e83855320b85f9ac2531351898b4b528b668
|
data/README.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
[![RubyGems.org](https://img.shields.io/badge/RubyGems.org-Tanshuku%20v1-red)](https://rubygems.org/gems/tanshuku/versions/1.0.0)
|
2
|
+
[![Ruby 2.5+](https://img.shields.io/badge/Ruby-2.5+-red)](https://www.ruby-lang.org)
|
3
|
+
[![Rails 5.1+](https://img.shields.io/badge/Rails-5.1+-red)](https://rubyonrails.org/)
|
4
|
+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
|
5
|
+
[![Checks](https://github.com/kg8m/tanshuku/actions/workflows/checks.yml/badge.svg?branch=1-0-stable)](https://github.com/kg8m/tanshuku/blob/1-0-stable/.github/workflows/checks.yml)
|
6
|
+
|
1
7
|
# Tanshuku
|
2
8
|
|
3
9
|
Tanshuku is a simple and small Rails engine that makes it easier to shorten URLs.
|
data/lib/tanshuku/version.rb
CHANGED
data/lib/tanshuku.rb
CHANGED
@@ -15,9 +15,9 @@ module Tanshuku
|
|
15
15
|
# {Tanshuku.configure} for configuration.
|
16
16
|
def self.config
|
17
17
|
# Disable this cop but use `Tanshuku::Configuration#configure` for thread-safety.
|
18
|
-
# rubocop:disable ThreadSafety/
|
18
|
+
# rubocop:disable ThreadSafety/ClassInstanceVariable
|
19
19
|
@config ||= Configuration.new
|
20
|
-
# rubocop:enable ThreadSafety/
|
20
|
+
# rubocop:enable ThreadSafety/ClassInstanceVariable
|
21
21
|
end
|
22
22
|
|
23
23
|
# Configures Tanshuku.
|
data/lib/tasks/check_all.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tanshuku
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kg8m
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '5.1'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
36
|
+
version: '7.0'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '5.1'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
46
|
+
version: '7.0'
|
47
47
|
description: Tanshuku is a simple and performance aware Rails engine for shortening
|
48
48
|
URLs. Tanshuku generates a shortened URL per a normalized original URL. Tanshuku
|
49
49
|
redirects from a shortened URL to its corresponding original URL.
|