tanshuku 3.0.2 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/db/migrate/20230220123456_create_tanshuku_urls.rb +5 -0
- data/lib/tanshuku/version.rb +1 -1
- data/lib/tanshuku.rb +2 -2
- data/lib/tasks/check_all.rb +2 -0
- metadata +4 -7
- data/Steepfile +0 -7
- data/rbs_collection.lock.yaml +0 -264
- data/rbs_collection.yaml +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60ef893ce52de6a2a3e9c76b217ec13fc11faa6aac8ddac739205dcf9336fdde
|
4
|
+
data.tar.gz: e764fe77479fb67ebd3a592525a442654c1ffe0e57e01f46a28710989c7a4fd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4e7d22a8d8572a6ed2473f94eb1e659cb853b1b204c6aa6f199710228bafe190ff20761b60c2d27547dfae291ffe55c7f4e38ecd56678d3984e2f82a1590f4f
|
7
|
+
data.tar.gz: b373b1c24e1f6746de4003f394d583c9ed4a91256f90e34237a1db8ea1a590a63041c639e34f90b155cc36568e755dd1c3be773999283af2c52ae15a48940722
|
@@ -4,8 +4,13 @@ class CreateTanshukuUrls < ActiveRecord::Migration[7.0]
|
|
4
4
|
def change
|
5
5
|
create_table :tanshuku_urls do |t|
|
6
6
|
t.text :url, null: false
|
7
|
+
|
8
|
+
# You might adjust the `limit: 128` depending on `Tanshuku.config.url_hasher`.
|
7
9
|
t.string :hashed_url, null: false, limit: 128, index: { unique: true }, comment: "cf. Tanshuku::Url.hash_url"
|
10
|
+
|
11
|
+
# You might adjust the `limit: 20` depending on `.key_length` and `.key_generator` of `Tanshuku.config`.
|
8
12
|
t.string :key, null: false, limit: 20, index: { unique: true }, comment: "cf. Tanshuku::Url.generate_key"
|
13
|
+
|
9
14
|
t.datetime :created_at, null: false, precision: nil
|
10
15
|
end
|
11
16
|
end
|
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:
|
4
|
+
version: 4.0.0
|
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
|
@@ -49,7 +49,6 @@ extra_rdoc_files: []
|
|
49
49
|
files:
|
50
50
|
- LICENSE
|
51
51
|
- README.md
|
52
|
-
- Steepfile
|
53
52
|
- app/controllers/tanshuku/urls_controller.rb
|
54
53
|
- app/models/tanshuku/url.rb
|
55
54
|
- config/locales/en.yml
|
@@ -63,8 +62,6 @@ files:
|
|
63
62
|
- lib/tanshuku/engine.rb
|
64
63
|
- lib/tanshuku/version.rb
|
65
64
|
- lib/tasks/check_all.rb
|
66
|
-
- rbs_collection.lock.yaml
|
67
|
-
- rbs_collection.yaml
|
68
65
|
- sig/app/controllers/tanshuku/urls_controller.rbs
|
69
66
|
- sig/app/models/tanshuku/url.rbs
|
70
67
|
- sig/db/migrate/create_tanshuku_urls.rbs
|
@@ -91,14 +88,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
88
|
requirements:
|
92
89
|
- - ">="
|
93
90
|
- !ruby/object:Gem::Version
|
94
|
-
version: '3.
|
91
|
+
version: '3.2'
|
95
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
93
|
requirements:
|
97
94
|
- - ">="
|
98
95
|
- !ruby/object:Gem::Version
|
99
96
|
version: '0'
|
100
97
|
requirements: []
|
101
|
-
rubygems_version: 3.5.
|
98
|
+
rubygems_version: 3.5.22
|
102
99
|
signing_key:
|
103
100
|
specification_version: 4
|
104
101
|
summary: Tanshuku is a simple and performance aware Rails engine for shortening URLs.
|
data/Steepfile
DELETED
data/rbs_collection.lock.yaml
DELETED
@@ -1,264 +0,0 @@
|
|
1
|
-
---
|
2
|
-
path: ".gem_rbs_collection"
|
3
|
-
gems:
|
4
|
-
- name: actionmailer
|
5
|
-
version: '7.0'
|
6
|
-
source:
|
7
|
-
type: git
|
8
|
-
name: ruby/gem_rbs_collection
|
9
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
10
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
11
|
-
repo_dir: gems
|
12
|
-
- name: actionpack
|
13
|
-
version: '6.0'
|
14
|
-
source:
|
15
|
-
type: git
|
16
|
-
name: ruby/gem_rbs_collection
|
17
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
18
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
19
|
-
repo_dir: gems
|
20
|
-
- name: actionview
|
21
|
-
version: '6.0'
|
22
|
-
source:
|
23
|
-
type: git
|
24
|
-
name: ruby/gem_rbs_collection
|
25
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
26
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
27
|
-
repo_dir: gems
|
28
|
-
- name: activejob
|
29
|
-
version: '6.0'
|
30
|
-
source:
|
31
|
-
type: git
|
32
|
-
name: ruby/gem_rbs_collection
|
33
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
34
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
35
|
-
repo_dir: gems
|
36
|
-
- name: activemodel
|
37
|
-
version: '7.0'
|
38
|
-
source:
|
39
|
-
type: git
|
40
|
-
name: ruby/gem_rbs_collection
|
41
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
42
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
43
|
-
repo_dir: gems
|
44
|
-
- name: activerecord
|
45
|
-
version: '7.0'
|
46
|
-
source:
|
47
|
-
type: git
|
48
|
-
name: ruby/gem_rbs_collection
|
49
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
50
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
51
|
-
repo_dir: gems
|
52
|
-
- name: activestorage
|
53
|
-
version: '6.1'
|
54
|
-
source:
|
55
|
-
type: git
|
56
|
-
name: ruby/gem_rbs_collection
|
57
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
58
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
59
|
-
repo_dir: gems
|
60
|
-
- name: activesupport
|
61
|
-
version: '7.0'
|
62
|
-
source:
|
63
|
-
type: git
|
64
|
-
name: ruby/gem_rbs_collection
|
65
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
66
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
67
|
-
repo_dir: gems
|
68
|
-
- name: addressable
|
69
|
-
version: '2.8'
|
70
|
-
source:
|
71
|
-
type: git
|
72
|
-
name: ruby/gem_rbs_collection
|
73
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
74
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
75
|
-
repo_dir: gems
|
76
|
-
- name: base64
|
77
|
-
version: '0'
|
78
|
-
source:
|
79
|
-
type: stdlib
|
80
|
-
- name: bigdecimal
|
81
|
-
version: '0'
|
82
|
-
source:
|
83
|
-
type: stdlib
|
84
|
-
- name: cgi
|
85
|
-
version: '0'
|
86
|
-
source:
|
87
|
-
type: stdlib
|
88
|
-
- name: concurrent-ruby
|
89
|
-
version: '1.1'
|
90
|
-
source:
|
91
|
-
type: git
|
92
|
-
name: ruby/gem_rbs_collection
|
93
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
94
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
95
|
-
repo_dir: gems
|
96
|
-
- name: connection_pool
|
97
|
-
version: '2.4'
|
98
|
-
source:
|
99
|
-
type: git
|
100
|
-
name: ruby/gem_rbs_collection
|
101
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
102
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
103
|
-
repo_dir: gems
|
104
|
-
- name: date
|
105
|
-
version: '0'
|
106
|
-
source:
|
107
|
-
type: stdlib
|
108
|
-
- name: dbm
|
109
|
-
version: '0'
|
110
|
-
source:
|
111
|
-
type: stdlib
|
112
|
-
- name: digest
|
113
|
-
version: '0'
|
114
|
-
source:
|
115
|
-
type: stdlib
|
116
|
-
- name: erb
|
117
|
-
version: '0'
|
118
|
-
source:
|
119
|
-
type: stdlib
|
120
|
-
- name: fileutils
|
121
|
-
version: '0'
|
122
|
-
source:
|
123
|
-
type: stdlib
|
124
|
-
- name: globalid
|
125
|
-
version: '1.1'
|
126
|
-
source:
|
127
|
-
type: git
|
128
|
-
name: ruby/gem_rbs_collection
|
129
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
130
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
131
|
-
repo_dir: gems
|
132
|
-
- name: i18n
|
133
|
-
version: '1.10'
|
134
|
-
source:
|
135
|
-
type: git
|
136
|
-
name: ruby/gem_rbs_collection
|
137
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
138
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
139
|
-
repo_dir: gems
|
140
|
-
- name: io-console
|
141
|
-
version: '0'
|
142
|
-
source:
|
143
|
-
type: stdlib
|
144
|
-
- name: logger
|
145
|
-
version: '0'
|
146
|
-
source:
|
147
|
-
type: stdlib
|
148
|
-
- name: mail
|
149
|
-
version: '2.8'
|
150
|
-
source:
|
151
|
-
type: git
|
152
|
-
name: ruby/gem_rbs_collection
|
153
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
154
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
155
|
-
repo_dir: gems
|
156
|
-
- name: minitest
|
157
|
-
version: '0'
|
158
|
-
source:
|
159
|
-
type: stdlib
|
160
|
-
- name: monitor
|
161
|
-
version: '0'
|
162
|
-
source:
|
163
|
-
type: stdlib
|
164
|
-
- name: mutex_m
|
165
|
-
version: '0'
|
166
|
-
source:
|
167
|
-
type: stdlib
|
168
|
-
- name: net-protocol
|
169
|
-
version: '0'
|
170
|
-
source:
|
171
|
-
type: stdlib
|
172
|
-
- name: net-smtp
|
173
|
-
version: '0'
|
174
|
-
source:
|
175
|
-
type: stdlib
|
176
|
-
- name: nokogiri
|
177
|
-
version: '1.11'
|
178
|
-
source:
|
179
|
-
type: git
|
180
|
-
name: ruby/gem_rbs_collection
|
181
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
182
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
183
|
-
repo_dir: gems
|
184
|
-
- name: pstore
|
185
|
-
version: '0'
|
186
|
-
source:
|
187
|
-
type: stdlib
|
188
|
-
- name: psych
|
189
|
-
version: '0'
|
190
|
-
source:
|
191
|
-
type: stdlib
|
192
|
-
- name: rack
|
193
|
-
version: '2.2'
|
194
|
-
source:
|
195
|
-
type: git
|
196
|
-
name: ruby/gem_rbs_collection
|
197
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
198
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
199
|
-
repo_dir: gems
|
200
|
-
- name: rails-dom-testing
|
201
|
-
version: '2.0'
|
202
|
-
source:
|
203
|
-
type: git
|
204
|
-
name: ruby/gem_rbs_collection
|
205
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
206
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
207
|
-
repo_dir: gems
|
208
|
-
- name: railties
|
209
|
-
version: '6.0'
|
210
|
-
source:
|
211
|
-
type: git
|
212
|
-
name: ruby/gem_rbs_collection
|
213
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
214
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
215
|
-
repo_dir: gems
|
216
|
-
- name: rake
|
217
|
-
version: '13.0'
|
218
|
-
source:
|
219
|
-
type: git
|
220
|
-
name: ruby/gem_rbs_collection
|
221
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
222
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
223
|
-
repo_dir: gems
|
224
|
-
- name: rdoc
|
225
|
-
version: '0'
|
226
|
-
source:
|
227
|
-
type: stdlib
|
228
|
-
- name: securerandom
|
229
|
-
version: '0'
|
230
|
-
source:
|
231
|
-
type: stdlib
|
232
|
-
- name: singleton
|
233
|
-
version: '0'
|
234
|
-
source:
|
235
|
-
type: stdlib
|
236
|
-
- name: tempfile
|
237
|
-
version: '0'
|
238
|
-
source:
|
239
|
-
type: stdlib
|
240
|
-
- name: thor
|
241
|
-
version: '1.2'
|
242
|
-
source:
|
243
|
-
type: git
|
244
|
-
name: ruby/gem_rbs_collection
|
245
|
-
revision: 13ae8cd19056d62358a9d4836106b8b31219fc1e
|
246
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
247
|
-
repo_dir: gems
|
248
|
-
- name: time
|
249
|
-
version: '0'
|
250
|
-
source:
|
251
|
-
type: stdlib
|
252
|
-
- name: timeout
|
253
|
-
version: '0'
|
254
|
-
source:
|
255
|
-
type: stdlib
|
256
|
-
- name: tsort
|
257
|
-
version: '0'
|
258
|
-
source:
|
259
|
-
type: stdlib
|
260
|
-
- name: uri
|
261
|
-
version: '0'
|
262
|
-
source:
|
263
|
-
type: stdlib
|
264
|
-
gemfile_lock_path: Gemfile.lock
|
data/rbs_collection.yaml
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
sources:
|
2
|
-
- type: git
|
3
|
-
name: ruby/gem_rbs_collection
|
4
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
5
|
-
revision: main
|
6
|
-
repo_dir: gems
|
7
|
-
|
8
|
-
path: .gem_rbs_collection
|
9
|
-
|
10
|
-
gems:
|
11
|
-
- name: rbs
|
12
|
-
ignore: true
|
13
|
-
- name: steep
|
14
|
-
ignore: true
|
15
|
-
- name: tanshuku
|
16
|
-
ignore: true
|
17
|
-
|
18
|
-
- name: digest
|
19
|
-
- name: securerandom
|